Back to Research
Strategy Analysis 12 min read

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.

Published September 26, 2023 Updated February 25, 2026
Death Cross vs. Golden Cross: Which Is a Better Entry Signal?

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.

Pro Tip If you want a deep dive on the golden cross alone, check out our Golden Cross Trading Strategy: 20-Year Backtest Results companion article.

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.

Key Takeaway Both the golden cross and death cross are lagging signals. The 50-day and 200-day SMAs require weeks or months of price data to shift, meaning the crossover event always trails the actual inflection point in price.

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.

~35Death Crosses Since 1950
72%Positive 12-Mo Returns
+6.3%Avg 12-Mo Forward Return
54%Already at Bottom

Here is what the data shows for average forward returns after a death cross signal on the S&P 500:

Time After Death CrossAvg 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.

Important Context While 72% of death crosses led to positive 12-month returns, the remaining 28% that were negative included some of the most severe bear markets in history (2000-2002, 2008). The average loss in those negative cases was approximately -19%. Position sizing and stop-loss discipline remain essential.

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.
Key Takeaway The death cross entry offers a lower cost basis and higher potential return, but you pay for it with higher short-term volatility and drawdown risk. The golden cross entry offers smoother returns and lower drawdowns, but at a higher entry price.

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.

PeriodDeath Cross EntryGolden Cross EntryWinner
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.

-4.3%Avg MaxDD After Golden Cross
-7.3%Avg MaxDD After Death Cross
79%Golden Cross Win Rate
72%Death Cross 12-Mo Win Rate

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 & AlertThinkScript
# 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 FilterThinkScript
# 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;
Pro Tip Use the "within 3 bars" modifier to catch death crosses that occurred in the last three trading sessions. This prevents the scanner from only returning results on the exact crossover day, giving you a wider detection window.

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.

Key Takeaway The death cross entry performs best in V-shaped recoveries, shallow corrections, and pullbacks within secular bull markets. In these environments, the signal fires near the bottom, and the contrarian buyer captures the full recovery.

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.

Important Context The death cross entry strategy is best suited for broad market indices like the S&P 500 where the long-term bias is upward. Applying it to individual stocks, sectors, or leveraged products increases the risk of permanent capital loss. Always use the golden cross confirmation approach for higher-risk instruments.

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

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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.

MetricDeath Cross OnlyGolden Cross OnlyDual-Cross Strategy
Avg Entry PriceLowestHighestMiddle
Max Drawdown RiskHighest (-7.3%)Lowest (-4.3%)Moderate (-5.5%)
Time in Market~67%~67%~70%
Psychological DifficultyHigh (buying fear)Low (buying strength)Moderate
Pro Tip You can backtest variations of this dual-cross strategy using our Moving Average Crossover Backtester. Try different fast/slow period combinations (like 20/100 or 50/150) to find the crossover parameters that best fit your trading timeframe.

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.

The death cross is not a consistently reliable sell signal on its own. Since 1950, the S&P 500 has posted positive returns 72% of the time in the 12 months following a death cross, with an average gain of 6.3%. In 54% of cases, the market had already bottomed before the death cross even appeared. The signal is lagging by nature, which means the bulk of the selling pressure has often already occurred by the time the 50-day SMA crosses below the 200-day SMA. It works best as a risk management tool rather than a standalone sell trigger, especially when combined with other indicators like volume, RSI, and the VIX.
Death crosses have preceded extended bear markets in roughly 28% of occurrences since 1950. That means nearly three out of four death crosses did not lead to bear markets. Notable exceptions include the 2000 dot-com bust and the 2008 financial crisis, where death crosses preceded significant further declines of 40% or more. However, the majority of death crosses occur during corrections within broader bull markets and resolve with the market recovering to new highs within 6-12 months. The key is distinguishing between secular bear markets and cyclical corrections, which requires additional context beyond the crossover signal alone.
Yes, using the death cross as a contrarian buy signal has historical support. Since 1950, buying the S&P 500 at the death cross and holding for 12 months produced an average return of +6.3% with a 72% win rate. The strategy works because the death cross is a lagging indicator. By the time it fires, the market has already declined significantly, and 54% of the time the low has already been set. The approach works best on broad market indices like the S&P 500 where the long-term bias is upward. It carries higher short-term risk (the first 20 days average -0.5%) but offers a lower entry price compared to waiting for a golden cross confirmation.
The daily chart using the 50-day and 200-day simple moving averages is the most widely studied and historically validated timeframe for golden cross and death cross signals. This combination produces approximately 35 signals per 75-year period on the S&P 500, giving enough data for statistical significance while filtering out short-term noise. Shorter timeframes (like 20/50 on a daily chart or 50/200 on a 4-hour chart) produce more frequent signals but with lower reliability and more whipsaws. Longer timeframes (like weekly charts) produce fewer but more significant signals. The 50/200 daily combination strikes the best balance between signal frequency and accuracy for swing and position traders.
There are several proven methods to filter false crossover signals. First, require above-average volume on the crossover day to confirm institutional participation. Second, add an RSI filter: for death cross entries, look for RSI below 30 (oversold), and for golden cross entries, look for RSI above 50 (momentum confirmation). Third, check the slope of the 200-day SMA. If the 200-day SMA is still rising during a death cross, the long-term trend is intact and the crossover is more likely a false alarm. Fourth, use the VIX as a sentiment gauge. Death crosses with VIX above 25 tend to mark capitulation points with better forward returns. Finally, consider using a confirmation period. Wait 3-5 days after the crossover to confirm the signal holds before taking action.

Ready to Trade With an Edge?

Join 40,000+ traders using institutional-grade tools for ThinkOrSwim.

Get the Bundle