Description Usage Arguments Details Author(s) References Examples
Introduced by Kaplan and Knowles (2004), Kappa is a generalized downside risk-adjusted performance measure.
1 |
R |
an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns |
MAR |
Minimum Acceptable Return, in the same periodicity as your returns |
l |
the coefficient of the Kappa |
... |
any other passthru parameters |
To calculate it, we take the difference of the mean of the distribution to the target and we divide it by the l-root of the lth lower partial moment. To calculate the lth lower partial moment we take the subset of returns below the target and we sum the differences of the target to these returns. We then return return this sum divided by the length of the whole distribution.
Kappa(R, MAR, l) = (rp - MAR)/(√[l](1/n*sum(t=1..n) (max(MAR-r(t),0)^l)))
For l=1 kappa is the Sharpe-omega ratio and for l=2 kappa is the sortino ratio.
Kappa should only be used to rank portfolios as it is difficult to interpret the absolute differences between kappas. The higher the kappa is, the better.
Matthieu Lestel
Carl Bacon, Practical portfolio performance measurement and attribution, second edition 2008 p.96
1 2 3 4 5 6 7 8 9 10 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.