The Sharpe ratio is simply the return per unit of risk (represented by variability). In the classic case, the unit of risk is the standard deviation of the returns.
SharpeRatio(R, Rf = 0, alpha = 0.05, FUN="StdDev",annualize=FALSE)
an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns
risk free rate, in same period as your returns
Tail probability for VaR or ES, default alpha=.05
one of "StdDev" or "VaR" or "ES" to use as the denominator
if TRUE, annualize the measure, default FALSE
Ho Tsung-wu <tsungwu@ntnu.edu.tw>, College of Management, National Taiwan Normal University.
$$\frac{\overline{(R_{a}-R_{f})}}{\sqrt{\sigma_{(R_{a}-R_{f})}}}$$
William Sharpe now recommends InformationRatio
preferentially
to the original Sharpe Ratio.
The higher the Sharpe ratio, the better the combined performance of "risk" and return.
As noted, the traditional Sharpe Ratio is a risk-adjusted measure of return that uses standard deviation to represent risk.
A number of papers now recommend using a "modified Sharpe" ratio using a Modified Cornish-Fisher VaR or CVaR/Expected Shortfall as the measure of Risk.
Sharpe, W.F. The Sharpe Ratio,Journal of Portfolio
Management,Fall 1994, 49-58.
Laurent Favre and Jose-Antonio Galeano. Mean-Modified Value-at-Risk
Optimization with Hedge Funds. Journal of Alternative Investment, Fall 2002,
v 5.
See also package PerformanceAnalytics.
SharpeRatio.annualized
InformationRatio
TrackingError
ActivePremium
SortinoRatio
data(assetReturns)
R=assetReturns[, -29]
SharpeRatio(R)
Run the code above in your browser using DataLab