The conditional drawdown beta is a measure of capturing performance under market drawdowns and it is given by the ratio of the average rate of return of the instrument over time periods corresponding to the \((1-p)T\) largest drawdowns of the benchmark portfolio.
The difference in CDaR and standard beta boils down to the fact that the standard beta accounts for the fund returns over the whole return history, including the upside while CDaR beta focuses only on market drawdowns.
CDaR.beta(R, Rm, p = 0.95, weights = NULL, geometric = TRUE, type = NULL, ...)an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns
an xts, vector, matrix, data frame, timeSeries or zoo object of benchmark returns
confidence level for calculation ,default(p=0.95)
portfolio weighting vector, default NULL, see Details
utilize geometric chaining (TRUE) or simple/arithmetic chaining (FALSE) to aggregate returns, default TRUE
(Optional) Overrides the p parameter. If "average" then p = 0 and if "max" then p = 1
any passthru variable.
Zabarankin, M., Pavlikov, K., and S. Uryasev. Capital Asset Pricing Model (CAPM) with Drawdown Measure.Research Report 2012-9, ISE Dept., University of Florida,September 2012.
data(edhec)
CDaR.beta(edhec[,1],edhec[,2])
#> 5%
#> -0.8031502
CDaR.beta(edhec[,1],edhec[,2],type="max")
#> max
#> -0.7480649
CDaR.beta(edhec[,1],edhec[,2],type="average")
#> average
#> -0.9412998