Watching the Compass Drift

October 1, 2026 · Part 9 of 20

Opening Scene

A compass, over a long voyage, can drift gradually out of true alignment, and a careful navigator doesn’t treat the oldest reading and the most recent reading as equally trustworthy. Recent readings get weighted more heavily; old ones fade in influence gradually rather than being discarded all at once. That adaptive, gradually-fading weighting is exactly the idea behind one of forecasting’s most enduringly useful methods.

In Plain English

Exponential smoothing forecasts a time series by weighting recent observations more heavily than older ones, with the weight decaying exponentially as observations recede further into the past. Extensions like Holt’s method (adding trend) and Holt-Winters (adding trend and seasonality) build directly on this core idea, collectively known as ETS (Error, Trend, Seasonal) models. Unlike ARIMA’s more rigid statistical structure, exponential smoothing adapts gradually and intuitively as a series’ behavior genuinely shifts over time.

The Old Way

Before formal exponential smoothing existed, people applied similar recency-weighted judgment informally:

  • A coach weighting a player’s recent performance more heavily than performance from a season ago, when judging current form.
  • A trader weighting recent price action more heavily than older history, when assessing current market sentiment.
  • A manager weighting an employee’s recent work more heavily than older performance reviews, when making a current judgment.

The instinct to weight recent information more heavily is ancient; exponential smoothing simply formalized exactly how much more heavily, and how that weighting should decay.

What’s Changing (and Why AI Is the Reason)

  1. ETS models now formalize the trend and seasonality components directly within the smoothing framework itself, extending well beyond simple single exponential smoothing to handle the full range of patterns covered in Articles 4 and 5.
  2. Automated ETS model selection, much like auto-ARIMA, now searches across smoothing configurations systematically, choosing the best fit without requiring extensive manual tuning.
  3. ETS models remain genuinely competitive with more complex machine learning methods on many real-world forecasting benchmarks, particularly for series with clear, stable trend and seasonal structure — a finding that has been repeatedly and rigorously confirmed in forecasting competitions.

The Metaphor, Fully Extended

The VoyageExponential Smoothing Concept
Weighting a recent compass reading more heavily than an old oneWeighting recent observations more heavily than older ones
A gradually fading trust in older readingsExponentially decaying weight on older observations
Adjusting for the ship’s own trend and known cyclical driftHolt’s trend and Holt-Winters’ seasonal extensions
A lightweight instrument that still performs remarkably wellETS remaining competitive with far more complex methods

For Beginners: What to Actually Do

  • Fit a simple exponential smoothing model and compare it directly against a naive forecast from Article 3, to see the improvement recency weighting provides.
  • Learn the difference between simple, Holt’s, and Holt-Winters exponential smoothing, and when each is appropriate.
  • Compare ETS and ARIMA forecasts on the same series to build intuition for when each tends to perform better.

For Practitioners and Leaders: The Deeper Layer

  • Treat ETS models as a genuinely strong, computationally cheap default, particularly at the scale covered in Article 19.
  • Don’t assume more complex machine learning methods automatically outperform ETS — benchmark rigorously, as forecasting competitions have repeatedly shown ETS holding its own.
  • Use ETS’s adaptivity as a real asset for series whose behavior genuinely shifts gradually over time, rather than staying perfectly stable.

Quick Recap

  • Exponential smoothing weights recent observations more heavily than older ones, with exponentially decaying influence.
  • Holt’s and Holt-Winters methods extend this core idea to handle trend and seasonality directly.
  • ETS models remain genuinely competitive with more complex methods on many real-world forecasting problems.
  • Automated ETS selection has made these methods considerably more accessible without heavy manual tuning.

Where This Fits in the Series

Article 9 covered an adaptive classical alternative to ARIMA. Article 10 moves to forecasting when multiple related sequences need to be modeled together.