거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Chaikin_Volatility_Histogram - MetaTrader 5용 지표

조회수:
3534
평가:
(8)
게시됨:
2018.08.23 13:17
업데이트됨:
2023.03.29 13:48
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: 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.