Hi all,
I am programming a straight forward MACD in EFS. Looking at it and comparing it to the standard eSignal one, I see slight differences.
As far as I can see, the EFS2 is using exponential whereas I prefer a simple one, both for the differential and the signal line.
I use:
macd_fast = macd(MACD_FAST, MACD_SLOW, MACD_SMOOTH);
macd_fast_old = macd(MACD_FAST, MACD_SLOW, MACD_SMOOTH, -MACD_SMOOTH+1);
I don't see anything in the online documentation on how to force it to simple.
Any ideas?
All the best...
I am programming a straight forward MACD in EFS. Looking at it and comparing it to the standard eSignal one, I see slight differences.
As far as I can see, the EFS2 is using exponential whereas I prefer a simple one, both for the differential and the signal line.
I use:
macd_fast = macd(MACD_FAST, MACD_SLOW, MACD_SMOOTH);
macd_fast_old = macd(MACD_FAST, MACD_SLOW, MACD_SMOOTH, -MACD_SMOOTH+1);
I don't see anything in the online documentation on how to force it to simple.
Any ideas?
All the best...
Comment