Three Moving Averages
- Experts
-
MetaQuotes Ltd.
This technical account is not intended to communicate with MQL5.community users. If you have any issues using MQL5.community services or if you have found an error in MetaTrader programs, please apply to Service Desk. You can find more information on how to use this service in the MQL5.community - - Version: 1.3
- Mise à jour: 1 décembre 2017
The trade strategy is based on three moving averages. To determine the trend, it uses three exponentially smoothed moving averages: FastEMA, MediumEMA and SlowEMA.
Trade signals:
- Buy signal: FastEMA>MediumEMA>SlowEMA (upward trend).
- Sell signal: FastEMA<MediumEMA<SlowEMA (downward trend).
- Inp_Signal_ThreeEMA_FastPeriod = 8;
- Inp_Signal_ThreeEMA_MediumPeriod = 38;
- Inp_Signal_ThreeEMA_SlowPeriod = 48;
- Inp_Signal_ThreeEMA_StopLoss = 400;
- Inp_Signal_ThreeEMA_TakeProfit = 900;
- Inp_Money_FixLot_Percent = 10.0;
- Inp_Money_FixLot_Lots = 0.1;

great product