Guarda come scaricare robot di trading gratuitamente
Ci trovi su Telegram!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Visualizzazioni:
3292
Valutazioni:
(14)
Pubblicato:
2015.11.04 07:24
Aggiornato:
2023.03.29 13:45
\MQL5\Include\
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

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

Tradotto dal russo da MetaQuotes Ltd.
Codice originale 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.