Exponential Smoothing

Average Method

$$F_{t+1} = \frac{1}{t}\sum_{i=1}^{t}Y_{i}$$

Average Method - Moving Average

$$F_{t+1} = \frac{1}{k}\sum_{i=t-k+1}^{t}Y_{i}$$$$F_{t+2} = \frac{1}{k}\sum_{i=t-k+2}^{t+1}Y_{i}$$$$F_{t+2} = F_{t+1} + \frac{1}{k}(Y_{t+1} - Y_{t-k+1})$$

Single Exponential Smoothing (SES)

Holt’s trend-corrected double exponential smoothing (DES)

Triple Exponential Smoothing (TES)

Reference