Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
Unisciti alla nostra fan page
Unisciti alla nostra fan page
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
- Visualizzazioni:
- 4824
- Valutazioni:
- Pubblicato:
- 2018.03.01 11:52
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
Zero Lag is a modified EMA.
Calculation formula:
EMA ZL = α * (EMA + Gain * (Close - ZL [1])) + (1 - α) * ZL [1]
The formula is similar to EMA with an addition of a new value Gain * (Close - ZL [1])
Gain is the value selected from the interval [-GainLimit, GainLimit] to minimize the error for the current data sample (Close - ZL) → min
The indicator has three input parameters:
- Period - calculation period;
- Gain limit - the Gain parameter;
- Applied price - price used for calculations.
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/19896

ZeroLagMACD is an MACD version, which has a much smaller lag compared to the classic MACD.

An Expert Advisor based on the Diff_TF_MA indicator.