Connect MACD (Azullian)
Category: momentum, trend
A modular MACD indicator implementing the 'Connectable' framework, allowing for weight-indexed signal processing, cross-timeframe analysis, and symbol integration.
Formula
MACD = EMA(Close, Fast) - EMA(Close, Slow)\nSignal Line = EMA(MACD, Smoothing)\nHistogram = MACD - Signal Line\nLong Condition = (MACD > Signal) AND (Crossings Filter)\nShort Condition = (MACD < Signal) AND (Crossings Filter)
Inputs
- Fast Length (default: 12)
- Slow Length (default: 26)
- Smoothing (default: 9)
- Crossing Mode (default: Above/Below 0)
See signal primitives and every published strategy that uses Connect MACD (Azullian) on WOBR StrategyVerse.