External regressors in the volatility process of a GARCH.
조회 수: 4 (최근 30일)
이전 댓글 표시
How do I estimate a GARCH model with external regressors in the conditional variance process?
댓글 수: 0
답변 (1개)
Shashank Prasanna
2014년 6월 23일
You can include exogenous inputs to the arima model (arimax) with a garch variance model:
mdl = arima('AR',0.2,'D',1,'MA',0.3,'Beta',0.5,'Variance',garch(1,1))
Exogenous variables for garch model in not supported as far as I know.
댓글 수: 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!