External regressors in the volatility process of a GARCH.
6 ビュー (過去 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!