• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

New EA GOLD_fix EA

if that crazy Alert (Line 109) in the Code for spread be deleted maybe I test it !
 
Last edited:
The EA is working, but I also have the warning with the spread to high. The EA also works live, I have tested it.
 
if(Ask-Bid>25*Point && totalTrades==0){Alert("Big spread now > 25. Points:" + (Ask-Bid)/Point);return;}
if(Ask-Bid>25*Point && totalTrades==0){Alert("Big spread now > 25. Points:" + (Ask-Bid)/Point);return;}

the parameter is highlighted in red, it can be done in the main menu of EA parameters ....

extern int max spread = 25;

if(Ask-Bid>max spread*Point && totalTrades==0){Alert("Big spread now >max spread. Points:" + (Ask-Bid)/Point);return;}
 
back test and forward test are diff , in backtest it put SL but in forward test No Stoplost . in backtest it open Buy when it in sell and open sell when its in buy , but in forward test it only open Buy or Sell . and about safety its not clear what EA wants to do if market get wild . No safety for account .
 
Back
Top