Concept

Exponential Smoothing Forecasts

Exponential Smoothing Forecasts, also known as Holt double exponential, Holt-Winters triple, are Statistics concepts. The Library holds 3 implementations, each one a working definition you can pull into Quant.

Top Exponential Smoothing Forecasts indicators

3 total

What are Exponential Smoothing Forecasts?

Exponential smoothing forecasts extrapolate a series from exponentially weighted averages of its own past, with recent data counting most. Simple exponential smoothing keeps a single state, the level: each new observation is blended in with a smoothing constant between 0 and 1, the same recursion that defines an EMA, and its forecast is a flat line at the current level. Charles Holt extended the method with a second smoothed component for trend, so the forecast extends as a sloped line (double exponential smoothing), and Peter Winters added a third for seasonality (the Holt-Winters method), letting forecasts carry a repeating seasonal shape.

These are extrapolations, not analyses: the model assumes the recent level, trend, and seasonal pattern persist, and it knows nothing about structure, news, or regime change. Responsiveness is a dial rather than a free improvement; higher smoothing constants track turns faster but pass through more noise, and forecast error grows quickly with horizon.

How traders use it

  • To project a dead-reckoning baseline a few bars ahead: price pulling away from the projected line flags acceleration, while repeated undershoot flags a stalling trend.
  • To smooth indicator inputs with a trend-aware average: Holt-style smoothing tracks a trending series with less lag than a plain average of the same length, because the trend component compensates.
  • To model repeating intraday or weekly patterns with the Holt-Winters seasonal form, the model-based cousin of seasonality tooling.

Related concepts · Regression & filtering

Concept family

Statistics

45 concepts mapped · 37 in the Library

Exponential Smoothing Forecasts FAQ

What is the difference between simple, double, and triple exponential smoothing?

They differ in how many components they track. Simple smoothing tracks level only, so forecasts are flat. Double (Holt) adds a smoothed trend, so forecasts are sloped lines. Triple (Holt-Winters) adds a seasonal component, so forecasts repeat a cycle. Mind the naming trap: DEMA and TEMA on charts are lag-reduction moving averages, not Holt's forecasting models, despite the similar names.

How far ahead can exponential smoothing forecast price?

Mechanically, any distance: the recursion will happily extend its line forever. Informationally, only as far as the recent level, trend, and seasonal pattern persist, which in markets is often not far. Uncertainty widens rapidly with horizon, and no smoothing model anticipates regime change, so multi-bar projections are best treated as a baseline to measure surprise against, not a target.

Build Exponential Smoothing Forecasts your way.

Quant writes, tests, and refines it with you — then it runs on LuxAlgo charting or ports to TradingView.