EA根据斐波那契与RSI信号进行自动交易。黄金分割和RSI指标进行自动交易,带移动止盈止损,图表带阻力位线图。建议模拟盘测试一下
参数:
extern double StopLoss = 200;
extern double TakeProfit = 210;
extern double TrailingStop = 200;
extern double Lots = 0.10;
extern double ProfitShield = 7;
extern int TimeZone=0;
extern color clOpenBuy = Blue;
extern color clCloseBuy = Aqua;
extern color clOpenSell = Red;
extern color clCloseSell = Violet;
extern color clModiBuy = Blue;
extern color clModiSell = Red;
extern string Name_Expert = "FPR ea";
extern int Slippage = 4;
extern bool UseSound = False;
extern string NameFileSound = "alert.wav";