Holt-Winters Double Exponential Smoothing¶
Local Algorithm - One-Dimensional Algorithm
Holt-Winters Double Exponential Smoothing algorithm is an improved version of the Single Exponential Smoothing algorithm. It works well when there is a a trend in the input data. The basic formulas are stated as follows:
(1)s1=Y0,
,
(2)b1=Y1−Y0,
(3)st=αYt+(1−α)(st−1+bt−1),t>1,
(4)bt=β(st−st−1)+(1−β)bt−1,t>1,
(5)ˆYt+m=st+mbt,
where Y is the data sequence beginning at time t=0 and ˆYt+m is the smoothed forecast for time t+m.
Input Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
Y | Y∈RN | N∈N | Input data sequence of length N | |
α | α∈R | 0≤α≤1 | ||
β | β∈R | 0≤β≤1 |
Output Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
ˆY | ˆY∈RN |
Tool Support
Single Steps using the Algorithm
References
NIST/SEMATECH e-Handbook of Statistical Methods