Holt-Winters Triple Exponential Smoothing
Also known as: triple exponential smoothing, Winters' method, Holt-Winters seasonal method, Holt-Winters Üçlü Üstel Düzleştirme
Holt-Winters triple exponential smoothing is a forecasting model that extends Holt's double smoothing by adding a seasonal component, introduced by Peter Winters in 1960 building on Charles Holt's work. It tracks three evolving quantities — level, trend, and season — and combines them to forecast a continuous time series.
Read the full method
Sign in with a free account to read this section.
Method map
The neighbourhood of related methods — select a node to explore.
When to use it
Use Holt-Winters when you have a single continuous time series whose seasonal period is known (for example 12 for monthly data or 4 for quarterly data) and that shows a stable or steadily growing seasonal pattern, possibly alongside a trend. It needs enough history — at least about two full seasonal cycles (roughly 24 observations) — to estimate the seasonal factors. Choose the additive variant when the seasonal amplitude is constant and the multiplicative variant when the amplitude grows with the level.
Strengths & limitations
- Captures level, trend, and seasonality together in one transparent, low-effort model.
- Additive and multiplicative variants handle both constant and growing seasonal amplitudes.
- Recursive updates weight recent observations more heavily, so the model adapts as the series evolves while remaining cheap to compute.
- The seasonal period must be known and fixed in advance; it cannot discover or change the period on its own.
- It models only a single series with regular seasonality and offers no way to include explanatory variables.
- It needs at least about two complete seasonal cycles of history, so it is unreliable on short series.
Frequently asked
What is the difference between the additive and multiplicative variants?
In the additive variant the seasonal effect is a fixed amount added each cycle, which fits a seasonal swing of roughly constant size. In the multiplicative variant the seasonal effect is a percentage of the level, which fits a swing that grows as the series grows. Pick the variant that matches how the seasonal amplitude behaves over time.
How do I choose the smoothing parameters α, β, and γ?
They are usually estimated automatically by minimising one-step forecast error over the history rather than set by hand. Values near 1 make a component react quickly to recent data, while values near 0 make it change slowly and stay smooth.
How much data do I need?
You need the seasonal period to be known and at least about two complete seasonal cycles of observations — roughly 24 points for monthly data — so the seasonal factors can be estimated reliably.
When should I use ARIMA or a state-space model instead?
Holt-Winters assumes a single series with a fixed, known seasonal period and no explanatory inputs. If the seasonality is irregular, the dynamics are more complex, or you need to include other variables or formal uncertainty bands, a seasonal ARIMA or a state-space model is a better fit.
Sources
- Winters, P. R. (1960). Forecasting Sales by Exponentially Weighted Moving Averages. Management Science, 6(3), 324-342. DOI: 10.1287/mnsc.6.3.324 ↗
- Holt, C. C. (2004). Forecasting Seasonals and Trends by Exponentially Weighted Moving Averages. International Journal of Forecasting, 20(1), 5-10. DOI: 10.1016/j.ijforecast.2003.09.015 ↗
How to cite this page
ScholarGate. (2026, June 1). Holt-Winters Triple Exponential Smoothing. ScholarGate. https://scholargate.app/en/econometrics/holt-winters
Which method?
Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.
- ARIMAEconometrics↔ compare
- Exponential SmoothingEconometrics↔ compare
- State Space ModelEconometrics↔ compare
- Structural Time Series ModelEconometrics↔ compare