Main Content

Likelihood Ratio Test for Conditional Variance Models

This example shows how to compare two competing, conditional variance models using a likelihood ratio test.

Step 1. Load the data and specify a GARCH model.

Load the Deutschmark/British pound foreign exchange rate data included with the toolbox, and convert it to returns. Specify a GARCH(1,1) model with a mean offset to estimate.

load Data_MarkPound
r = price2ret(Data);
T = length(r);
Mdl = garch('Offset',NaN,'GARCHLags',1,'ARCHLags',1);

Step 2. Estimate the GARCH model parameters.

Fit the specified GARCH(1,1) model to the returns series using estimate. Return the value of the loglikelihood objective function.

[EstMdl,~,logL] = estimate(Mdl,r);
 
    GARCH(1,1) Conditional Variance Model with Offset (Gaussian Distribution):
 
                   Value       StandardError    TStatistic      PValue  
                ___________    _____________    __________    __________

    Constant     1.0753e-06      3.572e-07         3.0104      0.0026088
    GARCH{1}        0.80612       0.013269         60.753              0
    ARCH{1}         0.15307       0.011528         13.278     3.1183e-40
    Offset      -6.1359e-05     8.2871e-05       -0.74042        0.45905

The estimation output shows the four estimated parameters and corresponding standard errors. The t statistic for the mean offset is not greater than two in magnitude, suggesting this parameter is not statistically significant.

Step 3. Fit a GARCH model without a mean offset.

Specify a second model without a mean offset, and fit it to the returns series.

Mdl2 = garch(1,1);
[EstMdl2,~,logL2] = estimate(Mdl2,r);
 
    GARCH(1,1) Conditional Variance Model (Gaussian Distribution):
 
                  Value       StandardError    TStatistic      PValue  
                __________    _____________    __________    __________

    Constant    1.0538e-06     3.5052e-07        3.0062       0.0026452
    GARCH{1}       0.80654       0.012913        62.462               0
    ARCH{1}        0.15438       0.011577        13.335      1.4436e-40

All the t statistics for the new fitted model are greater than two in magnitude.

Step 4. Conduct a likelihood ratio test.

Compare the fitted models EstMdl and EstMdl2 using the likelihood ratio test. The number of restrictions for the test is one (only the mean offset was excluded in the second model).

[h,p] = lratiotest(logL,logL2,1)
h = logical
   0

p = 0.4534

The null hypothesis of the restricted model is not rejected in favor of the larger model (h = 0). The model without a mean offset is the more parsimonious choice.

Step 5. Infer the conditional variances and standardized innovations.

Infer and plot the conditional variances and standardized innovations for the fitted model without a mean offset (EstMdl2).

v = infer(EstMdl2,r);
inn = r./sqrt(v);

figure
subplot(2,1,1)
plot(v)
xlim([0,T])
title('Conditional Variances')

subplot(2,1,2)
plot(inn)
xlim([0,T])
title('Standardized Innovations')

Figure contains 2 axes objects. Axes object 1 with title Conditional Variances contains an object of type line. Axes object 2 with title Standardized Innovations contains an object of type line.

The inferred conditional variances show the periods of high volatility.

See Also

Objects

Functions

Related Examples

More About