Threshold and Smooth Transition Models
Time series models that let the underlying dynamics themselves switch depending on where a variable sits relative to a threshold — abruptly (TAR) or gradually (STAR) — capturing behavior that changes character across regimes rather than staying fixed.
Prerequisites: Particle Filters and Sequential Monte Carlo
A currency pair might drift almost like a random walk near its long-run fair value, but snap back forcefully once it strays too far — central bank intervention, or simple arbitrage pressure, kicks in only past a certain distance from equilibrium. A single linear model (one fixed set of coefficients everywhere) can't capture this: it either fits the calm, near-equilibrium behavior and misses the snap-back, or averages the two regimes together and describes neither well. Threshold and smooth transition models solve this by letting the model's coefficients themselves change depending on where the series currently sits — either abruptly, once a threshold is crossed (TAR), or gradually, phasing in over a transition zone (STAR).
An analogy: a rubber band with slack
Picture a rubber band tied loosely around a peg, with some slack. Move an object a little within the slack, and there's no pull back — it just drifts freely, like a random walk. But once the object moves far enough that the band pulls taut, a restoring force kicks in and pulls it back. A threshold model (TAR) is like a stiff rubber band that has zero tension right up to the point of going taut, then applies full tension instantly. A smooth transition model (STAR) is like a band made of a slightly stretchy material — the pull increases gradually as the object gets further out, rather than switching on all at once.
The mechanics, one symbol at a time
A two-regime threshold autoregressive (TAR) model switches abruptly between two AR processes depending on whether a "transition variable" (often a lag of the series itself) crosses a threshold :
In plain English: the series follows one set of dynamics (say, near-random-walk behavior, close to 1) when it's within the threshold, and a different set (say, strongly mean-reverting, well below 1) once it crosses the threshold — a hard, discontinuous switch. A smooth transition (STAR) model replaces the abrupt switch with a continuous blend:
where is a logistic function sliding smoothly from 0 to 1 as crosses , and controls how sharp that transition is — a large makes behave almost like the TAR model's hard switch, while a small spreads the transition out over a wide zone, blending the two regimes' coefficients gradually rather than flipping between them.
Worked example 1: a TAR mean-reversion signal
Suppose a currency deviation series (percent from fair value) follows (near unit root, essentially drifting) when , and (strong mean reversion) when . If today's deviation is (inside the threshold), the forecast for tomorrow is — barely any pull back, essentially persisting. If instead today's deviation is (outside the threshold), the forecast is — a much sharper pull back toward zero, a 40% reduction in one step, reflecting the regime switch into active mean-reversion dynamics.
Worked example 2: comparing TAR and STAR at the boundary
Using the same threshold but a STAR model with , evaluate at (just inside) and (just outside): , and . The blended coefficient at is , and at it's — the effective mean-reversion strength shifts gradually from about 0.84 to 0.74 across this narrow zone, rather than jumping abruptly from 0.98 to 0.60 as the TAR model would at exactly .
What this means in practice
Threshold and smooth transition models are the standard tool for capturing "band-limited" mean reversion — FX pairs kept within intervention bands, spreads that only correct once transaction costs are cleared, or entry/exit zones in pairs trading (see Entry and Exit Bands for Spreads) where reversion strength genuinely depends on how far a series has strayed, not just whether it has strayed at all.
Threshold (TAR) and smooth transition (STAR) models let a series' dynamics genuinely change depending on where it currently sits relative to a threshold — abruptly in TAR, gradually in STAR — capturing regime-dependent behavior like mean reversion that only activates once a deviation is large enough, which a single linear model can't represent.
Estimating a threshold or transition point (the value of ) from the same data used to test whether the regime-switching effect is real invites overfitting — a threshold that happens to split the historical sample favorably can look statistically significant purely by chance, especially with a small sample. Always validate a fitted threshold model out of sample, and be skeptical of thresholds chosen by searching over many candidate values without correcting for that search.
Related concepts
Practice in interviews
Further reading
- Tong, Non-Linear Time Series: A Dynamical System Approach, ch. 3
- Teräsvirta, Modelling Economic Relationships with Smooth Transition Regressions