Watch how to download trading robots for free
Find us on Twitter!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
- Views:
- 15873
- Rating:
- Published:
- 2008.09.25 08:34
- Updated:
- 2014.04.21 14:53
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
A percentage oscillator of the price allows to perform the comparing the time periods independently on the price.
Calculation:
PPO = ( EMA(CLOSE, 12) - EMA(CLOSE, 26) ) / EMA(CLOSE, 26)
SIGNAL = SMA(PPO, 9)
Signals:
1.Positive/Negative divergence
2.The intersection of the indicator with its signal line.
3.A condition of overbuying/overselling
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/8371

MACDVersion2_ Mod is amodification of MACDVersion2 to show some additional information.

Expert Advisor EMA_CROSS.