Experts: ZeroLagEA-AIP v0.0.4

 

ZeroLagEA-AIP v0.0.4:

The Expert Adviser ZeroLagEA-AIP v0.0.4 uses for calculation of the signal indicator ZeroLag MACD, which is an indicator Moving Average Convergence/Divergence, MACD with zero delay.

Author: Collector

 
I couldnt get this EA to trade, the result tab is blank
 
edwin #:
I couldnt get this EA to trade, the result tab is blank

This EA won’t trade unless you have the ZeroLag MACD indicator installed. It calls its values in the code:

MACD_Main = iCustom(NULL, 0, "ZeroLag MACD", FastEMA, SlowEMA, SignalEMA, 0, 1); 
MACD_Signal = iCustom(NULL, 0, "ZeroLag MACD", FastEMA, SlowEMA, SignalEMA, 1, 1); 
MACD_MainPrev = iCustom(NULL, 0, "ZeroLag MACD", FastEMA, SlowEMA, SignalEMA, 0, 2); 
MACD_SignalPrev = iCustom(NULL, 0, "ZeroLag MACD", FastEMA, SlowEMA, SignalEMA, 1, 2);

So make sure ZeroLag MACD.ex4 is in your Indicators folder, otherwise the EA simply won’t work.