Exponential Smoothing (Holt-Winters)

Exponential smoothing is one of the oldest and most durable approaches to forecasting a time series. The core idea is simple: to predict the next value, take a weighted average of past values in which the most recent observations count for more and older ones fade away exponentially. A single smoothing parameter controls how fast the memory decays. This gives a forecast that tracks the latest level of the series without overreacting to noise.

Plain exponential smoothing assumes a roughly flat level. Peter Winters extended it in his 1960 Management Science paper “Forecasting Sales by Exponentially Weighted Moving Averages” to also track a trend (a steady upward or downward drift) and seasonality (repeating yearly or weekly patterns), building on earlier work by Charles Holt. The combined method is widely known as Holt-Winters. It keeps separate smoothed estimates of level, trend, and seasonal factors and updates each as new data arrives.

Despite their age and simplicity, exponential smoothing methods remain highly competitive. Variants of them have repeatedly placed near the top of the M-competitions, the main forecasting benchmarks, often beating far more complex models on the kind of seasonal business series they were designed for.

Why business readers should care: for routine demand and sales forecasting, a well-tuned Holt-Winters model is cheap to run, easy to explain, and frequently as accurate as anything fancier.

Sources

Last verified June 7, 2026