Let’s Talk Drawdowns (And Affiliates)

This post will be directed towards those newer in investing, with an explanation of drawdowns–in my opinion, a simple and highly important risk statistic.

Would you invest in this?

SP500ew

As it turns out, millions of people do, and did. That is the S&P 500, from 2000 through 2012, more colloquially referred to as “the stock market”. Plenty of people around the world invest in it, and for a risk to reward payoff that is very bad, in my opinion. This is an investment that, in ten years, lost half of its value–twice!

At its simplest, an investment–placing your money in an asset like a stock, a savings account, and so on, instead of spending it, has two things you need to look at.

cagr

First, what’s your reward? If you open up a bank CD, you might be fortunate to get 3%. If you invest it in the stock market, you might get 8% per year (on average) if you held it for 20 years. In other words, you stow away $100 on January 1st, and you might come back and find $108 in your account on December 31st. This is often called the compound annualized growth rate (CAGR)–meaning that if you have $100 one year, earn 8%, you have 108, and then earn 8% on that, and so on.

The second thing to look at is the risk. What can you lose? The simplest answer to this is “the maximum drawdown”. If this sounds complicated, it simply means “the biggest loss”. So, if you had $100 one month, $120 next month, and $90 the month after that, your maximum drawdown (that is, your maximum loss) would be 1 – 90/120 = 25%.

Maximum-Drawdown

When you put the reward and risk together, you can create a ratio, to see how your rewards and risks line up. This is called a Calmar ratio, and you get it by dividing your CAGR by your maximum drawdown. The Calmar Ratio is a ratio that I interpret as “for every dollar you lose in your investment’s worst performance, how many dollars can you make back in a year?” For my own investments, I prefer this number to be at least 1, and know of a strategy for which that number is above 2 since 2011, or higher than 3 if simulated back to 2008.

Most stocks don’t even have a Calmar ratio of 1, which means that on average, an investment makes more than it can possibly lose in a year. Even Amazon, the company whose stock made Jeff Bezos now the richest man in the world, only has a Calmar Ratio of less than 2/5, with a maximum loss of more than 90% in the dot-com crash. The S&P 500, again, “the stock market”, since 1993, has a Calmar Ratio of around 1/6. That is, the worst losses can take *years* to make back.

A lot of wealth advisers like to say that they recommend a large holding of stocks for young people. In my opinion, whether you’re young or old, losing half of everything hurts, and there are much better ways to make money than to simply buy and hold a collection of stocks.

****

For those with coding skills, one way to gauge just how good or bad an investment is, is this:

An investment has a history–that is, in January, it made 3%, in February, it lost 2%, in March, it made 5%, and so on. By shuffling that history around, so that say, January loses 2%, February makes 5%, and March makes 3%, you can create an alternate history of the investment. It will start and end in the same place, but the journey will be different. For investments that have existed for a few years, it is possible to create many different histories, and compare the Calmar ratio of the original investment to its shuffled “alternate histories”. Ideally, you want the investment to be ranked among the highest possible ways to have made the money it did.

To put it simply: would you rather fall one inch a thousand times, or fall a thousand inches once? Well, the first one is no different than jumping rope. The second one will kill you.

Here is some code I wrote in R (if you don’t code in R, don’t worry) to see just how the S&P 500 (the stock market) did compared to how it could have done.

require(downloader)
require(quantmod)
require(PerformanceAnalytics)
require(TTR)
require(Quandl)
require(data.table)

SPY <- Quandl("EOD/SPY", start_date="1990-01-01", type = "xts")
SPYrets <- na.omit(Return.calculate(SPY$Adj_Close))

spySims <- list()
set.seed(123)
for(i in 1:999) {
  simulatedSpy <- xts(sample(coredata(SPYrets), size = length(SPYrets), replace = FALSE), order.by=index(SPYrets))
  colnames(simulatedSpy) <- paste("sampleSPY", i, sep="_")
  spySims[[i]] <- simulatedSpy
}
spySims <- do.call(cbind, spySims)
spySims <- cbind(spySims, SPYrets)
colnames(spySims)[1000] <- "Original SPY"

dailyReturnCAGR <- function(rets) {
  return(prod(1+rets)^(252/length(rets))-1)
}

rets <- sapply(spySims, dailyReturnCAGR)
drawdowns <- maxDrawdown(spySims)
calmars <- rets/drawdowns
ranks <- rank(calmars)
plot(density(as.numeric(calmars)), main = 'Calmars of reshuffled SPY, realized reality in red')
abline(v=as.numeric(calmars[1000]), col = 'red')

This is the resulting plot:

spyCalmars

That red line is the actual performance of the S&P 500 compared to what could have been. And of the 1000 different simulations, only 91 did worse than what happened in reality.

This means that the stock market isn’t a particularly good investment, and that you can do much better using tactical asset allocation strategies.

****

One site I’m affiliated with, is AllocateSmartly. It is a cheap investment subscription service ($30 a month) that compiles a collection of asset allocation strategies that perform better than many wealth advisers. When you combine some of those strategies, the performance is better still. To put it into perspective, one model strategy I’ve come up with has this performance:
allocateSmartlyModelPortfolio

In this case, the compound annualized growth rate is nearly double that of the maximum loss. For those interested in something a bit more aggressive, this strategy ensemble uses some fairly conservative strategies in its approach.

****

In conclusion, when considering how to invest your money, keep in mind both the reward, and the risk. One very simple and important way to understand risk is how much an investment can possibly lose, from its highest, to its lowest value following that peak. When you combine the reward and the risk, you can get a ratio that tells you about how much you can stand to make for every dollar lost in an investment’s worst performance.

Thanks for reading.

NOTE: I am interested in networking opportunities, projects, and full-time positions related to my skill set. If you are looking to collaborate, please contact me on my LinkedIn here.

9 thoughts on “Let’s Talk Drawdowns (And Affiliates)

  1. Pingback: Let’s Talk Drawdowns (And Affiliates) | A bunch of data

  2. Pingback: Let’s Talk Drawdowns (And Affiliates) – Mubashir Qasim

  3. Hello Ilya, good article, I also like this type of studies a lot as you know. I would like to bring to your attention the following with the aim of maybe improving the results of this study: It is not clear what you are testing again in the reshuffled Calmar distribution; the type of statistical test is not clear. For example, if the original Calmar is 0.2, let us say 10/50, or 10% CAGR and 50% max drawdown, then a Calmar of 0.5 may not be better since CAGR can be 40% but max drawdown 80%, or close to ruin. Therefore, ranking does not lead to a coherent test in this case. Also, in the case we would like to rank only the max DD the test is also not very clear. What are the null the alternative hypotheses?

    Only in the case of CAGR ranking make sense, because the null and alternative are as follows:

    Ho: Strategy draws returns from a distribution with 0 mean (random) mu = 0
    H1: mu > 0

    Example: http://www.priceactionlab.com/Blog/2017/04/intelligent-trading-strategy/

    As soon as the metric to test is divided by another, in this case CAGR is divided by max. DD, the resulting metric becomes becomes relational and absolute reference is lost.

    • Hi Michael,

      Thanks for the reply. However, I stated that the CAGR remains identical. That is, I simply reshuffled the history. So if you made 2% in June, lost 3% in July, made 4% in August, lost 5% in September, then I simply reshuffle those gains/losses around, without replacement. All alternate histories start and end at the same location, thus the CAGR and standard deviation are all identical.

      -Ilya

      • OK, I see that but even then, i.e., keeping CAGR constant, the nature of the statistical test is not clear. What are the null and alternative hypotheses?

        I agree with eh conclusion of the article: “…the stock market isn’t a particularly good investment, and that you can do much better using tactical asset allocation strategies.”

        I was thinking of a way of using Calmar, which I also like, in a more formal statistical framework. In other words, the fact that about 90% of alternative paths had higher Calmar, this does not say anything about viability and efficiency of tactical methods.

        I propose the following which I am sure you can do: Take these 1000 histories and run 50/200 long-only golden cross on each. Then you can see whether higher Calmar and tactical are in line. I would do it but I am working on a project plus I know you are good and fast with these tests.

  4. As always another great article. Thanks so much for the high level of investment education you give us for free….plus even some valuable coding skills..

  5. Do you have a link to where I can download the source tar.gz files for blotter/quantstrat?

    The links appear to be broken on R-Forge and I can’t use the .zip files since I’m on a Mac (.zip only works on Windows apparently). I’ve been trying for hours to get this up and running in RStudio. Thanks!

  6. Pingback: Mundo Quant #1 – Stratsphera

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s