Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Vues:
2933
Note:
(13)
Publié:
2016.06.30 12:37
Mise à jour:
2023.03.29 13:47
\MQL5\Include\
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Real author:

Ramdass

The simplest oscillator based on the difference between the price and its Moving Average. The oscillator is smoothed and displayed as a color histogram.

The indicator is calculated by the following formula:

XDPO(i) = MA(Close(i) - MA(i, N),M)

where N — MA period, M — indicator smoothing period

The indicator uses the classes of SmoothAlgorithms.mqh library (copy it to <terminal_data_folder>\MQL5\Include). The use of the classes was thoroughly described in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

This indicator was first implemented in MQL4 and published in Code Base at mql4.com on 01.09.2008.

Fig.1. XDPO_Histogram

Fig.1. XDPO_Histogram

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/15289

Detrended_Price_Oscillator Detrended_Price_Oscillator

The simplest oscillator based on the difference between the price and its Moving Average.

Taf Taf

The channel applying the algorithm similar to the simplest zigzag.

Exp_XDPO_Histogram Exp_XDPO_Histogram

Trading system based on XDPO_Histogram indicator signals.

XDPO_Histogram_HTF XDPO_Histogram_HTF

XDPO_Histogram indicator with the timeframe selection option available in input parameters.