Forecasting an ARIMA model

7 visualizaciones (últimos 30 días)
Mak
Mak el 14 de Abr. de 2020
Respondida: Aman el 8 de Oct. de 2024
Hi,
I am trying to forecast an ARIMA model. I have looked at the forecast function (https://se.mathworks.com/help/econ/arima.forecast.html), but have a question.
In my in-sample I have 108 observations and 72 in out-of-sample. This is my code:
[YF,YMSE] = forecast(EstMdl,72,'Y0',Crash(1:108));
The most common estimation windows are Expanding- and Rolling estimation window. Which estimation window are the "forecast" function using? Are the in-sample constant all the time, or is it dynamic?

Respuestas (1)

Aman
Aman el 8 de Oct. de 2024
Hi @Mak,
The estimation window, I guess, is not inheritant of the function; instead, it depends on how you implement the forecasting process. You can apply the expanding and rolling estimation window in the below manner:
  • In order to implement the expanding window, you continuously need to add new data to your training set as they become available, retraining or updating your model with the entire dataset up to the current time point.
  • In order to implement the rolling window, you need to maintain a fixed-size dataset by removing the oldest data point and adding the newest one, retraining or updating your model with this subset of data.
I hope this clears your doubt :)

Categorías

Más información sobre Conditional Mean Models en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by