Skip to content
Prev 14376 / 15274 Next

To obtain the t student of each rolling window with EGARCH model

Have you tried 'coef(roll1)'?

I think the documentation is reasonably clear (?ugarchroll).
It returns an object of class 'uGARCHroll' (which is clickable in the 
documentation and will take you to the class help page).
In the class help page you will see that one of the methods on the class
is:

"coef
signature(object = "uGARCHroll"): Extracts the list of coefficients for 
each estimated window in the rolling backtest."

Therefore, coef(roll1) will return the list of coefficient matrices
per roll window, from which you can extract the shape parameter of the
standardized Student distribution.

Similarly, please read the documentation for ugarchdistribution.


-Alexios
On 9/11/2017 9:03 AM, Sandrine Boulerne wrote: