당사 팬 페이지에 가입하십시오
- 조회수:
- 24927
- 평가:
- 게시됨:
- 2010.08.23 15:57
- 업데이트됨:
- 2016.11.22 07:32
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
This oscillator is MQL5 version of ZeroLag MACD indicator, published in Russian section of MQL4 CodeBase.
This indicator provides a signal few bars earlier, compared with standard MACD and its divirgence is much more clear.
Calculation:
ZeroLAG MACD(i) = (2*EMA(Close, FP, i) - EMA(EMA(Close, FP, i), FP, i)) - (2*EMA(Close, SP, i) - EMA(EMA(Close, SP, i), SP, i));
ZeroLAG MACD Signal(i) = 2*EMA( ZeroLAG MACD(i), SigP, i) - EMA(EMA( ZeroLAG MACD(i), SigP, i), SigP, i);
where:
- EMA - exponential moving average;
- Close - close price of the bar;
- FP - period of fast moving average;
- SP - period of slow moving average;
- SigP - period of signal moving average.
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/170

The MQL5 keywords and aliases for autoreplace are presented.

It's an oscillator, similar to OsMA with Variable Index Dynamic Average.
![MACD Histogram, multi-color [v04]](https://c.mql5.com/i/code/indicator.png)
MACD indicator with MACD line, Signal line and multi-color histogram.
![MACD Histogram, multi-timeframe, multi-color [v03]](https://c.mql5.com/i/code/indicator.png)
MACD indicator with histogram, can be applied any timeframe (higher or lower than the current chart's timeframe).