RobotPowerM5 meta4V12 – EA MetaTrader 5

RobotPowerM5_meta4V12
The Expert Advisor is based on analyzing iBullsPower and iBearsPower indicator readings on the first bar: //+——————————————————————+//|  Calculate indicators’ value                                     |//+——————————————————————+void calculateIndicators()   {    bull = iBullsPowerGet(1);    bear = iBearsPowerGet(1);    Comment(“bull+bear= “,bull+bear);//b = 1 * Point() + iATRGet(1)*1.5;//s = 1 * Point() + iATRGet(1)*1.5;    isBuying  = (bull+bear > 0);    isSelling = (bull+bear < 0); … Read more