Linear Time Series

What is a time series?

Time series are used to model processes that are discrete. These processes can be genuinely discrete or they can be continuous, but we observe them periodically. 

For instance, we can use time series to model corporation cuμlative income. The income of a corporation is continuous, but we may only observe them quarterly in their quarter reports.

The model is solved when we can describe or forecast the distribution of values.

Examples of Linear Time Series

MA(1) moving average model

rt = μ + σ*zt + ɸ*zt−1, where zt ~ iid(0, σ2)

A MA(1) model depends on both the current and previous zt. The video below elaborates what a MA(1) process is.

GARCH model

rt = μ + σtzt

For a GARCH model, the distribution itself is time−varying as σ is time-dependent.

AR(p) autoregressive model of order p

Rt = c0 + c1Rt−1 + … + cpRt−p + σ*zt, where zt ~ IID(0, 1)

Here, the output variable Rt depends linearly on its own previous values Rt-p and on a stochastic term zt.

ARMA(p, q)

Rt = c0 + c1Rt−1 + … + cpRt−p + σ*zt + ɸ*zt−1 + … + ɸq*zt−q

This model combines the AR and MA models.

Similarities between the 4 Models

  • They all have a linear structure
  • Past observations determine likelihood of future outcomes
  • Their coefficients are to be determined

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *