SharpeRatio {PerformanceAnalytics} | R Documentation |
The Sharpe Ratio is a risk-adjusted measure of return that uses standard deviation to represent risk.
SharpeRatio(Ra, rf = 0)
Ra |
a vector, matrix, data frame, timeSeries or zoo object of asset returns |
rf |
risk free rate, in same period as your returns |
The Sharpe ratio is simply the return per unit of risk (represented by variance). The higher the Sharpe Ratio, the better the combined performance of "risk" and return.
frac{overline{(R_{a}-R_{f})}}{sqrt{σ_{(R_{a}-R_{f})}}}
William Sharpe now recommends InformationRatio
preferentially to the original Sharpe Ratio.
Sharpe Ratio
Peter Carl
Sharpe, W.F. The Sharpe Ratio,Journal of Portfolio Management,Fall 1994, 49-58.
SharpeRatio.annualized
InformationRatio
TrackingError
ActivePremium
SortinoRatio
data(managers) Ra = managers[, 1, drop = FALSE] rf = managers[, 10, drop = FALSE] SharpeRatio(Ra) SharpeRatio(Ra, rf = .04/12) SharpeRatio(Ra, rf = rf)