Single Exponential Smoothing

Predictor uses the following formulas for single exponential smoothing:

(Initialization) F1 = 0, F2 = Y1

(Fit) Ft = α * Yt-1 + (1–α) * Ft-1

(Forecast for period m) Ft+m = Ft

Note:

First fit is available from period 2.