ZigZag Indicator with Extra Features – indicator MetaTrader 4

ZigZagZug Chart (without BreakOut points)
Taking a Closer Look at the Workings of the ZigZag Indicator The ZigZag Indicator is one on those indicators, that at a misleading first glans, seems to be the “Holy Grail” of all indicators for finding the Tops and Bottoms for set-ups like Swing or Trend Following strategies. Quite often, newcomers tend to be totally … Read more

MT4 EA Template with all the basic features – EA MetaTrader 4

MT4 EA Template with all the basic features - expert for MetaTrader 4
The buy and sell conditions go as ‘bool’ value parameters in the Direction function, as you can see in the default example.    int signalConditions=3;    DashKeys[openCloseConditionIdx+1-1]=”BB Status”;    DashValues[openCloseConditionIdx+1-1]=Direction(ok(bbGreen) && bbGreen!=-1,ok(bbRed) && bbRed!=-1,canBuy,canSell, ” at “+TimeToStr(Time[masterCandleIdx]), ” at “+Time[masterCandleIdx]); The canBuy and canSell variables will get out set as true or false based on … Read more