필터 지우기
필터 지우기

regression with ARMA_GARCH errors

조회 수: 5 (최근 30일)
Manthos Vogiatzoglou
Manthos Vogiatzoglou 2017년 12월 16일
댓글: Manthos Vogiatzoglou 2017년 12월 24일
I want to estimate a regression model with ARMA(3,3) - GARCH(1,1) errors:
y_t = bX_t + e_t
e_t = a_1e_{t-1}+...+a_3e_{t-3} + u_t + r_1u_{t-1}+...+r_3u_{t-3}
u_t = h_tε_t
h_t = ω + αu^2_{t-1} + βh_{t-1}
I know I can do it in two steps. Estimate the regression first and then fit an ARMA model with GARCH variance to the residuals of the regression, however I was wondering If I could do it in one step. The obvious choice would be a regARIMA model but regARIMA model doesn't support garch(1,1) value in 'Variance'.
Thank in advance
  댓글 수: 2
Giovambattista Perciaccante
Giovambattista Perciaccante 2017년 12월 20일
suppose your observed variable is called:
yt
specify the model for the conditional variance as GARCH(1,1)
varmdl = garch('GARCHLags', 1, 'ARCHLags', 1)
You haven't estimated anithing yet.
Then specify the model for the mean as ARMA(3,3). Inside the function ARIMA you call the model for the variance specifying the option 'Variance'
mdl = arima('ARLags',3, 'MALags',3,'Variance', varmdl)
Again you haven't estimated anything yet.
Finally using the function ESTIMATE you estimate all the coefficients in one go:
es = estimate(mdl, yt)
Manthos Vogiatzoglou
Manthos Vogiatzoglou 2017년 12월 24일
Thanks a lot!
Merry Christmas

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Conditional Variance Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by