Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Views:
3093
Rating:
(4)
Published:
2018.06.18 13:41
DI.mq5 (8.79 KB) view
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

Modified Moving Averages Modified Moving Averages

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

Binario Binario

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

Difference2 Difference2

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

Divergence_Candles Divergence_Candles

Indicator of candlestick divergences.