Friday, June 21, 2013

Box-Jenkins Methodology

The Box-Jenkins methodology is a five-step process for identifying, selecting, and assessing conditional mean models (for discrete, univariate time series data) .
  1. Establish the stationarity of your time series .If your series is not stationary, successively difference your series to attain stationarity .The sample autocorrelation function (ACF) and partial autocorrelation function (PACF) of a stationary series decay exponentially (or cut off completely after a few lags) .
  2. Identify a (stationary) conditional mean model for your data .The sample ACF and PACF functions can help with this selection .For an autoregressive (AR) process, the sample ACF decays gradually, but the sample PACF cuts off after a few lags .Conversely, for a moving average (MA) process, the sample ACF cuts off after a few lags, but the sample PACF decays gradually .If both the ACF and PACF decay gradually, consider an ARMA model .
  3. Specify the model, and estimate the model parameters .When fitting nonstationary models in Econometrics Toolbox, it is not necessary to manually difference your data and fit a stationary model.Instead, use your data on the original scale, and create an arima model object with the desired degree of nonseasonal and seasonal differencing .Fitting an ARIMA model directly is advantageous for forecasting: forecasts are returned on the original scale (not differenced) .
  4. Conduct goodness-of-fit checks to ensure the model describes your data adequately .Residuals should be uncorrelated, homoscedastic, and normally distributed with constant mean and variance .If the residuals are not normally distributed, you can change your innovation distribution to a Student's t .
  5. After choosing a model—and checking its fit and forecasting ability—you can use the model to forecast or generate Monte Carlo simulations over a future time horizon .

No comments:

Post a Comment