EGARCH and Asymmetric Volatility
A GARCH variant built to capture the well-documented fact that volatility reacts more strongly to bad news (price drops) than to equally sized good news (price rises), without requiring parameters to stay artificially positive.
Prerequisites: The ARCH-LM Test for Volatility Clustering
A plain GARCH model treats a 3% price drop and a 3% price rise as generating exactly the same amount of future volatility, because it only sees the square of the return, which erases the sign. But equity markets don't behave this way in practice: a sharp drop tends to trigger a much bigger jump in subsequent volatility than an equally sized rise does — panic and forced deleveraging spread faster than calm optimism. This is the well-known "leverage effect" (partly because a falling stock price mechanically raises a company's leverage ratio, making its equity riskier). EGARCH (Exponential GARCH) is built specifically to let bad news and good news have different-sized effects on future volatility, while also fixing a technical annoyance in plain GARCH: keeping variance positive without needing to constrain parameters.
An analogy: a nervous crowd versus a calm crowd
Picture a crowded room reacting to news. A sudden piece of bad news (a fire alarm) spreads panic and jostling almost instantly and disproportionately — everyone's on edge, bumping into each other, for a while after. A piece of good news of similar "size" (someone announces free food) causes some excited chatter but nowhere near the same lasting disruption to the room's overall commotion level. EGARCH encodes exactly this asymmetry into how it updates its volatility forecast: bad news (negative returns) gets a bigger, more lasting bump to predicted future volatility than good news (positive returns) of the same magnitude.
The mechanics, one symbol at a time
EGARCH models the log of variance (rather than variance directly) as evolving with both the size and the sign of the standardized past shock:
where is today's conditional variance, is yesterday's standardized shock (the residual divided by its own volatility, so it's on a comparable, roughly unit scale). In plain English: today's log-variance depends on yesterday's log-variance (, persistence), the magnitude of yesterday's shock beyond what's typically expected (, standard volatility clustering), and — crucially — the sign of yesterday's shock through the term. If is negative (the typical empirical finding for equities), a negative shock () adds a positive amount to log-variance (since negative times negative is positive), pushing future volatility up, while a positive shock of the same size adds a negative amount, pushing future volatility down — the asymmetric, leverage-style response. Because variance is modeled through its log, is automatically positive no matter what values the parameters take, unlike plain GARCH, which needs explicit positivity constraints on its coefficients.
Worked example 1: bad news versus good news, same size
Suppose fitted parameters are , , , , and yesterday with (typical for standard normal-ish shocks). For a bad-news shock (a 2-standard-deviation drop):
For a good-news shock of the same size, :
The bad-news case gives versus the good-news case's — exponentiating, versus . A 2-standard-deviation drop pushes forecast variance about 38% higher than an equally-sized rise () — the asymmetry made concrete.
Worked example 2: forecasting one day of variance
Continuing from the bad-news case, (in daily variance units, roughly a 71.9% annualized vol equivalent if this were in annualized terms, though here it's just illustrative daily units). If instead yesterday's shock had been calm (, no news either way): , giving — noticeably lower than after the bad-news shock, confirming the model expects volatility to stay elevated specifically because of the sign and size of what happened, not just because something happened.
What this means in practice
EGARCH (and its close cousin GJR-GARCH, see GJR-GARCH and the Leverage Effect) is standard in equity volatility modeling and option pricing precisely because ignoring the leverage effect causes a plain GARCH model to understate near-term volatility risk after a sell-off and overstate it after a rally — a systematic, directional bias that matters for VaR forecasts, options hedging, and any volatility-targeting strategy.
EGARCH lets bad news (negative returns) push future volatility up by more than equally sized good news pushes it down, by modeling log-variance with a term that responds to both the size and the sign of the last shock — and modeling the log rather than the level automatically keeps variance positive without artificial constraints on the parameters.
The classic mistake is fitting a symmetric GARCH model to equity data, getting a seemingly reasonable fit, and not separately checking for asymmetry — plain GARCH's symmetric treatment of gains and losses can still produce plausible-looking in-sample volatility estimates while systematically mispricing the risk that follows a sell-off. Always test for a significant leverage term (γ) before assuming a symmetric model is adequate for equity or equity-index volatility.
Related concepts
Practice in interviews
Further reading
- Nelson, Conditional Heteroskedasticity in Asset Returns: A New Approach, Econometrica
- Tsay, Analysis of Financial Time Series, ch. 3