Main Content

Monte Carlo Simulation of Regression Models with ARIMA Errors

What Is Monte Carlo Simulation?

Monte Carlo simulation is the process of generating independent, random draws from a specified probabilistic model. When simulating time series models, one draw (or realization) is an entire sample path of specified length N, y1, y2,...,yN. When you generate a large number of draws, say M, you generate M sample paths, each of length N.

Note

Some extensions of Monte Carlo simulation rely on generating dependent random draws, such as Markov Chain Monte Carlo (MCMC). The simulate function in Econometrics Toolbox™ generates independent realizations.

Some applications of Monte Carlo simulation are:

  • Demonstrating theoretical results

  • Forecasting future events

  • Estimating the probability of future events

Generate Monte Carlo Sample Paths

The time series portion of the model specifies the dynamic evolution of the unconditional disturbance process over time through a conditional mean structure. To perform Monte Carlo simulation of regression models with ARIMA errors:

  1. Specify presample innovations or unconditional disturbances (or use default presample data).

  2. Generate an uncorrelated innovation series from a probability distribution.

  3. Filter the innovations through the ARIMA error model to obtain the simulated unconditional disturbances.

  4. Use the regression model, predictor data, and simulated unconditional disturbances to obtain the responses.

For example, consider simulating N responses from the regression model with ARMA(2,1) errors:

yt=Xtβ+utut=ϕ1ut1+ϕ2ut2+εt+θ1εt1,

where εt is Gaussian with mean 0 and variance σ2. Given presample unconditional disturbances (u0 and u–1) and innovations (ε0), following these steps:

  1. Generate N independent innovations from the Gaussian distribution:

    {ε^1,ε^2,...,ε^N}.

  2. Filter the innovations recursively to obtain the unconditional disturbances:

    1. u^1=ϕ1u0+ϕ2u1+ε^1+ε0

    2. u^2=ϕ1u^1+ϕ2u0+ε^2+ε^1

    3. u^3=ϕ1u^2+ϕ2u^1+ε^3+ε^2

    4. ...

    5. u^N=ϕ1u^N1+ϕ2u^N2+ε^N+ε^N1.

  3. Obtain simulated responses using the unconditional disturbances, regression model, and the predictors:

    y^t=Xtβ+u^t.

Econometrics Toolbox automates this process with simulate. Pass in a fully specified regression model with ARIMA errors (regARIMA), the number of responses to simulate, and, optionally, the number of paths and presample data, and simulate simulates the responses.

Note

Econometrics Toolbox treats the predictors in the regression model as fixed, nonstochastic series. Therefore, in order to generate Monte Carlo sample paths of the response, you need to know the values of the predictors.

Monte Carlo Error

Using many simulated paths, you can estimate various features of the model. However, Monte Carlo estimation is based on a finite number of simulations. Therefore, Monte Carlo estimates are subject to some amount of error. You can reduce the amount of Monte Carlo error in your simulation study by increasing the number of sample paths, M, that you generate from your model.

For example, to estimate the probability of a future event:

  1. Generate M sample paths from your model.

  2. Estimate the probability of the future event using the sample proportion of the event occurrence across M simulations,

    p^=#timeseventoccursinMdrawsM.

  3. Calculate the Monte Carlo standard error for the estimate,

    se=p^(1p^)M.

You can reduce the Monte Carlo error of the probability estimate by increasing the number of realizations. If you know the desired precision of your estimate, you can solve for the number of realizations needed to achieve that level of precision.

See Also

|

Related Examples

More About