Warning: package 'ggplot2' was built under R version 4.3.2
Forecasting with an ARCH/GARCH model is done by continuing the iteration of the model beyond the data that we have. If we set t=T+1 for an GARCH(1,1) we get the equation σT+1∣T2=E(yT+12∣FT)=ω+α1yT2+β1σT2 where ω,α1,β1 are estimated parameters, yT2 is observed at time T and σT2=ωj=0∑T−1β1j+α1j=1∑T−1β1j−1yT−j2+β1Tσ12, and σ12=ω/(1−α1−β1). If β1 is small and T large, the initial value for σ12 will not matter much.
Multistep forecast is achieved by noticing that σT+h∣T2=E(σT+h2∣FT)=E(yT+h2∣FT), such that σT+h∣T2=ω+α1E(yT+h−12∣FT)+β1E(σT+h−1∣FT)=ω+α1σT+h−1∣T2+β1σT+h−1∣T2=ω+(α1+β1)σT+h−1∣T2 If we simply iterate this formula backwards until we reach something that is known at time T. To simplify notation, let γ=α1+β1 and we also skip the hats for the time being. σT+h∣T2=ω+γσT+h−1∣T2=ω+γ(ω+γσT+h−2∣T2)=ω+ωγ+γ2σT+h−2∣T2=ω+ωγ+ωγ2+γ3σT+h−3∣T2⋮=ωj=0∑h−2γj+γh−1σT+1∣T2=ωj=0∑h−2γj+γh−1(ω+α1yT2+β1σT2)=ωj=0∑h−1γj+γh−1(α1yT2+β1σT2) Thus, inserting the α1+β1 for γ we have that σT+h∣T2=ωj=0∑h−1(α1+β1)j+(α1+β1)h−1(α1yT2+β1σT2). Assuming α1+β1<1, we get that when h→∞, h→∞limσT+h∣T=1−α1−β1ω, i.e. the forecast will approach the unconditional variance, which intuitively makes sense.
For the conditional variance we are typically not so interested in creating predictions intervals for the volatility, but rather use the point forecast for the volatility to make prediction intervals for the variable of interest (i.e. the stock returns). We forecast the varying forecast variance and use that instead of the fixed one we have seen used in other settings. Since the expectation of a GARCH model is zero, a 100(1−α)% prediction interval (under Gaussian assumptions) is given as ±zα/2σT+h∣T. We can also use volatility forecasting to calculate risk measures, such as Value At Risk (VaR) or Expected Shortfall (ES) (see McNeil et al, 2005, page 161).
References
Engle, R. F. (1982). Autoregressive conditional heteroscedasticity with estimates of the variance of United Kingdom inflation. Econometrica: Journal of the econometric society, 987-1007.
McNeil, A. J., Frey, R., & Embrechts, P. (2005). Quantitative risk management: concepts, techniques and tools-revised edition. Princeton university press.