Death Cross vs. Golden Cross: Which Is a Better Entry Signal?
Compare the death cross and golden cross as entry signals. We analyze historical S&P 500 data to determine which crossover produces better entries for trend-following traders.
- Death Cross vs. Golden Cross: A Quick Recap
- The Debate: Which Crossover Produces Better Entries?
- Historical Data: Buying at the Death Cross on the S&P 500
- Contrarian Logic: Buying During Fear vs. Buying During Confirmation
- Comparing Forward Returns: Death Cross vs. Golden Cross Entries
- ThinkScript Code: Death Cross Scanner and Alert
- When the Death Cross Entry Beats the Golden Cross Entry
- When the Golden Cross Entry Is Superior
- Combining Both Signals Into a Strategy
- Tools for Cross Signal Analysis
Death Cross vs. Golden Cross: A Quick Recap
The death cross and golden cross are two of the most widely discussed technical signals in trading. Both rely on the same two moving averages, the 50-day simple moving average (SMA) and the 200-day SMA, but they signal opposite momentum shifts.
A golden cross forms when the 50-day SMA crosses above the 200-day SMA. This is traditionally read as a bullish trend confirmation. A death cross forms when the 50-day SMA crosses below the 200-day SMA, signaling bearish momentum.
Most traders treat the golden cross as a buy signal and the death cross as a sell signal (or short signal). But what if that conventional wisdom is leaving money on the table? What if buying at the death cross, when fear is highest, actually produces competitive or even superior entries under certain conditions?
That is exactly the question this article answers with historical data.
The Debate: Which Crossover Produces Better Entries?
The standard playbook is simple. Buy the golden cross. Sell the death cross. This approach works because it aligns with trend-following logic. You enter when momentum confirms an uptrend and exit when momentum confirms a downtrend.
But trend-following has a well-known weakness: it is late. By the time the 50-day SMA crosses the 200-day SMA in either direction, a significant portion of the move has already occurred. The golden cross confirms what price action has already shown. The death cross confirms damage that has already been done.
This lag creates a paradox. If the death cross fires after a large drawdown, the worst of the selling may already be over. Buying at peak pessimism, right when the death cross appears, could mean you are entering near a local bottom rather than the start of a sustained decline.
Conversely, the golden cross fires after a large rally. You may be buying into strength, but you are also buying after the easiest gains have already been captured. Your entry price is higher and your risk-to-reward ratio is compressed.
The question is not which signal is "better" in the abstract. The question is which signal produces better forward returns when used as an entry point on the S&P 500.
Historical Data: Buying at the Death Cross on the S&P 500
Since 1950, the S&P 500 has produced approximately 35 death cross signals. That gives us a meaningful sample size to evaluate forward returns. The results challenge the notion that the death cross is purely a danger signal.
Here is what the data shows for average forward returns after a death cross signal on the S&P 500:
| Time After Death Cross | Avg Forward Return | % Positive |
|---|---|---|
| 20 Days (1 Month) | -0.5% | 48% |
| 40 Days | +0.9% | 52% |
| 60 Days (3 Months) | +2.3% | 56% |
| 80 Days | +2.6% | 58% |
| 6 Months | +3.8% | 60% |
| 12 Months | +6.3% | 72% |
The most important finding is that 54% of the time, the market had already hit its lowest point before the death cross even appeared. The lagging nature of the signal means you are often buying after the worst of the selloff has already occurred.
One of the most dramatic examples occurred in March 2020. The S&P 500 triggered a death cross during the COVID-19 panic. Traders who used the death cross as a buy signal and entered near the crossover date captured a 50%+ gain over the following 12 months.
Contrarian Logic: Buying During Fear vs. Buying During Confirmation
The death cross entry is fundamentally a contrarian approach. You are buying when sentiment is at its worst, when headlines are bearish, and when the technical picture looks broken. The golden cross entry is a confirmation approach. You are buying when the trend has already shifted bullish and sentiment is improving.
Both approaches have merit, but they carry different risk profiles.
Death Cross Entry: The Contrarian Case
- Lower entry price: You are buying after a significant drawdown, meaning your cost basis is lower.
- Mean reversion tailwind: Markets tend to revert to the mean. Buying after extreme weakness increases the probability of a snapback rally.
- Higher potential reward: If the market recovers, your gains from a lower entry are larger than entering at a golden cross price.
- Higher short-term risk: The first 20-30 days after a death cross show negative average returns. You must tolerate drawdowns.
Golden Cross Entry: The Trend-Following Case
- Momentum confirmation: You are entering after the trend has already shifted bullish. The probability of continued upside is historically strong.
- Lower drawdown risk: Average maximum drawdown after a golden cross is -4.3%, compared to -7.3% after a death cross.
- Smoother equity curve: Trend-following entries tend to produce more consistent returns with less volatility.
- Higher entry price: You pay a premium for confirmation. The easy gains from the bottom have already occurred.
Comparing Forward Returns: Death Cross vs. Golden Cross Entries
When we compare forward returns side by side, the golden cross entry outperforms in most time periods. However, the death cross entry closes the gap significantly at longer horizons, especially the 12-month mark.
| Period | Death Cross Entry | Golden Cross Entry | Winner |
|---|---|---|---|
| 1 Month | -0.5% | +1.4% | Golden Cross |
| 3 Months | +2.3% | +3.4% | Golden Cross |
| 6 Months | +3.8% | +6.4% | Golden Cross |
| 12 Months | +6.3% | +10.0% | Golden Cross |
On a pure average-return basis, the golden cross wins every time period. But averages can be misleading. The death cross data is heavily skewed by a few catastrophic bear markets (2001, 2008) that drag the average down. When you remove the worst 10% of outcomes, the death cross entry becomes much more competitive.
Risk-Adjusted Comparison
The picture shifts when we look at risk-adjusted metrics. The golden cross entry has a lower maximum drawdown (-4.3% vs. -7.3%), which means your risk per unit of return is lower. However, the death cross entry offers a better reward-to-risk ratio if you set a fixed stop-loss, because your entry price is lower relative to the eventual recovery target.
Average maximum drawdown after a golden cross is roughly 40% less severe than after a death cross. This difference matters for traders who prioritize capital preservation and portfolio stability over raw return potential.
ThinkScript Code: Death Cross Scanner and Alert
If you want to identify death cross setups in real time on thinkorswim, you can use a custom ThinkScript scanner and chart study. The code below detects when the 50-day SMA crosses below the 200-day SMA and triggers a visual label plus an alert.
# Death Cross Scanner & Alert
# Detects 50/200 SMA Death Cross
declare lower;
input fastLength = 50;
input slowLength = 200;
input averageType = AverageType.SIMPLE;
def fastMA = MovingAverage(averageType, close, fastLength);
def slowMA = MovingAverage(averageType, close, slowLength);
# Death Cross: Fast MA crosses below Slow MA
def deathCross = fastMA crosses below slowMA;
# Golden Cross: Fast MA crosses above Slow MA
def goldenCross = fastMA crosses above slowMA;
plot DeathSignal = deathCross;
plot GoldenSignal = goldenCross;
DeathSignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
DeathSignal.SetDefaultColor(Color.RED);
DeathSignal.SetLineWeight(3);
GoldenSignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
GoldenSignal.SetDefaultColor(Color.GREEN);
GoldenSignal.SetLineWeight(3);
# Alerts
Alert(deathCross, "DEATH CROSS detected", Alert.BAR, Sound.Bell);
Alert(goldenCross, "GOLDEN CROSS detected", Alert.BAR, Sound.Chimes);To use this as a scanner in thinkorswim, go to Scan > Stock Hacker, add a custom filter, and paste this simplified scan version:
# Death Cross Scan Filter
# Use in Stock Hacker > Custom Filter
def fastMA = SimpleMovingAvg(close, 50);
def slowMA = SimpleMovingAvg(close, 200);
plot scan = fastMA crosses below slowMA within 3 bars;For a more advanced crossover analysis tool with built-in backtesting, try our Moving Average Crossover Backtester. It lets you test any combination of fast and slow periods across multiple tickers without writing code.
When the Death Cross Entry Beats the Golden Cross Entry
The death cross entry outperforms the golden cross entry in specific market environments. Understanding these conditions helps you determine when the contrarian approach has the highest probability of success.
1. V-Shaped Recovery Markets
When the market sells off sharply and then recovers quickly (a V-shaped pattern), the death cross entry captures the entire recovery move. The golden cross entry, by contrast, misses the initial bounce because the 50-day SMA needs weeks of rising prices to cross back above the 200-day SMA.
The March 2020 COVID crash is the textbook example. The death cross fired in late March 2020. By the time the golden cross fired months later, the S&P 500 had already recovered most of its losses. Death cross buyers captured significantly more upside.
2. Shallow Bear Markets and Corrections
In corrections that do not evolve into full bear markets (declines of 10-20%), the death cross often fires near the bottom. The market bounces before a sustained downtrend can develop. These are the most profitable scenarios for death cross entries because the signal fires right at the capitulation point.
3. Late-Cycle Pullbacks in Secular Bull Markets
During long-term bull markets, death crosses tend to be false alarms. The secular uptrend reasserts itself, and buying the dip at the death cross produces strong returns. Since 1950, most death crosses have occurred within secular bull markets, which explains the 72% positive rate at the 12-month mark.
When the Golden Cross Entry Is Superior
The golden cross entry outperforms in environments where the initial trend signal is accurate and the momentum persists. These are the conditions where patience pays off and buying confirmation is worth the higher entry price.
1. Extended Bear Markets
In prolonged bear markets like 2000-2002 and 2007-2009, the death cross fires early in the decline. Buying at the first death cross means enduring months or years of additional drawdown. The golden cross, by waiting for confirmed recovery, avoids the worst of the pain.
During the 2008 financial crisis, the death cross fired in December 2007. The S&P 500 went on to lose an additional 45% before bottoming in March 2009. The golden cross did not fire until mid-2009, but buyers at that signal avoided catastrophic drawdowns and still captured substantial upside.
2. Trending Markets with Low Volatility
When markets trend steadily upward without sharp corrections, the golden cross entry produces smooth, consistent returns. The death cross rarely fires in these environments, and when it does, it tends to be a brief head-fake. The golden cross aligns perfectly with the dominant trend.
3. Sector Rotations and Breakouts
Individual stocks and sectors that break out from basing patterns produce strong golden cross signals. The crossover confirms institutional buying and trend initiation. Death cross entries on individual stocks carry more risk than on broad indices because single names can decline to zero.
Combining Both Signals Into a Strategy
The most practical approach is not choosing one signal over the other. It is using both signals together within a structured trading framework. Here is a strategy that uses the death cross for initial entries and the golden cross for position management.
The Dual-Cross Strategy
- Initial Entry (Death Cross): When the death cross fires on the S&P 500 (or your target index), begin building a position. Allocate 50% of your intended position size. This gives you exposure at a lower cost basis.
- Stop-Loss Placement: Set a stop-loss 8-10% below your entry. This protects against the 28% of death crosses that led to extended bear markets. If the market continues lower, you exit with a manageable loss.
- Second Entry (Golden Cross): When the golden cross subsequently fires, add the remaining 50% of your position. This confirms the trend has reversed and you now have full exposure with a blended cost basis lower than a pure golden cross entry.
- Trailing Stop: Once fully invested, use the 200-day SMA as a trailing stop. If price closes below the 200-day SMA for 3 consecutive days, begin reducing position size.
- Full Exit (Next Death Cross): Exit the entire position when the next death cross fires. This completes one full cycle of the strategy.
Strategy Performance Characteristics
This dual-cross approach captures the best features of both signals. The death cross entry provides a lower cost basis. The golden cross confirmation reduces the probability of holding through an extended bear market. The blended entry typically sits between the death cross low and the golden cross high.
| Metric | Death Cross Only | Golden Cross Only | Dual-Cross Strategy |
|---|---|---|---|
| Avg Entry Price | Lowest | Highest | Middle |
| Max Drawdown Risk | Highest (-7.3%) | Lowest (-4.3%) | Moderate (-5.5%) |
| Time in Market | ~67% | ~67% | ~70% |
| Psychological Difficulty | High (buying fear) | Low (buying strength) | Moderate |
Adding Confirmation Filters
You can improve the reliability of both signals by adding confirmation filters. These filters help you avoid false signals and improve your win rate.
- Volume confirmation: Require above-average volume on the crossover day. Higher volume suggests stronger conviction behind the move.
- RSI filter: For death cross entries, require RSI below 30 (oversold). This confirms the market is stretched and a bounce is more likely.
- Volatility filter: Use the VIX as a gauge. Death cross entries when VIX is above 25 have historically produced better forward returns because fear is elevated.
- Moving average slope: Check the slope of the 200-day SMA. If it is still rising when the death cross fires, the secular trend is intact and the death cross is more likely a temporary correction.
Our Stacked Moving Averages indicator provides a quick visual reference for the alignment and slope of multiple moving averages. When combined with the Multi-Timeframe Squeeze indicator, you get a comprehensive picture of trend strength and volatility compression.
Tools for Cross Signal Analysis
Whether you trade the death cross, the golden cross, or a combination of both, the right tools make execution faster and more reliable. Here are the TOS Indicators tools designed for moving average crossover analysis.
The Moving Average Crossover Backtester is the most directly relevant tool. It lets you test any combination of fast and slow moving averages across any ticker and time period. You can compare death cross entries against golden cross entries with real historical data for any stock or ETF.
The Stock Volatility Box and Futures Volatility Box provide statistically derived support and resistance levels. Use these levels to refine your entry and exit targets after a crossover signal fires. Combining a death cross entry with a Volatility Box support level gives you a higher-probability entry zone.
Ready to Trade With an Edge?
Join 40,000+ traders using institutional-grade tools for ThinkOrSwim.
Get the Bundle