Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Telegram üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Görüntülemeler:
6953
Derecelendirme:
(12)
Yayınlandı:
2018.08.23 13:31
KDJ.mq5 (11.28 KB) görüntüle
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

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

It has four inputs:

  • Period - calculation period;
  • KFactor - K line calculation ratio;
  • DFactor - D line calculation ratio;
  • Threshold - signal line.

Calculation:

K = KFactor * PrevK + DFactor * RSV
D = KFactor * PrevD + DFactor * K
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

One of possible interpretations: J line crosses the Threshold level. Up - search the possibility for selling, down - search for the appropriate moment to buy.

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/21530

IdeaTrend IdeaTrend

IdeaTrend is meant for checking a trend defining idea.

Separate Trade Separate Trade

iATR (Average True Range, ATR) and iStdDev (Standard Deviation, StdDev) indicators are configured for crossing of the two iMAs (Moving Average, MA) plus for Buy and Sell separately.

KDJ_Averages KDJ_Averages

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.

MA_Lag_Reduce MA_Lag_Reduce

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