Forecasting Volatility with GARCH Model-Volatility Analysis in Python

Follow us on LinkedIn

In a previous post, we presented an example of volatility analysis using Close-to-Close historical volatility. In this post, we are going to use the Generalized Autoregressive Conditional Heteroskedasticity (GARCH) model to forecast volatility.

In econometrics, the autoregressive conditional heteroscedasticity (ARCH) model is a statistical model for time series data that describes the variance of the current error term or innovation as a function of the actual sizes of the previous time periods’ error terms; often the variance is related to the squares of the previous innovations. The ARCH model is appropriate when the error variance in a time series follows an autoregressive (AR) model; if an autoregressive moving average (ARMA) model is assumed for the error variance, the model is a generalized autoregressive conditional heteroskedasticity (GARCH) model.

ARCH models are commonly employed in modeling financial time series that exhibit time-varying volatility and volatility clustering, i.e. periods of swings interspersed with periods of relative calm. ARCH-type models are sometimes considered to be in the family of stochastic volatility models, although this is strictly incorrect since at time t the volatility is completely pre-determined (deterministic) given previous values.  Read more

As an example, we are going to apply the GARCH model to the SP500. We first downloaded 5 years of historical data of SPY from Yahoo Finance. Next, we used the first 4 years of data as the training set and fit the data to the GARCH (1, 1) model. The Python ARCH program returned the following model parameters,

GARCH volatility model in python

After obtaining the parameters, we applied the model to the remaining 1 year of data and calculated the forecasted volatility on a rolling window of 1 month. The picture below shows the rolling forecasted volatility,

GARCH volatility trading in python

Further questions

What's your question? Ask it in the discussion forum

Have an answer to the questions below? Post it here or in the forum

LATEST NEWSWilliams Sonoma CEO sells over $685k in company stock
Williams Sonoma CEO sells over $685k in company stock
Stay up-to-date with the latest news - click here
LATEST NEWSROSEN, TRUSTED INVESTOR COUNSEL, Encourages bluebird bio Inc. Investors to Inquire About Securities Class Action Investigation “ BLUE
ROSEN, TRUSTED INVESTOR COUNSEL, Encourages bluebird bio Inc. Investors to Inquire About Securities Class Action Investigation “ BLUE
Stay up-to-date with the latest news - click here
LATEST NEWSInsight Venture Partners executes stock sales in 1stdibs.com worth over $860k
Insight Venture Partners executes stock sales in 1stdibs.com worth over $860k
Stay up-to-date with the latest news - click here
LATEST NEWSGitlab director Sundeep Bedi sells shares worth over $527k
Gitlab director Sundeep Bedi sells shares worth over $527k
Stay up-to-date with the latest news - click here
LATEST NEWSAudit finds inadequate state oversight in Vermont’s largest fraud case
Audit finds inadequate state oversight in Vermont’s largest fraud case

The state of Vermont did not provide adequate oversight to prevent the massive fraud that occurred in ski area and other development projects funded by foreign investors’ money through a special visa program, a state audit has found. The financial scandal first revealed in 2016,…

Stay up-to-date with the latest news - click here

5 Comments

Leave a Reply