Unisciti alla nostra fan page
- Visualizzazioni:
- 2940
- Valutazioni:
- Pubblicato:
- 2018.08.23 13:25
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
The indicator paints candles going beyond the Rj_SlidingRangeRj_Digit channel. Candlesticks outside the channel limits are marked with color according to the trend. Candlesticks with the trend have bright fill color, ones against the trend - dark fill color.
The indicator algorithm features the ability to separately configure everything related to its upper and lower border.
//+--------------------------------------------+ //| INDICATOR INPUTS | //+--------------------------------------------+ input uint UpCalcPeriodRange=5; //Search period for high input uint UpCalcPeriodShift=0; //Shift period for high input uint UpDigit=2; //number of rounded decimal places for high //---- input uint DnCalcPeriodRange=5; //Search period for low input uint DnCalcPeriodShift=0; //Shift period for low input uint DnDigit=2; //number of rounded decimal places for low //---- input int Shift=0; //Indicator horizontal shift in bars
Fig. 1. Rj_SlidingRangeRj_Digit_System indicator
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/21513

The EA based on iCCI (Commodity Channel Index, CCI) indicator plus managing position volumes using martingale.

XPeriodCandleSystem indicator provides alerts, sends email and push notifications when the candles break through the indicator channel.

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

The EA is based on two iMAs (Moving Average, MA) and iMomentum (Momentum) filter crossing.