Strategy briefing

Understand what this strategy is actually betting on before you touch the parameter panel.

01
Start with the intuition
02
Use category and difficulty as context
03
Compare before optimizing
01
Map the strategy to a regime thesis
02
Read the math as a constraint system
03
Use parameters to test fragility, not creativity
Learning linkup

Read the model brief like a skeptic

Open Learning Hub

Implementation Scope

This keeps the dual-momentum intuition visible, but it is not a canonical Antonacci switcher across offensive and defensive asset sleeves.

The Intuition

Dual Momentum, popularised by Gary Antonacci (2014), combines two distinct momentum filters to create a more robust trend-following system. Absolute momentum asks: is this asset beating the risk-free rate (T-bills)? Relative momentum asks: is this asset beating a relevant benchmark (SPY)? Only when both filters are positive do you hold the asset long; if absolute momentum fails, you exit to safety.

The two-filter design solves a major problem with pure relative momentum (cross-sectional): even the "best" asset can be in a bear market. In 2008, U.S. equities dominated international equities on relative terms — but both were down 40–60%. Absolute momentum would have exited both before the crash, because even the "best" asset was below its T-bill return. This is why Dual Momentum avoided the 2008 crisis much more effectively than cross-sectional momentum alone.

Antonacci's backtests across equities, bonds, and real estate from 1974–2013 showed annualised returns of ~17% vs. ~10% for the S&P 500, with a maximum drawdown of ~18% vs. ~51% for buy-and-hold. This remarkable risk-adjusted performance made Dual Momentum one of the most cited systematic trading frameworks among retail systematic investors in the 2010s.

Key assumptions: (1) The 6-12 month lookback captures intermediate-term momentum that persists (Jegadeesh & Titman 1993). (2) T-bills serve as a meaningful risk-free rate proxy — in near-zero rate environments (2010–2021) this filter was frequently crossed, generating excessive trades. (3) SPY is an appropriate relative benchmark for the asset being traded. The strategy may need to adjust the benchmark to the asset class.

Known failure modes: momentum crashes (sudden sharp reversals in momentum leaders) and low-yield environments where the absolute momentum filter fires too frequently. Post-2008, the extremely low T-bill yield made the absolute momentum filter relatively easy to beat, reducing its defensive power. The strategy is most powerful when rates are meaningfully positive — its original design was calibrated to 1970s–1990s rate regimes.

The Math

Read this as a compact model summary: what the signal sees, what it ignores, and where fragility can creep in.

r_ticker(t)    = Close(t) / Close(t - h) - 1
r_tbill(t)     = T-bill yield proxy return over h days
r_spy(t)       = SPY return over h days

abs_mom = r_ticker > r_tbill   [beats risk-free rate?]
rel_mom = r_ticker > r_spy     [beats market?]

Signal(t) = +1  if abs_mom AND rel_mom
          = -1  if NOT abs_mom
          =  0  otherwise

Parameters

ParameterTypeDefaultDescription
lookback int 126 Momentum lookback period in trading days (~6 months)

Source Code

Live source — fetched from engine/strategies/dual_momentum.py

Loading source…

Further Reading

  • Antonacci, G. (2014). Dual Momentum Investing. McGraw-Hill.
  • Antonacci, G. (2012). Risk Premia Harvesting Through Dual Momentum. SSRN Working Paper.
  • Asness, C., Moskowitz, T. & Pedersen, L. (2013). Value and Momentum Everywhere. Journal of Finance, 68(3), 929–985.
Run This Strategy →

Related Momentum Strategies

Use nearby strategies to compare the same market hypothesis under different signal constructions.