4.9 KiB
VIDYA: Variable Index Dynamic Average
| Property | Value |
|---|---|
| Category | Trend (IIR MA) |
| Inputs | Source (close) |
| Parameters | period |
| Outputs | Single series (Vidya) |
| Output range | Tracks input |
| Warmup | period bars |
| Signature | vidya_signature |
TL;DR
- The Variable Index Dynamic Average (VIDYA) is an adaptive moving average that automatically adjusts its smoothing speed based on market volatility.
- Parameterized by
period. - Output range: Tracks input.
- Requires
periodbars of warmup before first valid output (IsHot = true). - Validated against TA-Lib, Skender, and Tulip reference implementations where available.
"Tushar Chande asked: 'Why should I trust a moving average that treats a market crash the same as a lunch break?' VIDYA is the answer."
The Variable Index Dynamic Average (VIDYA) is an adaptive moving average that automatically adjusts its smoothing speed based on market volatility. When the market is trending (high volatility), VIDYA speeds up to capture the move. When the market is ranging (low volatility), it slows down to filter out the noise.
Historical Context
Developed by Tushar Chande and introduced in Technical Analysis of Stocks & Commodities (March 1992). It was one of the first "intelligent" moving averages, using Chande's own Momentum Oscillator (CMO) as the volatility index.
Architecture & Physics
VIDYA is essentially an EMA where the alpha (\alpha) is not constant.
\alpha_{dynamic} = \alpha_{static} \times |CMO|
Since |CMO| ranges from 0 to 1:
- CMO = 0 (No Trend):
\alpha = 0. VIDYA becomes a flat line. - CMO = 1 (Strong Trend):
\alpha = \alpha_{static}. VIDYA acts like a standard EMA.
Mathematical Foundation
1. Chande Momentum Oscillator (CMO)
CMO = \frac{\sum Up - \sum Down}{\sum Up + \sum Down}
2. Dynamic Alpha
\alpha_{static} = \frac{2}{N+1}
\alpha_{dynamic} = \alpha_{static} \times |CMO|
3. The Update
VIDYA_t = (\alpha_{dynamic} \times Price_t) + ((1 - \alpha_{dynamic}) \times VIDYA_{t-1})
Performance Profile
Operation Count (Streaming Mode, Scalar)
Hot path (buffer full):
| Operation | Count | Cost (cycles) | Subtotal |
|---|---|---|---|
| SUB | 2 | 1 | 2 |
| CMP | 2 | 1 | 2 |
| ADD | 2 | 1 | 2 |
| ABS | 1 | 1 | 1 |
| DIV | 1 | 15 | 15 |
| MUL | 2 | 3 | 6 |
| FMA | 1 | 4 | 4 |
| Total | 11 | — | ~32 cycles |
The hot path consists of:
- Change calculation:
price - prevClose— 1 SUB - Up/Down split:
change > 0 ? change : 0— 2 CMP (conditional moves) - Buffer sum update: incremental via RingBuffer.Sum — 2 ADD (amortized O(1))
- CMO calculation:
|sumUp - sumDown| / (sumUp + sumDown)— 1 ABS + 1 SUB + 1 ADD + 1 DIV - Dynamic alpha:
alpha * vi— 1 MUL - VIDYA update:
FMA(lastVidya, 1-dynamicAlpha, dynamicAlpha * price)— 1 FMA + 1 MUL
Warmup path (first bar):
| Operation | Count | Cost (cycles) | Subtotal |
|---|---|---|---|
| Assignment | 4 | 1 | 4 |
| Total | 4 | — | ~4 cycles |
First bar initializes state with price value only.
Batch Mode (SIMD Analysis)
VIDYA is an IIR filter with CMO-driven adaptive alpha — not vectorizable across bars due to recursive state dependency. The CMO calculation uses O(1) incremental ring buffer sums.
| Optimization | Benefit |
|---|---|
| FMA instructions | Saves ~2 cycles per bar |
| Incremental CMO sums | O(1) vs O(period) per bar |
| ArrayPool buffers | Minimizes heap allocation in batch mode |
Quality Metrics
| Metric | Score | Notes |
|---|---|---|
| Accuracy | 10/10 | Matches reference implementation exactly |
| Timeliness | 8/10 | Adaptive; speeds up in trends, slows in ranges |
| Overshoot | 9/10 | Minimal overshoot; constrained by dynamic alpha |
| Smoothness | 7/10 | Variable; smooth in ranges, responsive in trends |
Validation
| Library | Status | Notes |
|---|---|---|
| QuanTAlib | ✅ | Validated. |
| TA-Lib | N/A | Not implemented. |
| Skender | N/A | Not implemented. |
| Tulip | ❌ | Uses Standard Deviation ratio (1992), not CMO (1994). |
| Ooples | ❌ | Diverges significantly due to volatility logic. |
Common Pitfalls
- Flatlining: In extremely choppy, sideways markets, CMO can approach 0, causing VIDYA to flatline completely. This is a feature, not a bug.
- Sensitivity: VIDYA is highly sensitive to the period chosen for the CMO. A short period makes it jittery; a long period makes it sluggish.
- Comparison: Often compared to KAMA (Kaufman). KAMA uses Efficiency Ratio (ER); VIDYA uses CMO. They are conceptually similar but mathematically distinct.