Unisciti alla nostra fan page
KDJ - indicatore per MetaTrader 5
- Visualizzazioni:
- 7551
- Valutazioni:
- Pubblicato:
- 2018.08.23 13:31
- Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
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
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/21530
IdeaTrend is meant for checking a trend defining idea.
Separate TradeiATR (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 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_ReduceMA Lag Reduce indicator is an SMA with the ability to set the delay elimination factor.