|
Chapter Contents |
Previous |
Next |
| The AUTOREG Procedure |
Models can be given labels of up to eight characters. Model labels are used in the printed output to identify the results for different models. The model label is specified as follows:
The following options can be used in the MODEL statement after a slash (/).
model y = x1 x2 / garch=(q=1,p=1);When you want to estimate the subset of ARCH terms, for example, ARCH(1 3), you can write the SAS statement as follows:
model y = x1 x2 / garch=(q=(1 3));With the TYPE= option, you can specify various GARCH models. The IGARCH(2,1) model without trend in variance is estimated as follows:
model y = / garch=(q=2,p=1,type=integ,noint);
The following options can be used in the GARCH=( ) option. The options are listed within parentheses and separated by commas.
The default is TYPE=NELSON.



When the regression model contains several lags of the dependent variable, specify the lagged dependent variable for the smallest lag in the LAGDEP= option, for example,
model y = x1 x2 ylag2 ylag3 / lagdep=ylag2;

against the alternative

where
is the predicted value from the OLS
estimation of the null model.
The RESET option produces three RESET test statistics
for p = 2, 3, and 4.
The PHILLIPS or PHILLIPS= suboption of the STATIONARITY= option produces the Phillips-Perron unit root test when there are no regressors in the MODEL statement. When the model includes regressors, the PHILLIPS option produces the Phillips-Ouliaris cointegration test. The PHILLIPS option can be abbreviated as PP.
The PHILLIPS option performs the Phillips-Perron test
for three null hypothesis cases: zero mean, single mean,
and deterministic trend.
For each case, the PHILLIPS option computes two test statistics,
Z(
) and
,
and reports their p-values.
These test statistics have the same limiting
distributions as the corresponding Dickey-Fuller tests.
The three types of the Phillips-Perron unit root test reported by the PHILLIPS option are as follows.



You can specify several truncation points l for weighted variance estimators using the PHILLIPS=(l1 ... ln) specification.
The following is an example of specifying initial values for an AR(1)-GARCH(1,1) model with regressors X1 and X2:
model y = w x / nlag=1 garch=(p=1,q=1)
initial=(1 1 1 .5 .8 .1 .6);
The model specified by this MODEL statement is





The initial values for the regression parameters,
INTERCEP (
), X1 (
),
and X2 (
),
are specified as 1.
The initial value of the AR(1) coefficient (
)
is specified as 0.5.
The initial value of ARCH0 (
) is 0.8, the initial value
of ARCH1 (
) is 0.1, and the initial value of
GARCH1 (
) is 0.6.
When you use the RESTRICT statement, the initial values specified by the INITIAL= option should satisfy the restrictions specified for the parameter estimates. If they do not, the initial values you specify are adjusted to satisfy the restrictions.
If the GARCH= or LAGDEP option is specified, the default is METHOD=ML. Otherwise, the default is METHOD=YW.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.