MACD EMA Crossover Visualizer
Category: trend, momentum
Identifies trend changes and momentum shifts using the crossover of Fast and Slow Exponential Moving Averages (EMA), acting as a basic MACD crossover visualizer.
Formula
\text{FastMA} = \text{EMA}(\text{Close}, 12) \\ \text{SlowMA} = \text{EMA}(\text{Close}, 26) \\ \text{Crossover} = \text{FastMA} > \text{SlowMA} \implies \text{Bullish} \\ \text{Crossunder} = \text{FastMA} < \text{SlowMA} \implies \text{Bearish}
Inputs
- Fast length (default: 12)
- Slow length (default: 26)
See signal primitives, usage in published strategies and more on WOBR StrategyVerse.