I just waded through a bunch of papers on the STARR and Rachev risk ratios. These seem to have vastly overcomplicated what you actually need to do, which is unfortunately typical of many mathematical papers (it’s a consequence of the logicians outnumbering the intuitives). I think I finally figured out what they were trying to say, and it turned out to be simple. I might still be wrong about this (after all, it was only an hour or so of deciphering), but here’s how I think the concepts can be summed up easily and intuitively for someone who understands a bit of statistics:
First, get a distribution of excess return by subtracting your returns from the value of a risk-free investment.
Value at risk: Find the qth percentile/quantile of the return; that is, q% of the time, you’ll make less than the value you find. If you assume a normal distribution, you’re just finding the z-score from the p-value q (hint: the Excel NormInv function will do this for you, or you can grab a normal table if you’re old-fashioned). If q = 0.05, that’s 1.96 standard deviations below the mean using a two-tailed test (one-tailed, it’s a bit less).
Conditional value at risk/Expected shortfall/Expected tail loss: Average of everything in the distribution where returns fall below the value at risk. Since the value at risk represents bad things with an unlikely probability (q%) of occurrence, this is the average of all of the really bad, really unlikely things that could happen to your portfolio. Oh, and it’s a loss, so if you’re dealing with a distribution of returns, you’ll want to negate the result.
STARR ratio: Excess returns over expected tail loss. It seems to measure how much you typically make vs. how much you can possibly lose. Average over worst case.
Rachev ratio: Tail loss of losses (just negate the returns distribution!) over tail loss of returns. Loss of losses (let’s call it “gain”) is a good thing, so the numerator represents what you can gain in the best q% of cases, while the denominator represents how much you can lose in the worst q%. Essentially, you’re judging the best possible case against the worst.
When you get down to it, the intuition behind the concepts is simple. It’s just dressed up funny. Unless I’m totally wrong about this 🙂
You can probably use these sorts of ratios in other fields as well, particularly when the terms “best case”, “average case”, and “worst case” have meaning, such as in the analysis of algorithms.