CCI beginner tutorial by William210 – indicator MetaTrader 5

CCI beginner tutorial by William210
Good morning. If this code malfunctions for whatever reasons, forgetting or MQL5 upgrades, let me know so I can correct it, thank you You can find all my multi timeFrame indicator codes or not, in CodeBase or on the Marketplace, free or purchasable, by searching for “William210”. What is CCI? The CCI: Powerful indicator for … Read more

Trailing stop tutorial using ATR indicator – EA MetaTrader 5

Trailing stop tutorial using ATR indicator - expert for MetaTrader 5
I. Main function 1. Using condition buy or sell base on price action. 2. Auto caculate lot size 3. Auto trailling stop by ATR. 4. Backtest result II. Main function code 1. Trailling and count position function //+——————————————————————+ //|Count position and Trailling Functiom                              | //+——————————————————————+ void  count_position(int &count_buy, int &count_sell, double &_atr[])   {       count_buy=0; count_sell=0; … Read more

Envelopes beginner tutorial By William210 – indicator MetaTrader 5

Envelopes beginner tutorial - Terminal
Good morning. All codes, all functions have examples in the official documentation if you want. I wanted to rewrite simpler code, easier to reuse Whether starting out in coding, or need a basic code to evolve quickly, it should help you, as it helps me with my own codes Leave a comment to tell me which one … Read more