HAR-RV Model
The HAR-RV model forecasts tomorrow's volatility as a weighted blend of yesterday's, last week's average, and last month's average realized volatility — a simple regression that captures volatility's long memory without needing a complicated model.
Prerequisites: Realized Volatility Estimators, The HAR-RV Forecasting Model
A weather forecaster predicting tomorrow's temperature doesn't just look at yesterday's reading — they blend yesterday's number with this week's average and this month's trend, because temperature has memory at multiple time scales at once. Volatility behaves the same way: a single quiet or wild day doesn't reset the picture, but neither does a whole quiet month guarantee tomorrow is quiet if yesterday was suddenly wild. The HAR-RV model (Heterogeneous Autoregressive model of Realized Volatility) forecasts tomorrow's volatility by literally blending yesterday's, last week's average, and last month's average realized volatility.
The formula, defined
In words: is the realized volatility being forecast for tomorrow. is just today's realized volatility (the daily component). is the average realized volatility over the past 5 trading days (the weekly component), and the average over the past 22 trading days (the monthly component). is a constant, , , are the weights the regression assigns to each horizon, fit by ordinary least squares on historical data, and is the forecast error. This is nothing more exotic than a linear regression with three specific, overlapping-average inputs — its power comes from those inputs approximating volatility's genuine long-memory behavior (today's shock still matters weeks later, just with decaying weight) using only three simple, easy-to-compute regressors instead of an explicit long-memory model.
Worked example 1 — computing the three inputs
Suppose today's RV is (in daily variance units). The past 5 days' RVs were 0.00090, 0.00075, 0.00110, 0.00060, 0.00095, averaging to . The past 22 days average out to . With fitted coefficients (typical magnitudes from real calibrations) , , , : forecast . Converting to annualized vol: 46.3%.
Worked example 2 — how a volatility shock decays through the forecast
Suppose instead today saw a large jump, so (over three times normal) while the weekly and monthly averages are unchanged at 0.00086 and 0.00070 (yesterday's shock hasn't had time to move those slower averages much yet). New forecast: — roughly double the earlier forecast, but not three times higher even though today's RV itself was over three times higher, because the weekly and monthly terms pull the forecast back toward their own, still-normal levels. As the days pass and the shock rolls into the weekly and then monthly averages, its influence on the forecast fades gradually rather than dropping off a cliff — this gradual, multi-horizon decay is exactly the long-memory behavior HAR-RV is designed to approximate.
The explorer above fits a line through scattered points with visible residuals — HAR-RV is the same OLS machinery, just with three regressors (daily, weekly, monthly RV) instead of one, each contributing its own slope to the forecast.
What this means in practice
HAR-RV is a standard benchmark in volatility forecasting because it's simple to estimate (ordinary linear regression), needs no distributional assumptions beyond what OLS requires, and empirically forecasts about as well as far more complicated long-memory models like fractionally integrated GARCH. Extensions add a jump component (using bipower variation, see bipower variation and jump detection, to separate continuous from jump variance and let them have different predictive weights) or asymmetric terms that let negative returns raise the forecast more than positive ones of the same size.
HAR-RV as written is a linear model in levels of RV, but RV is strictly non-negative and right-skewed (occasional huge spikes, never negative values) — fitting the regression in raw levels can produce a forecast that technically comes out negative in extreme cases, and residuals tend to violate the constant-variance assumption OLS relies on. In practice, most implementations fit the model to instead, which keeps forecasts positive by construction and better matches the residuals' actual distribution — using the raw-levels version without checking this is a common rookie mistake.
HAR-RV forecasts volatility as a weighted blend of today's, this week's average, and this month's average realized volatility — three simple regressors that approximate genuine long-memory dynamics well enough to rival much more complex models.
Practice
- With , , , , and inputs , , , compute the forecast .
- Why does fitting HAR-RV to rather than raw RV levels avoid the possibility of a negative volatility forecast?
Related concepts
Practice in interviews
Further reading
- Corsi, A Simple Approximate Long-Memory Model of Realized Volatility (Journal of Financial Econometrics, 2009)
- Andersen, Bollerslev, and Diebold, Roughing It Up: Including Jump Components (Review of Economics and Statistics, 2007)