(G)ARCH estimation. Input series.
조회 수: 2 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
Hang Qian
2018년 6월 7일
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
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Conditional Variance Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!