Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
- Views:
- 3534
- Rating:
- Published:
- 2018.06.18 13:41
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
Oscillator DI (Damping Index) is designed for identifying the damping of the directed market movement.
Any value below 1.0 definitely points to slowing price movement, whatever direction it was moving before.
It has three input parameters:
- Period - calculation period;
- Method - calculation method;
- Damping level - threshold level.
Calculations:
DI = (H - L)/R
where:
H = Moving Average(High price, Period, Method) L = Moving Average(Low price, Period, Method) R = H[i-Period] - L[i-Period]
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/20853

A slightly modified EA from the standard delivery: MQL5\Experts\Examples\Moving Average\Moving Average

Working with pending orders Buy Stop and Sell Stop. A channel of two indicators iMA (Moving Average, MA).

Indicator Difference2 shows the difference between the predefined reference prices (Applied price) now and as of N periods ago.

Indicator of candlestick divergences.