Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Göstergeler

MA_RoundingStDev - MetaTrader 5 için gösterge

Görüntülemeler:
3299
Derecelendirme:
(14)
Yayınlandı:
2015.11.04 07:24
Güncellendi:
2023.03.29 13:45
\MQL5\Include\
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

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:

  1. Weak — no dots;
  2. Medium — small colored dots;
  3. 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

Fig.1. The MA_RoundingStDev indicator

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/14081

MA_Rounding_HTF MA_Rounding_HTF

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

Chande Momentum Oscillator_Candle Chande Momentum Oscillator_Candle

The Chande Momentum Oscillator indicator implemented as a sequence of candlesticks.

MA_RoundingCandle MA_RoundingCandle

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_HTF Background_Candles_Smoothed_Step_HTF

The indicator draws averaged candlesticks of a larger timeframe as color filled rectangles using DRAW_FILLING buffers.