3.3 KiB
EMA: Exponential Moving Average
"The AK-47 of technical indicators. It's been around forever, everyone uses it, and it gets the job done. It's not fancy, but it works."
EMA (Exponential Moving Average) is the standard by which all other averages are judged. Unlike the SMA, which treats data from 10 days ago with the same reverence as data from 10 seconds ago, the EMA understands that in markets, recency is relevance. It applies an exponentially decaying weight to older prices, reacting faster to new information.
Historical Context
The EMA was brought to the financial world to solve the "drop-off effect" of the SMA (where an old price dropping out of the window causes the average to jump). By using a recursive formula, the EMA includes all past data in its calculation, with weights diminishing to infinity. It is the infinite impulse response (IIR) filter of the trading world.
Architecture & Physics
The EMA is defined by its smoothing factor, \alpha.
- High $\alpha$: Fast decay, responsive, noisy.
- Low $\alpha$: Slow decay, smooth, laggy.
The QuanTAlib implementation includes a Compensator for the warmup phase. A standard EMA starts at 0 (or the first price) and takes time to converge. This early-stage bias is corrected mathematically so the EMA is accurate from the very first few bars, rather than waiting for 3 \times N bars to stabilize.
Mathematical Foundation
The standard recursive formula:
\alpha = \frac{2}{N + 1}
\text{EMA}_t = \alpha \cdot P_t + (1 - \alpha) \cdot \text{EMA}_{t-1}
The Compensator (Warmup Correction)
To handle the initialization bias (where \text{EMA}_0 is unknown), the sum of weights is tracked:
E_t = (1 - \alpha)^t
\text{Corrected EMA}_t = \frac{\text{Uncorrected EMA}_t}{1 - E_t}
This ensures the EMA is statistically valid even during the warmup period.
Performance Profile
This is as fast as it gets.
| Metric | Score | Notes |
|---|---|---|
| Throughput | ★★★★★ | Single multiplication and addition. |
| Allocations | ★★★★★ | 0 bytes; hot path is allocation-free. |
| Complexity | ★★★★★ | O(1) recursive calculation. |
| Precision | ★★★★★ | double precision. |
Zero-Allocation Design
EMA is implemented using a simple scalar state variable. The calculation is purely algebraic and requires no heap allocations during the Update cycle.
Validation
Validated against TA-Lib, Skender, Tulip, and Ooples.
| Library | Status | Notes |
|---|---|---|
| TA-Lib | ✅ | Matches TA_EMA. |
| Skender | ✅ | Matches GetEma. |
| Tulip | ✅ | Matches ema. |
| Ooples | ✅ | Matches CalculateExponentialMovingAverage. |
Common Pitfalls
- The "First Value" Problem: Most libraries seed the EMA with the first price or an SMA of the first N prices. In QuanTAlib, a mathematical compensator is used. Results during the first N bars are more accurate than TA-Lib, which might look like a discrepancy. It is not; the QuanTAlib implementation is correct and TA-Lib is approximating.
- Alpha vs. Period: Remember that
Nis just a proxy for\alpha. You can construct an EMA directly with an\alpha(e.g., 0.1) if you prefer signal processing terminology over trader terminology.