I was trying to implement SARIMA+GARCH(1,1) on R, but there is no option in fGarch to do that. Hence, I run GARCH on residuals from SARIMA, and it worked well. However, I don't know how to implement both results on my forecast 6 n.ahead in R. The expected value would be the same theorically, but the Confidence Intervals would change. Could you provide some explanation, and the code? Thank you.
Asked
Active
Viewed 30 times
0
-
SARIMA is just a restricted ARIMA. As far as I can tell, `fGarch` allows ARMA in the mean but no restrictions. `rugarch` allows both, so you could just use that. Also, you mean prediction interval, not confidence interval. – Chris Haug Dec 09 '21 at 23:40
-
Perhaps [this](https://stats.stackexchange.com/questions/352654/how-to-make-h-step-interval-forecasts-from-an-arma-garch-model/352665#352665) will be of some relevance. It does not provide any code, though. – Richard Hardy Dec 10 '21 at 17:40