필터 지우기
필터 지우기

ARMA-GARCH model and dummy variables MATLAB

조회 수: 10 (최근 30일)
Ali Akbar
Ali Akbar 2015년 4월 10일
댓글: Brendan Hamm 2015년 4월 13일
I have an array of percentage returns that I want to run dummy variables on in order to extract certain values for certain dates of the month. I want to fit a ARMA-GARCH model to this. This is what I do:
EstMdl = estimate(Mdl,Reg_var_SSE)
Reg_var_SSE is a 6260x21 matrix with returns in column 1 and intercept plus dummy variables in 2:21.
Looks like this:
I get the error message:
Error using arima/estimate (line 224) Input response series data must be non-empty and a column vector.
Probably estimate() is not meant to be used this way, but this is want I want to do.

답변 (1개)

Brendan Hamm
Brendan Hamm 2015년 4월 10일
The second input to the estimate function should be the "univariate time series", so we cannot pass a matrix as this argument. What are you trying to do with the dummy-variables here? Is it that you want to estimate the parameters of different GARCH models for each of these groups?
  댓글 수: 4
Ali Akbar
Ali Akbar 2015년 4월 13일
Is what I am trying to do possible at all?
I want to capture the returns of specific days of the month with dummies and I want to model the volatility with GARCH.
Brendan Hamm
Brendan Hamm 2015년 4월 13일
I cannot see what you think the model would be using dummy variables and it does not seem to make much sense to do this. In a GARCH model your returns would be regressed on by the previous values, so your predictor variables are the same as the response variables excepting they are lagged. This is not like a regression model with categorical predictors where the dummy variables consider grouping. So try and take a step back and ask yourself what this model would like like mathematically. You will likely find yourself either landing on using monthly lags to account for this (likely your only option) or trying a new approach entirely. I would only use monthly lags if there was evidence to support the seasonality in the data.

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

카테고리

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