Forecast GARCH (variance) series
Posted: Sun May 10, 2015 1:32 am
Hello,
I am trying to forecast the GARCH series from a GARCH equation.
The object reference writes the following about this:
that then a contains standard errors of the FORECAST for the mean equation (so not of the GARCH series) and b contains the forecasted GARCH series (so the forecasted VARIANCE from the GARCH equation)? Also I assume that the last argument is really the forecasted variance and not the square root of that (i.e. the volatility)?
Lastly, I noticed that some times I get negative values out of the last argument (what I assumed to be the forecasted GARCH variance) so maybe I am wrong about its meaning.
Thanks in advance.
I am trying to forecast the GARCH series from a GARCH equation.
The object reference writes the following about this:
Am I correct in concluding that if I write for instanceeq_name.fit(options) yhat [y_se]
eq_name.fit(options) yhat [y_se y_var]
Following the fit keyword, you should type a name for the forecast series and, optionally, a
name for the series containing the standard errors. For ARCH specifications, you may use the second form of the command, and optionally include a name for the conditional variance
series.
Code: Select all
test.fit yhat a bLastly, I noticed that some times I get negative values out of the last argument (what I assumed to be the forecasted GARCH variance) so maybe I am wrong about its meaning.
Thanks in advance.