Solved – Prediction in VAR models

forecastingpredictionvector-autoregression

I am currently developing a Vector Autoregressive Model, and I have the model fully specified as follows:

$$X_t=AX_{t-1} +Z_t$$

where $X$ and $Z$ are $n \times 1$ column vectors, and $A$ is an $n\times n$ matrix.

In one dimension, I know how to use a best linear predictor by looking at the autocovariance matrix. However, it is not so clear how to do this in multiple dimensions, since there is not only an autocovariance matrix for each dimension, but also cross terms in the serial covariances. I have a hunch about how this could be done, but would really appreciate it if anyone had any tips or a reference to look at regarding best linear predictors.

On a closely related note, I did find this paper: http://faculty.washington.edu/ezivot/econ584/notes/varModels.pdf

which explains how to forecast using VAR models (see section 11.3). However, this forecast simply uses an iterative procedure in order to get the prediction. So another question is: is this approach equivalent to the best linear predictor method?

Best Answer

I quote from the link you have provided:

The best linear predictor in terms of minimum mean squared error (MSE), of $\mathbf{Y}_{t+1}$ or 1-step forecast based on information available at time $T$ is

$$\mathbf{Y}_{T+1|T}=c+\mathbf{\Pi}_1\mathbf{Y}_T+...+\mathbf{\Pi}_p\mathbf{Y}_{T-p+1}$$

This is for VAR(p) model. You have VAR(1). Further quote

Forecasts for longer horizons $h$ ($h$-step forecasts) may be obtained using chain-rule of forecasting as

$$\mathbf{Y}_{T+h|T}=c+\mathbf{\Pi}_1\mathbf{Y}_{T+h-1|T}+...+\mathbf{\Pi}_p\mathbf{Y}_{T+h-p|T}$$

Such type of forecasting is the commonly accepted way of forecasting VAR models. It is implemented for example in vars R package. If you compare it to the univariate case you will see that for AR(p) model the forecasts are the same. Furthermore thery are optimal in a sense that minimise the MSE, you can consult Lütkepohl (New introduction to multiple time series analysis, 2005) for more details.

Related Question