Performance ratios, bootstrapping and infinite variances

[This article was first published on Portfolio Probe » R language, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

If returns had infinite variance, would there be a problem bootstrapping information ratios?

Background

There is a discussion on the Quant Finance group of LinkedIn with the title: “How do you measure the confidence intervals of performance ratios?”

One suggestion was to use the statistical bootstrap. This resulted in a discussion of the efficacy of the bootstrap under infinite variance.  There is actually a missed step in there — just because the returns have infinite variance doesn’t mean that the performance ratios will.  This post looks at the distribution of the information ratio under a few distributions of returns including some with infinite variance.

I don’t believe that returns do have infinite variance, but we’re considering consequences if they did.

By the way, my answer to the broader question of how to determine if a fund outperforms is to use random portfolios.

Simulations

Returns were simulated and the information ratio for the returns was computed.  The number of returns used was either 12 (as in a year of monthly data) or 60 (as in a quarter of daily data).  The distribution of the information ratios is plotted using a normal qqplot.  The lines in the plots show the behavior of the extreme quartiles relative to the middle quartiles.

Figures 1 and 2 are for normally distributed returns.  If — as in these plots — the points are essentially on a line, then the distribution is normal.

Figure 1: QQplot using 12 normally distributed returns.
Figure 2: QQplot using 60 normally distributed returns.

Figures 3 and 4 use the Cauchy distribution.  This is more extreme than even the infinite variance gang believe.  The Cauchy not only has an infinite variance, it has an infinite mean as well.

Figure 3: QQplot using 12 Cauchy distributed returns.

Figure 4: QQplot using 60 Cauchy distributed returns.

Figures 5 and 6 use Student’s t distribution with 1.5 degrees of freedom.  This is more like the assumption that the infinite variance gang makes: infinite variance, finite mean.

Figure 5: QQplot using 12 t distributed (1.5 degrees of freedom) returns.

Figure 6: QQplot using 60 t distributed (1.5 degrees of freedom) returns.

Figures 7 and 8 use Student’s t with 5 degrees of freedom.  This, in my opinion, is a reasonable assumption for the distribution of daily returns.

Figure 7: QQplot using 12 t distributed (5 degrees of freedom) returns.

Figure 8: QQplot using 60 t distributed (5 degrees of freedom) returns.

Comments

The infinite variance distributions result in short-tailed distributions for the information ratio.  Hence there should be no worry at all about the efficacy of the bootstrap in this situation.

These simulations implicitly assume that the information ratio is created with log returns rather than simple returns. There’s not likely to be much difference whichever returns are used.

The “reasonable” return distribution results in a distribution for the information ratio that is very close to normal.  So you might ask what the advantage is of the bootstrap over traditional methods.  One answer is that the bootstrap is probably better than analytic methods at handling whatever distortions there are from normality.  Also with the bootstrap you don’t have to think — you only need to be able to write a for loop in R.  That is, you can apply Uwe’s Maxim.

Epilogue

Who knows not where a wasp does wear his sting?

from The Taming of the Shrew by William Shakespeare

Appendix R

The data plotted in the figures were generated like:

ratio <- numeric(1000)
for(i in 1:1000) {
  data <- rt(12, df=1.5)
  ratio[i] <- mean(data) / sd(data)
}

It was then plotted (essentially) with:

qqnorm(ratio)
qqline(ratio, col="blue")

Those who believe that returns have infinite variance think they follow a stable distribution.  There are functions for stable distributions in the fBasics and stabledist R packages.

To leave a comment for the author, please follow the link and comment on their blog: Portfolio Probe » R language.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)