Three Moving Averages
- 专家
-
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 - - 版本: 1.3
- 更新: 1 十二月 2017
交易策略基于三条移动均线。判断趋势, 使用三条指数平滑移动均线: FastEMA, MediumEMA 和 SlowEMA。
交易信号:
- 买信号: FastEMA>MediumEMA>SlowEMA (向上趋势)。
- 卖信号: FastEMA<MediumEMA<SlowEMA (向下趋势)。
- 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