Time-Varying Parameter ARIMA Model (TVP-ARIMA)
Time-Varying Parameter Autoregressive Integrated Moving Average Model · Also known as: TVP-ARIMA, time-varying ARIMA, adaptive ARIMA, state-space ARIMA
The time-varying parameter ARIMA model extends the classical ARIMA framework by allowing its autoregressive and moving-average coefficients to evolve over time rather than remaining fixed. Cast in state-space form and estimated via the Kalman filter, it is designed for economic and financial time series whose dynamic structure shifts in response to structural breaks, policy changes, or regime transitions.
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 TVP-ARIMA when you have a time series long enough to support stable Kalman filter initialisation (typically 50+ observations) and theoretical or empirical reasons to believe the underlying dynamics shift over time — for example macroeconomic forecasting across business cycles, inflation modelling spanning monetary-regime changes, or financial volatility series with structural breaks. It is well suited when a rolling-window ARIMA changes substantially across windows, signalling genuine parameter instability. Do not use it when the series is short (parameter drift and observation noise are then unidentifiable), when there is no economic motivation for time variation (adding TVP unnecessarily increases complexity and estimation uncertainty), or when the primary goal is parsimony rather than flexibility.
Strengths & limitations
- Captures gradual or abrupt shifts in ARIMA dynamics without requiring a priori knowledge of break dates.
- Nested within the state-space framework, enabling efficient Kalman-filter estimation and exact likelihood evaluation.
- Produces interpretable time paths for each coefficient, making structural change visible and narratable.
- Accommodates both smooth drift (random-walk state) and more persistent variation (AR state) through choice of transition equation.
- Easily extended to multivariate settings or to include time-varying exogenous regressors.
- Requires substantially more observations than fixed-parameter ARIMA to reliably separate parameter drift from observation noise.
- State-space hyperparameters (Q, R) are identified only weakly in short samples, making likelihood surfaces flat and estimates sensitive to starting values.
- Computational cost is higher than OLS-based ARIMA, though still tractable for moderate series length.
- Smoothed coefficient paths are in-sample constructs; out-of-sample coefficient forecasts require an additional model for how β_t will evolve.
Frequently asked
How is TVP-ARIMA different from rolling-window ARIMA?
Rolling-window ARIMA re-estimates fixed parameters over a moving data window, discarding older observations abruptly. TVP-ARIMA retains all observations but lets coefficients drift smoothly (or rapidly, depending on Q), yielding a principled probabilistic estimate of how dynamics change rather than a mechanical window choice.
How do I choose the ARIMA order before adding time-varying parameters?
Start by fitting a standard ARIMA on the full series or a stable sub-period, using AIC/BIC and ACF/PACF diagnostics. Fix (p, d, q) at the best-fitting order, then introduce state-space time variation for the AR and MA coefficients.
What software can estimate TVP-ARIMA?
R packages such as KFAS, dlm, and bsts implement state-space TVP models. Python users can use statsmodels (UnobservedComponents) or pykalman. Bayesian estimation is available via Stan or JAGS with appropriate state-space priors.
Can the TVP-ARIMA handle seasonality?
Yes. A seasonal ARIMA (SARIMA) base can be combined with time-varying parameters by adding seasonal lags to the state-space measurement equation and allowing their coefficients to drift in the transition equation.
How do I test whether time-varying parameters are actually needed?
Compare the AIC/BIC of the TVP-ARIMA against the fixed-parameter ARIMA. Structural-break tests (Chow, CUSUM, or Bai-Perron) on the fixed-model residuals also provide diagnostic evidence for parameter instability.
Sources
- Harvey, A. C. (1989). Forecasting, Structural Time Series Models and the Kalman Filter. Cambridge University Press. ISBN: 9780521405737
- Cooley, T. F., & Prescott, E. C. (1976). Estimation in the Presence of Stochastic Parameter Variation. Econometrica, 44(1), 167–184. DOI: 10.2307/1911389 ↗
How to cite this page
ScholarGate. (2026, June 3). Time-Varying Parameter Autoregressive Integrated Moving Average Model. ScholarGate. https://scholargate.app/en/econometrics/time-varying-parameter-arima-model
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.
- ARIMA modelEconometrics↔ compare
- Kalman FilterBayesian↔ compare
- State Space ModelEconometrics↔ compare