This is an archived documentation site for release 2.4. For the latest documentation or to access any other site features, please return to www.quantrocket.com

Global Trading Blog

What happens after stocks suffer large one-day losses? This post finds that the proverbial "dead cat bounce" occurs overnight and is followed by continued losses the next day. Targeting international markets, I explore a trading strategy that aims to profit from the losses that follow a dead cat bounce.

The timing of the dead cat bounce

Most traders are familiar with the "dead cat bounce": a temporary price recovery following losses, that is followed by more losses. But when does the bounce occur and when do the losses resume?

Using end-of-day price data for US stocks, I identify all stocks that suffered one-day losses of -10% or more.

prices = get_prices("usstock-1d", start_date="2018-01-01", end_date="2019-01-01", fields=["Close", "Open"])
closes = prices.loc["Close"]
opens = prices.loc["Open"]
big_losers = closes.pct_change() <= -0.10

I then look at returns over the subsequent day, breaking them into overnight (close-to-open) and intraday (open-to-close) returns.

oc_returns = (closes - opens) / opens
co_returns = (opens - closes.shift()) / closes.shift()
oc_returns = oc_returns.where(big_losers.shift())
co_returns = co_returns.where(big_losers.shift())

Plotting the returns reveals that stocks gain 40 BPS overnight, on average, following steep losses, but then lose over 50 BPS on average during the next day's session.

Trading challenges in the US stock market

The above analysis suggests two possible trading strategies when a stock falls 10% or more:

  1. "dead cat bounce" strategy: buy the stock at the close and exit the next morning;
  2. "dead cat drop" strategy: short the stock at the next morning's open and exit at the close

However, both of these strategies pose challenges. The challenge with buying at the close is that we are using the closing price to measure the 10% drop; by the time we know the stock satisfied our entry rule, it's too late to enter on the close. Instead, we would need to modify the strategy to use intraday data and enter on the close based on price drops measured shortly before the close. This is left as an exercise to the reader, as the remainder of this post will focus on the "dead cat drop" strategy idea.

The challenge with shorting at the next day's open is specific to the US market. 10% one-day declines trigger SEC Rule 201, also known as the alternative uptick rule or short sale circuit breaker. This rule, which is in effect on the day of the decline and on the following day, restricts short sales unless they occur at a price above the national best bid. This rule makes it unpredictable whether our orders will get filled and thus erodes our ability to trust backtest results.

Multi-country backtest of a "dead cat drop" strategy

SEC Rule 201 does not apply to international markets. So, I create a Moonshot strategy that shorts stocks in these markets following 10% declines, entering on the next day's open and holding until the close. Using survivorship bias-free data from EDI (available in the Data Library), I test the strategy on the 10 largest non-US markets that are shortable through Interactive Brokers:

  • Belgium (Euronext Brussels)
  • Canada (Toronto Stock Exchange)
  • France (Euronext Paris)
  • Germany (Xetra)
  • Hong Kong (Hong Kong Stock Exchange)
  • Japan (Tokyo Stock Exchange)
  • Netherlands (Euronext Amsterdam)
  • Sweden (Nasdaq Nordic Stockholm)
  • Switzerland (Six Swiss Exchange)
  • United Kingdom (London Stock Exchange)

Backtesting the strategy on these markets from 2007-2017, I obtain an aggregate Sharpe ratio of 1.3. The performance of individual markets varies, with Japan being the strongest-performing market with a Sharpe ratio of 1.1.

At this initial stage, I do not yet model transaction costs and short sale constraints. Omitting transaction costs makes it easier to determine whether the basic hypothesis is sound. Including such costs from the outset would make it impossible to distinguish between strategies that have no inherent alpha and strategies that have alpha that can't readily be captured for technical reasons. This distinction is useful to know. If the issue is technical, it may be possible to work around it, such as modifying a strategy that is sensitive to commissions to trade less frequently.

The purpose of a multi-country backtest

Running a multi-country backtest serves two purposes.

  1. First, it helps identify the particular market where a strategy works best so we can focus our subsequent research there.
  2. Second, it helps validate a trading idea by demonstrating how widely it applies. A backtest that performs well across several global markets is more robust than one tested on a single market. Even if we subsequently narrow our focus to the most promising market, the strategy's performance in other markets can bolster or weaken our confidence in the trading idea's validity.

The impact of short sale constraints

Among the countries tested above, Japan seemed the most promising market for the "dead cat drop" strategy. Next I run a more realistic, out-of-sample backtest on Japan.

In addition to modeling commissions, I also test the impact of short sale constraints. So far we have assumed that we can sell short any stock we want, but this is not the case. We can only sell short if our broker has shares to loan us. QuantRocket maintains a store of short sale data from Interactive Brokers dating back to 2018, which provides the number of shares available to short for any given security at any given time. I use this dataset to compare the strategy's performance with and without short sale constraints:

Although both variants of the strategy are profitable, short sale constraints significantly reduce the strategy's profits.

Conclusion

Stocks that drop 10% in a single day enjoy a "dead cat bounce" overnight but suffer a "dead cat drop" the next day. While SEC Rule 201 makes it hard to short these stocks in the US market, the same tendency to keep falling exists in international markets and can potentially be exploited there.

Finding profitable strategies requires identifying the markets whose unique characteristics are best suited to the application of your trading idea. Traders searching for alpha should not limit themselves to the US market but expand their search as widely as possible.

Explore this research on your own

This research was created with QuantRocket. Clone the dead-cat-drop repository to get the code and perform your own analysis.

quantrocket codeload clone 'dead-cat-drop'

QuantRocket LLC is not a financial advisor and nothing on this website or in any materials created by QuantRocket LLC should be construed as investment advice. All results are hypothetical unless otherwise noted. Past performance is not indicative of future results.

The material on this website and any other materials created by QuantRocket LLC is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantRocket LLC.

In addition, the material offers no opinion with respect to the suitability of any security or specific investment. No information contained herein should be regarded as a suggestion to engage in or refrain from any investment-related course of action. Neither QuantRocket LLC nor any of its affiliates is undertaking to provide investment advice, act as an adviser to any plan or entity subject to the Employee Retirement Income Security Act of 1974, as amended, individual retirement account or individual retirement annuity, or give advice in a fiduciary capacity with respect to the materials presented herein. If you are an individual retirement or other investor, contact your financial advisor or other fiduciary unrelated to QuantRocket LLC about whether any given investment idea, strategy, product or service described herein may be appropriate for your circumstances. All investments involve risk, including loss of principal. QuantRocket LLC makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. Past performance is not indicative of future results.