당사 팬 페이지에 가입하십시오
MA_RoundingStDev - MetaTrader 5용 지표
- 조회수:
- 3485
- 평가:
- 게시됨:
- 2015.11.04 07:24
- 업데이트됨:
- 2023.03.29 13:45
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
The real author:
BACKSPACE
The MA_Rounding indicator with additional trend strength indication using colored dots based on the standard deviation algorithm.
If the standard deviation of the MA_Rounding indicator is between the dK1 and dK2 parameter values, then a small colored dot appears on the moving average. Its color corresponds to the current trend direction.
input double dK1=1.5; // Square-law filter coefficient 1 input double dK2=2.5; // Square-law filter coefficient 2
If the standard deviation becomes higher than the dK2 input parameter value, then the dot size increases. Thus, we get 3 levels of trend strength indication:
- Weak — no dots;
- Medium — small colored dots;
- Strong — big colored dots.
The indicator uses the СMoving_Average and CXMA 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. The MA_RoundingStDev indicator
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/14081
The MA_Rounding indicator with the timeframe selection option available in the input parameters.
Chande Momentum Oscillator_CandleThe Chande Momentum Oscillator indicator implemented as a sequence of candlesticks.
The MA_Rounding indicator implemented as a sequence of candlesticks. Candlesticks appear as a result of relevant price timeseries processed by the MA_Rounding algorithm.
Background_Candles_Smoothed_Step_HTFThe indicator draws averaged candlesticks of a larger timeframe as color filled rectangles using DRAW_FILLING buffers.