MACD Classic
Category: momentum, trend
A classic implementation of the MACD providing the MACD line, Signal line, and Histogram in a separate window.
Formula
\\text{MACD} = EMA(Fast) - EMA(Slow) \\\\ \\text{Signal} = EMA(MACD, SignalSMA) \\\\ \\text{Histogram} = MACD - Signal
Inputs
- InpFastEMA (default: 12)
- InpSlowEMA (default: 26)
- InpSignalSMA (default: 9)
- InpAppliedPrice (default: PRICE_CLOSE)
See signal primitives and every published strategy that uses MACD Classic on WOBR StrategyVerse.