Indicators: Stochastic MACD

 

Stochastic MACD:

Stochastic MACD

Stochastic MACD

Author: Mladen Rakic

 

Hello Mladen, please can you code this indicator in mql4?

Thanks.

 
Could you add arrows for this indicator?
 

Hello Mladen!

Codes

double fastStoch = (max!=min) ? (fastEma-min)/(max-min) : 0;
double slowStoch = (max!=min) ? (slowEma-min)/(max-min) : 0;

val[i]  = 100.0*(fastStoch-slowStoch);

and

val[i]  = 100.0*((max!=min) ? (fastEma-slowEma)/(max-min) : 0);

identical?

Thanks.

 
You probably noticed it already, but there's a typo on the parameters tab where it reads "Ovberbought" and "Ovbersold". Minor thing, other than that it has been looking great so far in my testing.
 

hello MLaden,thanks for your incredible work.

its posible to you,to add alerts to this indicator and arrows?

Hope to ear from you.


BR

 

I have tried to use this indicator in an EA but failed to make it work.

The indicator doesn't display on the chart during backtesting.

Can the developer please share the buffers for buy and sell signals if any!? 

I shall be grateful for the support. Thank you