ARMA + GARCH to Predict VIX

GARCH(1,1)

GARCH(1,1) is a common approach for modeling volatility. They were developed by Robert Engle to deal with the problem of auto-correlated residuals (which occurs when you have volatility clustering, for example) in time-series regression.

What we did:

  1. Picked the best fit ARIMA(p,d,q) model for historical VIX over different look back periods
  2. Created a GARCH(1,1) model based on ARMA(p,q)
  3. Predicted t+1 VIX

500-day lookback

We found that modeling based on the previous 500-day VIX closing levels gave us the least prediction errors. The appendix has the charts for other lookback periods.

Prediction vs. Actual

VIX.prediction.500

Note how in some periods, the predicted value (red) is just the previous value.

Prediction error

VIX.prediction.pctError.500

Values less than zero implies that the model prediction overshoots the actual VIX level the next day.

Prediction vs. Actual Density Plot

VIX.prediction.density.500

The model bias towards higher estimation of VIX is made explicit here.

Next steps

We will integrate this model to our morning ‘Options Daily’ posts so that we get an idea of both the current state of VIX and the expected modeled behavior.

Caveats:

  1. The 500-day lookback is purely empirical. Maybe some other look-back period that we have not tested would have been ideal to model. We will never know.
  2. Only the known history can be modeled. The outputs should be used along with market determined proxies of expected volatility.
  3. There is always a probability distribution around a predicted value. We will publish this in our daily posts.

Appendix

VIX.pacf

VIX.acf

VIX Model vs. Actual across various lookback periods. (pdf)

quant.stackexchange

Volatility Forecasting I: GARCH Models, Rob Reider (pdf)

Comments are closed, but trackbacks and pingbacks are open.