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=Y1Y0,
(3)st=αYt+(1α)(st1+bt1),t>1,
(4)bt=β(stst1)+(1β)bt1,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 YRN NN Input data sequence of length N  
α αR 0α1    
β βR 0β1    

Output Parameters

Parameter Type Constraint Description Remarks
ˆY ˆYRN      

Tool Support

Single Steps using the Algorithm

References