We will focus on two methods to analyze and forecast a single time series: exponential smoothing and autoregressive integrated moving average (ARIMA) models. We will start by looking at exponential smoothing models.
Like moving average models, exponential smoothing models use weights for past observations. But unlike moving average models, the more recent the observation the more weight it is given relative to the later ones. There are three possible smoothing parameters to estimate: the overall smoothing parameter, a trend parameter, and smoothing parameter. If no trend or seasonality is present, then these parameters become null.
The smoothing parameter produces a forecast with the following equation:
Yt+1 = α(Yt) + (1 – α)Yt-1 + (1-α)2Yt-2 +…, where 0 < α ≤ 1
In this equation, Yt is the value at the time T, and alpha (α) is...