Dual Momentum Heuristic
Antonacci-style single-asset proxy using T-bill and SPY filters rather than a full asset-allocation implementation.
This keeps the dual-momentum intuition visible, but it is not a canonical Antonacci switcher across offensive and defensive asset sleeves.
Understand what this strategy is actually betting on before you touch the parameter panel.
Read the model brief like a skeptic
Strategy families & selection
Validation & skepticism
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
| Parameter | Type | Default | Description |
|---|---|---|---|
| lookback | int | 126 | Momentum lookback period in trading days (~6 months) |
Source Code
Live source — fetched from engine/strategies/dual_momentum.py
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.
Related Momentum Strategies
Use nearby strategies to compare the same market hypothesis under different signal constructions.