Legacy Documentation

Time Series (2011)

This is documentation for an obsolete product.
Current products and services

Previous section-----Next section

1.10.3 Testing for ARCH

Various standard procedures are available to test the existence of ARCH or GARCH. A commonly used test is the Lagrange multiplier (LM) test. Consider the null hypothesis that there is no ARCH, that is, 1=2==q=0. It is known that (see, for example, Bollerslev (1986), Eqs. (27) and (28)) the LM statistic has an asymptotic 2 distribution with q degrees of freedom under the null hypothesis. If the LM statistic evaluated under the null hypothesis is greater than , the null hypothesis is rejected at level . The function
LMStatistic[data, model]
gives the LM statistic, where model is either an ARCH or GARCH model. For an ARCH (or GARCH) regression model (10.7), we can use
LMStatistic[data, model, X, blist],
or if the regression model is an AR model,
LMStatistic[data, model, ARModel[philist]],
or
LMStatistic[data, model, ARModel[philist], ],
when the AR model has nonzero mean mu.
For example, in Example 10.4 we estimated the ARCH-in-mean model with q=1. We can test the hypothesis that both conditional mean and variance are in fact constant by testing the null hypothesis q=0. In the Lagrange multiplier test, the parameters used are those obtained under the null hypothesis. So we first estimate the model parameters with q=0.
In[32]:=
Out[32]=
In[33]:=
Out[33]=
Note that under the null hypothesis the series is simply white noise with a mean of and variance of 0. Therefore, we can estimate 0 and simply using the sample estimates.
In[34]:=
Out[34]=
In[35]:=
Out[35]=
In[36]:=
Out[36]=
In[37]:=
Out[37]=
In[38]:=
Out[38]=
In[39]:=
In[40]:=
Out[40]=
In[41]:=
Out[41]=
In[42]:=
Out[42]=
In[43]:=
In[44]:=
Out[44]=
In[45]:=
Out[45]=
Note that it is known that a general test for GARCH(p, q) is not feasible (see Bollerslev (1986)).