Time-Series Momentum (TSMOM)

Economic framing

Time-series momentum forecasts an asset’s own future return sign from its past excess return. A canonical monthly rule takes the sign of trailing 12-month return, skips the most recent observation when microstructure or reversal is a concern, and scales exposure inversely with ex ante volatility. It differs from a cross-sectional rank because every market can be long, short, or flat.

The key modeling distinction is between a descriptive relationship and an investable return. A signal can be economically coherent, statistically significant, and still fail after its publication lag, financing, roll conventions, spreads, and capacity limits. Define returns in the investor’s base currency and make the signal available only when its inputs could genuinely have been observed.

Signal construction

Use continuous, back-adjusted futures carefully: back adjustment is appropriate for return histories but not for executable price levels. Compute returns from actual roll schedules, estimate volatility only from information available at rebalance, and lag signals enough to prevent look-ahead. A multi-horizon ensemble reduces sensitivity to one arbitrary lookback.

ComponentRobust implementationCommon failure
UniverseTradable instruments with historySurvivorship and stale quotes
SignalLagged, normalized, winsorizedLooking through revisions
SizingVolatility and liquidity awareEqual notional concentration
ExecutionDated contracts and conservative costsMid-price backtest
import numpy as np
import pandas as pd

def bounded_position(signal: pd.Series, vol: pd.Series, target=.10):
    z = signal.clip(-2, 2) / 2
    raw = z * target / vol.clip(lower=.03)
    return raw.clip(-.20, .20)

The code is deliberately only a position transform. Production research needs a separate data-validation layer, an instrument master, expiry-aware pricing, and a reproducible version of every input.

Portfolio and risk controls

TSMOM is exposed to whipsaw after sharp reversals and can become correlated across markets during a systemic trend break. Put a floor and cap on volatility scaling, use liquidity-aware rebalancing, and stress gap risk. Managed futures and CTA strategies gives the portfolio context, while trend-following momentum trading covers signal design.

RiskDiagnosticControl
Model riskSubperiod and parameter dispersionEnsemble and shrinkage
LiquiditySpread and turnover under stressCapacity and participation caps
Tail lossScenario expected shortfallGross and factor limits
OperationalMissing marks or contract changesExceptions and reconciliation

Research protocol

Use walk-forward evaluation rather than choosing parameters on the full sample. Preserve delisted instruments where relevant, use the actual rebalance calendar, and examine signal decay after a realistic delay. Report gross and net Sharpe, drawdown, expected shortfall, turnover, leverage, and exposures—not only a cumulative chart. A useful falsification test is to perturb lookbacks, rebalance dates, and reasonable cost assumptions; a fragile result should not receive the same capital as an effect that survives those variations.

Separate alpha from risk transformation. Volatility targeting can improve comparability, yet it may mechanically add leverage after quiet periods. Attribution should explain whether returns came from directional beta, carry, convexity, rebalancing, or the intended signal. Governance requires pre-specified limits and an escalation path when data or liquidity assumptions fail.

Key takeaways

  • Treat the signal as a conditional forecast, not a permanent economic law.
  • Use lagged, executable data and include financing, rolls, and conservative transaction costs.
  • Size from risk and liquidity, then control common factors and stressed correlation.
  • Favor designs that remain credible after parameter, cost, and regime perturbations.

Measurement details

A practical model records the observation timestamp, the decision timestamp, and the execution timestamp separately. This prevents accidental use of a fixing, macro release, or option quote that was unavailable when the trade would have been placed. Transform raw inputs into robust percentiles or z-scores within a stable universe, and freeze the cross-sectional membership at each rebalance.

TestQuestion answeredPassing evidence
AvailabilityWas the input known?Timestamped source and lag
StabilityIs one parameter decisive?Similar results in a parameter neighborhood
CostsDoes the edge survive trading?Net return at stressed spreads
CapacityCan intended size trade?Volume and market-impact budget

Do not infer causality from a favorable in-sample regression. The relationship may proxy for a broad risk premium, and its payoff can vanish when the portfolio is most crowded. Use a holdout period and a paper-trading reconciliation before production capital.

#time-series momentum #TSMOM #trend following #futures #volatility targeting