Crypto bull runs and leverage

Looking at the returns of leveraged crypto positions in a bull run

Bitcoin Bull Run
Bitcoin Bull Run

In my previous blog post I’ve looked at the outcome of investing in ETFs using leverage and what the returns and drawdowns would have been over the last 15 years.

In this blog post I will do the same but with a focus on cryptocurrencies. Specifically, I’m interested to see what effect leverage has when investing into the top 10 cryptocurrencies during a bull run.

I picked the start date of this study to be 2017-12-01 - the middle of the last crypto bull run. To avoid survivorship bias, I’m only picking crypto currencies that were in the top 10 at the specified date.

  • Bitcoin (BTC)
  • Ethereum (ETH)
  • Bitcoin Cash (BCH)
  • Ripple (XRP)
  • Dash (DASH)
  • Litecoin (LTC)
  • Bitcoin Gold (BTG)
  • IOTA (MIOTA)
  • Cardano (ADA)
  • Ethereum Classic (ETC)

The full snapshot of cryptocurrencies ordered by market cap on 2017-12-01 is availabe on CoinMarketCap

I will examine buying and holding crypto with 1:1, 1:2, and 1:5 leverage.

Parameters and code

val initialInvestment: Double = 10_000.0
val startDate = LocalDateTime.of(2017, 12, 1, 0, 0,0)
val leverage: Double = 1.0

val data = loader.download(ticker).dropWhile { it.datetime.isBefore(startDate) }
val closePrices = data.map { it.close.toDouble() }
val equity = closePrices.asReturns().equityCurve(initialInvestment, leverage = leverage)
val drawdown = equity.drawdown()

chart("Buy and hold - ${ticker.tickerName} - Leverage: 1:${leverage}") {
    panel(height = 300) {
        xylinechart { closePrices.toXYSeries("${ticker.ticker} Price") }
    }
    panel(height = 300) {
        xylinechart { equity.toXYSeries("Equity") }
    }
    panel(height = 200) {
        xylinechart { drawdown.toXYSeries("Drawdown") }
    }
    panel(height = 200) {
        xylinechart { drawdown.longestDrawdown().toXYSeries("Longest drawdown") }
    }
}

Bitcoin (BTC)

Bitcoin (BTC) - No leverage Bitcoin (BTC) - 1:2 leverage Bitcoin (BTC) - 1:5 leverage

Ethereum (ETH)

Ethereum (ETH) - No leverage Ethereum (ETH) - 1:2 leverage Ethereum (ETH) - 1:5 leverage

Bitcoin Cash (BCH)

Bitcoin Cash (BCH) - No leverage Bitcoin Cash (BCH) - 1:2 leverage Bitcoin Cash (BCH) - 1:5 leverage

Ripple (XRP)

Ripple (XRP) - No leverage Ripple (XRP) - 1:2 leverage Ripple (XRP) - 1:5 leverage

Dash (DASH)

Dash (DASH) - No leverage Dash (DASH) - 1:2 leverage Dash (DASH) - 1:5 leverage

Litecoin (LTC)

Litecoin (LTC) - No leverage Litecoin (LTC) - 1:2 leverage Litecoin (LTC) - 1:5 leverage

Bitcoin Gold (BTG)

Bitcoin Gold (BTG) - No leverage Bitcoin Gold (BTG) - 1:2 leverage Bitcoin Gold (BTG) - 1:5 leverage

IOTA (MIOTA)

IOTA (MIOTA) - No leverage IOTA (MIOTA) - 1:2 leverage IOTA (MIOTA) - 1:5 leverage

Cardano (ADA)

Cardano (ADA) - No leverage Cardano (ADA) - 1:2 leverage Cardano (ADA) - 1:5 leverage

Ethereum Classic (ETC)

Ethereum Classic (ETC) - No leverage Ethereum Classic (ETC) - 1:2 leverage Ethereum Classic (ETC) - 1:5 leverage

Results

Pair Leverage Return Maximum Drawdown Longest drawdown period (days)
BTC-USD 1:1 513% -83% 1076
BTC-USD 1:2 251% -99% 1179
BTC-USD 1:5 0% -100% 1188
-
ETH-USD 1:1 379% -94% 1112
ETH-USD 1:2 31% -100% 1160
ETH-USD 1:5 0% -100% 1160
-
BCH-USD 1:1 36% -98% 1184
BCH-USD 1:2 0% -100% 1184
BCH-USD 1:5 0% -100% 1184
-
XRP-USD 1:1 198% -96% 1166
XRP-USD 1:2 2% -100% 1166
XRP-USD 1:5 0% -136% 1166
-
DASH-USD 1:1 28% -97% 1184
DASH-USD 1:2 0% -100% 1184
DASH-USD 1:5 0% -100% 1184
-
LTC-USD 1:1 197% -93% 1186
LTC-USD 1:2 8% -100% 1186
LTC-USD 1:5 0% -100% 1186
-
BTG-USD 1:1 10% -99% 1184
BTG-USD 1:2 0% -100% 1184
BTG-USD 1:5 0% -117% 1184
-
MIOTA-USD 1:1 95% -98% 1185
MIOTA-USD 1:2 0% -100% 1185
MIOTA-USD 1:5 0% -124% 1196
-
ADA-USD 1:1 899% -98% 1139
ADA-USD 1:2 33% -100% 1169
ADA-USD 1:5 0% -100% 1169
-
ETC-USD 1:1 39% -92% 1184
ETC-USD 1:2 0% -100% 1184
ETC-USD 1:5 0% -148% 1184

Conclusion

The picture is bleak. Making a buy-and-hold investment during a crypto bull run using leverage is a guaranteed way to lose most if not all money invested.

Using no leverage performs a lot better, but still comes with huge drawdowns of over 90%.

Even using no leverage, out of 10 investments, 5 have returned less than we originally invested. Sometimes by a large amount. ETC left us with 39% of the original stake, BTG with 5%, DASH with 28% and BCH left us with 36% of the original $10,000 investment.

On the bright side, investing in an equal weighted crypto portfolio of the top 10 coins would have doubled the stake despite all losers.

Equal weighted crypto portfolio return

Historical research from the Algogen archive. Not investment advice.

Blog

Have a strategy idea?

Describe it in plain English, preview where your rules fire, then decide whether the evidence is worth a backtest.

Try with my idea → Sign in