I am modelling a time series as a GARCH(1,1)-process:
And the z_t are t-distributed.
In R, I do this in the fGarch
-package via
model <- garchFit(formula = ~garch(1,1), cond.dist = "std", data=r)
Is this correct?
Now, I would like to understand the output of this to check my formula.
Obviously, model@fit$coefs
gives me the coefficients and model@fitted
gives me the fitted r_t.
But how do I get the fitted sigma_t and z_t?
I believe that the best way is to define extractor functions when generics are not available and methods when generics already exist.
The first two functions extract the values of interest from the fitted objects.
Here a
logLik
method for objects of class"fGARCH"
is defined.Now use the functions, including the method. The data comes from the first example in
help("garchFit")
.Note also that methods
coef
andfitted
exist, there is no need formodel@fitted
ormodel@fit$coefs
, like is written in the question.