QuantRocket Blog

Does forced buying and selling of underlying shares by leveraged ETF sponsors cause predictable intraday price moves? This post explores an intraday momentum strategy based on the premise that it does.

Daily rebalancing of leveraged ETFs

Source: Ernie Chan, Algorithmic Trading: Winning Strategies and Their Rationale, Wiley, May 28, 2013, chapter 7.

Per their fund objectives, leveraged ETFs must maintain a constant daily leverage relative to their underlying index (usually 2x or 3x leverage). As Ernie Chan points out in his book Algorithmic Trading, doing so requires that the ETF sponsors buy more underlying shares on days the shares go up and sell shares on days the shares go down. The larger the gain or loss, the more shares the fund will have to buy or sell to maintain the proper leverage.

This is simply based on the math of using leverage: with 2x leverage, a 10% drop in the underlying index results in only a %5 drop in the leveraged portfolio value, which results in a higher leverage if not rebalanced. (See example 8.1 in Chan's book for further discussion.)

Based on this insight, Chan proposes a trading strategy that buys (sells) leveraged ETFs in the afternoon trading session following a significant intraday gain (loss), in expectation of further buying (selling) by the leveraged ETF sponsors heading into the close.

Leveraged ETF trading strategy

I create a Moonshot strategy to test Chan's idea using 15-min data from Interactive Brokers. The strategy calculates the return from the prior close to 2 PM and takes a long or short position when the gain or loss is more than +/-2% and holds until the close. The Pandas code is shown below:

closes = prices.loc["Close"]
opens = prices.loc["Open"]

# Take a cross section (xs) of prices to get a specific time's price;
# the close of the 15:45 bar is the session close
session_closes = closes.xs("15:45:00", level="Time")
# the open of the 14:00 bar is the 14:00 price
afternoon_prices = opens.xs("14:00:00", level="Time")

# calculate the return from yesterday's close to 14:00
prior_closes = session_closes.shift()
returns = (afternoon_prices - prior_closes) / prior_closes

# Go long if up more than 2%, go short if down more than -2%
long_signals = returns > 0.02
short_signals = returns < -0.02

Backtest using DRN

I first backtest the trading strategy using DRN, a real estate ETF which Chan uses for this strategy in his book. Attempting to replicate an author's result as closely as possible before adding your own variations to the strategy is a good way to validate your code. Since Chan's book was published in 2013, this backtest allows us to view the strategy's out-of-sample performance.

The DRN strategy performs well in Chan's in-sample period of 2011-2012 but is unprofitable after transaction costs in subsequent years.

Multi-ETF backtest

Next, I re-run the strategy on a portfolio of 14 leveraged ETFs. Testing a trading strategy with multiple securities provides better validation of the underlying concept and reduces the potential for data mining bias. Frequently it also improves the Sharpe ratio as a result of diversification.

The multi-ETF variant is profitable through mid-2016 but declines thereafter.

How large should the intraday move be?

The above backtests require an intraday move of +/-2%. As most of the leveraged ETFs in the backtest use 3x leverage, this requires a move of only +/-0.67% in the underlying index. Since larger intraday moves should require larger quantities of buying or selling by the ETF sponsors, perhaps we should adjust the backtest to use a larger threshold.

The following parameter scan tests thresholds of 2, 4, 6, and 8%.

A threshold of +/-6% provides a compound annual growth rate of 31% after transaction costs and an attractive Sharpe ratio of 1.95 for the period 2008-2016. However, the strategy flattens out beginning in 2017.

Conclusion

Ernie Chan's leveraged ETF momentum strategy provides intriguing historical performance when run on a portfolio of multiple ETFs and when adjusted to require a larger intraday move. The flattening out of performance starting in 2017 raises the question of whether the strategy is taking a pause or has suffered permanent alpha decay. If the latter, it remains to be seen whether a similar phenomenon exists in international markets.

Explore this research on your own

This research was created with QuantRocket. Clone the trend-day repository to get the code and perform your own analysis.

quantrocket codeload clone 'trend-day'

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.