I've estimated an ARMA-GARCH model. All the parameters except the intercept ($omega$) in the GARCH part are significant. So I tried to estimate the model again imposing that $omega = 0$. I compared the information criteria of the two models and found out that keeping omega in the model gives the model a better fit.
Questions:
- Does it make sense?
- Can I keep $omega$ in the model, although it appears non significant at 5% level, just because of better information criteria?
- Is it rigorous from a statistical point of view?
Best Answer
The intercept of a GARCH model should be kept in the model for the following reasons.
- If you force the intercept to be zero AND the sum of ARCH and GARCH coefficients is less than one (which will happen by the design of the estimation procedure that restricts the parameters to a stationary region defined by their sum being less than one), then your model implies the conditional variance is decreasing over time, which is generally undesirable.
- If you force the intercept to be zero AND the sum of ARCH and GARCH coefficients equals one, then you end up with an EWMA estimator of the conditional variance, and the conditional variance is a random walk (which again might be undesirable).
- Also, note that testing for $text{H}_0colon text{intercept}=0$ is testing a hypothesis that the parameter is on the boundary of the space (intercept cannot be negative). This might have implications on the null distribution of the test statistic, making the regular $p$-value associated with the $t$-statistic inappropriate. There might be some relevant information in Francq & Zakoian "Testing the nullity of GARCH coefficients: correction of the standard tests and relative efficiency comparisons" (2009), but I am not entirely sure.
Also note that statistical significance need not be a good basis for variable selection. Rob J. Hyndman explains in his blog post "Statistical tests for variable selection" why statistical significance testing should not be used for variable selection and suggests using cross validation or information criteria instead.
Statistical significance is not usually a good basis for determining whether a variable should be included in a model <…>. Statistical tests were designed to test hypotheses, not select variables. Tests on coefficients are answering a different question from whether the variable is useful in forecasting. It is possible to have an insignificant coefficient associated with a variable that is useful for forecasting. It is also possible to have a significant variable associated with a variable that is better omitted when forecasting.
The post is so good and clear that you better read the entire piece.
Hence, the answers to your questions 1., 2. and 3. are "YES", "YES" and "YES".
Similar Posts:
- Solved – Should I keep a non-significant intercept in a GARCH model
- Solved – Should I keep a non-significant intercept in a GARCH model
- Solved – What to do with an insignificant intercept in a GARCH model?
- Solved – ARCH + GARCH sum to more than 1. Dropping the intercept
- Solved – ARCH + GARCH sum to more than 1. Dropping the intercept