Skip to content
Prev 10343 / 15274 Next

rugarch and fGarch

1. Please examples with reproducible data for such a detailed question. 
SPX.log.ret is not a commom data object found in any of the packages I 
know of.

2. How is the significance much lower? Looking at the Pr(>|t|) column 
they both look very significant across all parameters. The fact that the 
robust s.e. have NaN means that the robust hessian could not be 
calculated indicating that you need to tune the solver/use scaling (set 
'fit.control=list(scale=1)'). Looking at the results, this is likely 
because of the 'gamma' parameter hitting its upper limit.

3. This is a rolling out of sample forecast which means that  you are 
getting rolling estimates using 100 out of sample data points from the 
end of your dataset. As to the "expected" vol in 21 days ROLLING 1 day 
at a time, 'n.ahead=21', you need to pass this argument to the 
as.data.frame method or better still use:
'sigma=as.data.frame(volforecast, which = "sigma")'. This will be 
reverting to its long run mean. I really don't know what you expect as 
being reasonable or not.

-Alexios
On 12/06/2012 08:49, Belgarath wrote: