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
Indicateurs

Chaikin_Volatility_Histogram - indicateur pour MetaTrader 5

Vues:
3530
Note:
(8)
Publié:
2018.08.23 13:17
Mise à jour:
2023.03.29 13:48
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Chaikin volatility indicator as a colored histogram.

//+-----------------------------------+
//|  INDICATOR INPUTS                 |
//+-----------------------------------+
input Smooth_Method XMA_Method=MODE_EMA_;//smoothing method
input int XLength=10;                    //smoothing depth                    
input int XPhase=15;                     //smoothing parameter,
//---- For JJMA, changing within -100 ... +100, affects the transient process quality;
//---- For VIDIA this is CMO period, for AMA this is a slow average
input uint ROCPeriod=10;                 //second smoothing depth 
input uint HighLevel=50;                 // highest volatility level
input uint MiddleLevel=20;               // medium volatility level
input uint ZeroLevel=0;                  // zero volatility level
input int LowLevel=-20;                  // minimum volatility level
input int Shift=0;                       // indicator horizontal shift in bars

The indicator uses the classes of the SmoothAlgorithms.mqh library. Working with that class was described in details in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

Fig. 1. Chaikin_Volatility_Histogram indicator

Fig. 1. Chaikin_Volatility_Histogram indicator

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

3sma 3sma

The EA based on three iMA (Moving Average, MA) indicators.

CenterOfGravityCandle_HTF CenterOfGravityCandle_HTF

The CenterOfGravityCandle indicator with the timeframe selection option available in the input parameters.

One MA EA One MA EA

The EA based on single iMA (Moving Average, MA) indicator signals.

AMA Histogram Normalize AMA Histogram Normalize

Version of the AMA Histogram indicator.