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

KDJ Averages oscillator defines when it is necessary to search for market entry conditions. Unlike KDJ, it is calculated using standard smoothing methods. In case of the default settings, its J line is slightly faster.

It has six input parameters:

  • KDJ period - KDJ indicator calculation period;
  • K period - K line calculation period;
  • K method - K line calculation method;
  • D period - D line calculation period;
  • D method - D line calculation method;
  • Threshold - signal line.

Calculation:

K = MA(RSV, KPeriod, KMethod)
D = MA(K, DPeriod, DMethod)
J = 3.0*D - 2.0*K

where:

RSV = ((Close – Lowest Low) / (Highest high – Lowest low)) * 100

Lowest Low, Highest High - the lowest and highest prices within the Period interval.

Possible interpretation options: J line crossing the Threshold level. Up - search the possibility for selling, down - search for the appropriate moment to buy.

After J line crosses the Threshold level, wait till J line is crossed by K and D lines. Crossing direction = market entry direction.

Fig. 1. KDJ Averages

Fig. 2. KDJ Averages compared with KDJ

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

KDJ KDJ

KDJ oscillator defines when it is necessary to search for market entry conditions.

IdeaTrend IdeaTrend

IdeaTrend is meant for checking a trend defining idea.

MA_Lag_Reduce MA_Lag_Reduce

MA Lag Reduce indicator is an SMA with the ability to set the delay elimination factor.

Momentum_Signal Momentum_Signal

The signal indicator based on Momentum, CCI, ATR, RSI and ADX.