Last chance! 50% off unlimited learning
Sale ends in
This function computes the Sterling ratio of the univariate time series
(or vector) x
.
sterling(x)
a double representing the Sterling ratio.
a numeric vector or univariate time series corresponding to a portfolio's cumulated returns.
A. Trapletti
The Sterling ratio is defined as a portfolio's overall return divided
by the portfolio's maxdrawdown
statistic. In finance the
Sterling Ratio represents a measure of the portfolio's risk-adjusted
return.
maxdrawdown
, sharpe
data(EuStockMarkets)
dax <- log(EuStockMarkets[,"DAX"])
ftse <- log(EuStockMarkets[,"FTSE"])
sterling(dax)
sterling(ftse)
Run the code above in your browser using DataLab