(G)ARCH estimation. Input series.

2 Ansichten (letzte 30 Tage)
Dmitry Guzairov
Dmitry Guzairov am 7 Jun. 2018
Beantwortet: Hang Qian am 7 Jun. 2018
After declaring a "default" garch model such as: model = garch(1,1); estimates = estimate(model, y); y should be return series or should it be residuals(squared) from mean models (arima for example)? i think an "offset" option inside model specification could be usefull, but have no clue about it.

Akzeptierte Antwort

Hang Qian
Hang Qian am 7 Jun. 2018
Hi Dmitry,
If we have obtained the residuals, then we can create a GARCH model and just estimate the variance equation, like
model = garch(1,1);
estimate(model, y);
Also, we can directly estimate an ARIMA model with GARCH errors, so that both the mean equation and the variable equation are estimated simultaneously. For example,
Mdl = arima(1,0,1);
Mdl.Variance = garch(1,1);
estimate(Mdl,y);
Regards,
Hang Qian

Weitere Antworten (0)

Kategorien

Mehr zu Conditional Mean Models finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by