EWMA Volatility and RiskMetrics
A plain rolling-window volatility treats a return from 30 days ago exactly as important as yesterday's, then drops it off a cliff the instant it exits the window. EWMA instead lets old news fade out smoothly, weighting recent days more.
Prerequisites: Volatility, GARCH Volatility Models
A simple 30-day rolling volatility estimate has an odd flaw: a single huge return from exactly 30 days ago counts with the same full weight as yesterday's return, right up until day 31, when it vanishes from the average entirely and the estimate can jump abruptly even though nothing new happened. Markets do not actually forget information on a hard 30-day cliff, recent shocks matter more than old ones, and that extra importance should fade gradually. The exponentially weighted moving average (EWMA), popularized by J.P. Morgan's RiskMetrics, replaces the hard cutoff with a smooth fade.
The analogy
Think of how a rumor's influence on your opinion decays. Something you heard this morning shapes your view strongly. Something you heard a week ago still nudges you a little. Something from a year ago barely registers, but it never disappears entirely, it is just discounted almost to nothing. A simple rolling average is like an office where gossip from exactly 30 days ago is discussed with full seriousness right up until the 31st day, when it is suddenly, completely forgotten and never mentioned again. EWMA is the more human version: everything fades continuously, nothing drops off a cliff.
Building the formula
Let be today's return and yesterday's variance estimate. EWMA updates the variance estimate as
In words: today's variance estimate is a blend of yesterday's variance estimate and today's squared return, one fresh data point recalibrating an existing belief, not a fresh calculation from scratch over a whole window. (the "decay factor," RiskMetrics famously used for daily data) controls how much weight stays on the past: closer to 1 means slow-moving, heavily-smoothed volatility; closer to 0 means the estimate reacts almost entirely to today's move and forgets yesterday almost completely.
Unrolling the recursion shows the "smooth fade" directly:
In words: today's variance is a weighted sum of every past squared return, with weights shrinking geometrically the further back you go. No return is ever fully forgotten, and none is dropped in one abrupt jump, unlike a rolling window's hard edge.
Generate a path and picture a shock, one unusually large move partway through. In a rolling-window estimate, that shock's effect appears suddenly and then disappears suddenly exactly days later, a visible step down. In an EWMA estimate, the same shock's effect appears immediately but decays smoothly afterward.
EWMA is GARCH's simple cousin: it is a restricted GARCH(1,1) model with the "long-run average variance" term dropped and the persistence and reaction parameters constrained to sum to exactly 1. It captures volatility clustering (the one robust fact about return volatility) with a single tunable knob, .
Worked example 1: updating the estimate by hand
Yesterday's EWMA variance was (a daily standard deviation of ). Today's return comes in unusually large at , so . Using :
New daily volatility: . A single 3% shock moved the volatility estimate from 1.0% to 1.22%, a meaningful but not overwhelming jump, exactly the "recent news matters, but does not dominate" behavior the decay factor is designed to produce. Tomorrow, absent another shock, this estimate will itself decay back toward calmer levels rather than staying frozen at 1.22% for a fixed window length.
Worked example 2: comparing decay factors
Same shock, , same starting point , but now with (slow-moving, used for lower-frequency risk):
Versus (fast-reacting):
Same shock, same starting volatility, three quite different next-day estimates (1.04%, 1.22%, 1.34%) purely from the choice of . A risk system tuned with too high a will be slow to flag a genuine regime change; one tuned too low will whipsaw its risk limits after every ordinary noisy day. There is no universally correct , only a trade-off a risk manager chooses deliberately.
What this means in practice
EWMA volatility feeds directly into daily VaR calculations at most banks (it is the core of the original RiskMetrics methodology), position sizing rules that scale exposure inversely with recent volatility, and stop-loss triggers that widen or tighten with market conditions. Its main appeal over full GARCH is that it needs no numerical estimation, is chosen once and the recursion runs in real time with a single multiply-and-add per day.
EWMA has no "floor," it assumes volatility can decay all the way toward zero if returns stay calm long enough, with no pull back toward a long-run average. Real volatility mean-reverts: after a calm stretch, a full GARCH(1,1) model (which includes that pull-back term) will predict a rebound toward normal levels, while EWMA will keep predicting continued calm right up until the next shock arrives, understating risk precisely at the moments complacency is most dangerous.
Related concepts
Practice in interviews
Further reading
- J.P. Morgan (1996), RiskMetrics Technical Document
- Bollerslev (1986), Generalized ARCH