The MasterMind – EA MetaTrader 5

The MasterMind tester
Author of the idea — L.Bigger, author of the MQL5 code — barabashkakvn. The iStochastic (Stochastic) Oscillator, iWPR (Larry Williams’ Percent Range) indicators are used. Recommended period is M5. Test on EURUSD M5, from 2016.06.01 to 2016.11.18, initial deposit – 10000: It is recommended to disable output of comments on the chart during visual testing. The version … Read more

The MasterMind 3 – EA MetaTrader 5

The MasterMind 3 - expert for MetaTrader 5
Author of the idea — L.Bigger, author of the MQL5 code — barabashkakvn. The Expert Advisor processes signals from four iWPR indicators with different averaging periods: iWPR(26), iWPR(27), iWPR(29), iWPR(30). The OBJ_TEXT objects are displayed on the chart, keeps a log file.     sig_buy=iWPRGet(handle_iWPR_26,0);    sig_sell=iWPRGet(handle_iWPR_27,0);    sig_high=iWPRGet(handle_iWPR_29,0);    sig_low=iWPRGet(handle_iWPR_30,0);//Comment(“sig_buy=”,sig_buy,” sig_sell=”,sig_sell);    if(sig_buy<-99.99 && sig_sell<-99.99 && sig_high<-99.99 && sig_low<-99.99)      … Read more