how to ARIMAX-GARCH model ?
5 views (last 30 days)
Show older comments
how to ARIMAX-GARCH model?
0 Comments
Answers (1)
Karanjot
on 6 Jan 2024
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!
0 Comments
See Also
Categories
Find more on Conditional Mean Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!