Page 1 of 1

Re-estimating equation after each step of dynamic forecast

Posted: Fri May 14, 2010 12:58 pm
by miksterz
Hello,

I need to do the following:

Generate out of sample forecasts for a basic AR(1) model. This is easy to do BUT:

After each step, I need to re-estimate the equation treating the previous forecasted value as an actual observation, then generate the next step ahead forecast and so on..

Using dynamic step ahead forecasts does treat the previous forecasts as actual observations but I understand it does not re-estimate the model at any point.

I would really appreciate if someone could get back to me asap.

Thanks in advance

Re: Re-estimating equation after each step of dynamic forecast

Posted: Fri May 14, 2010 1:04 pm
by EViews Gareth
Re-estimating the equation using the forecasted values will not do anything. Adding more rows of forecasted values does not change the coefficient estimates.

Re: Re-estimating equation after each step of dynamic forecast

Posted: Fri May 14, 2010 1:09 pm
by miksterz
really? could you please briefly explain why? it seems to me that adding new data to a series would change its coefficient in the equation..

Re: Re-estimating equation after each step of dynamic forecast

Posted: Fri May 14, 2010 1:12 pm
by miksterz
Re-estimating the equation using the forecasted values will not do anything. Adding more rows of forecasted values does not change the coefficient estimates.

also, do you only mean this is true for an AR1 process? because I plan on using more sophisticated equations too but just asked about AR1 for simplicity

Re: Re-estimating equation after each step of dynamic forecast

Posted: Fri May 14, 2010 1:13 pm
by EViews Gareth
Adding new data will change the coefficients. However you're not really adding new data, you're adding forecasted values in, and pretending that it is data.

Without getting to far into the realms of econometric advice, least squares estimation works by trying to minimise the sum of squares of the residuals (where residuals are actual values minus forecasted values) in the equation. When you add a new forecasted value as an "actual" value, the residual for that observation is zero. Thus, the residual is already completely minimised for that observation, so the estimation process will not change at all.

This is true of all least squares estimation, not just a simple AR.

Re: Re-estimating equation after each step of dynamic forecast

Posted: Fri May 14, 2010 1:18 pm
by miksterz
thanks a lot. that makes complete sense