フィルターのクリア

how to ARIMAX-GARCH model ?

3 ビュー (過去 30 日間)
SOOHEE JANG
SOOHEE JANG 2019 年 4 月 18 日
回答済み: Karanjot 2024 年 1 月 6 日
how to ARIMAX-GARCH model?

回答 (1 件)

Karanjot
Karanjot 2024 年 1 月 6 日
Hi Soohee,
I understand that you want to know about the working of ARIMA-GARCH models.
The pre-sample data is specified in the ‘forecast’ function using the argument 'Y0'. ‘YMSE’ represents the forecast error variances of the predicted responses. It tells us how well the forecasted values match the actual values. For each time point in the forecast period, ‘YMSE’ provides the forecast error variances for all possible paths. It can be a column vector or a matrix, depending on the number of paths and the length of the forecast period.
On the other hand, ‘V’ provides information about the uncertainty or variability in the forecasted values. It represents the minimum mean squared error (MMSE) forecasts of the conditional variances of future model innovations. If the model has a conditional variance component, ‘V’ contains the conditional variance forecasts for each period. Otherwise, it is a matrix composed of the constant variance value specified in the model. Similar to ‘YMSE’, ‘V’ can be a column vector or a matrix, depending on the number of paths and the length of the forecast period.
[Y,YMSE] = forecast(Mdl,numPeriods,Y0,Name,Value)
In summary, the above function returns the numperiods-by-1 numeric vector of consecutive forecasted responses ‘Y’, a numperiods-by-1 numeric vector of conditional variances ‘V’ from a composite conditional mean and variance model and the corresponding numeric vector of forecast mean square errors (MSE) ‘YMSE’ of the fully specified, univariate ARIMA model Mdl. The presample response data in the numeric vector ‘Y0’ initializes the model to generate forecasts.
To learn more about this, please refer to the below example:
I hope this helps!

カテゴリ

Help Center および File ExchangeConditional Mean Models についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by