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

Rj_SlidingRangeRj_Digit_System - MetaTrader 5용 지표

조회수:
2769
평가:
(11)
게시됨:
2018.08.23 13:25
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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

Fig. 1. Rj_SlidingRangeRj_Digit_System indicator

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/21513

CCI and Martin CCI and Martin

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

XPeriodCandleSystem_Alert XPeriodCandleSystem_Alert

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

Rj_SlidingRangeRj_Digit_System_HTF Rj_SlidingRangeRj_Digit_System_HTF

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

Crossing Moving Average Crossing Moving Average

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