거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
3899
평가:
(8)
게시됨:
2018.07.09 13:46
업데이트됨:
2018.09.19 13:54
RIND.mq5 (10.67 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

The range indicator compares daily range (High - Low) to the range between days (Close - PrevClose).

  • Where the intraday range is larger than the interday range, the indicator will have high values, which indicates the stop/end of the current trend;
  • Where the indicator has low values, it means the potential start of a new trend.

The indicator has seven configurable parameters:

  • Period - calculation period;
  • Smoothing - smoothing period;
  • Method - calculation method;
  • Level 1 - values level 1;
  • Level 2 - values level 2;
  • Level 3 - values level 3;
  • Level 4 - values level 4;

Calculation:

RIND = MA(Range, Smoothing, Method)

where:

MA - moving average on the Range data with the Smoothing period and the Method calculation method

If Max - Min > 0:

Range = 100.0 * (Value - Min) / (Max - Min)

otherwise:

Range = 100.0 * (Value - Min)

If Close > PrevClose:

Value = TrueRange / (Close - PrevClose

otherwise:

Value = TrueRange

Max, Min - the highest and the lowest Value within Period

TrueRange = Maximum(High, PrevClose) - Minimum(Low, PrevClose)

Maximum, Minimum - the highest and the lowest values of the two

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

SRange_Contraction SRange_Contraction

A signal indicator of daily ranges.

PAIN PAIN

Oscillator PAIN (Price Action Indicator).

Stoch_RSI Stoch_RSI

Stochastic relative strength index increases the sensitivity of RSI (Relative Strength Index), the disadvantage of which is fluctuation between boundary lines and no signals to open a position.

TAI TAI

Indicator Trend Analysis Index.