SortinoRatio {PerformanceAnalytics}R Documentation

calculate Sortino Ratio of performance over downside risk

Description

Sortino proposed an improvement on the Sharpe Ratio to better account for skill and excess performance by using only downside semivariance as the measure of risk.

Usage

SortinoRatio(R, MAR = 0)

Arguments

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

Details

Sortino contends that risk should be measured in terms of not meeting the investment goal. This gives rise to the notion of “Minimum Acceptable Return” or MAR. All of Sortino's proposed measures include the MAR, and are more sensitive to downside or extreme risks than measures that use volatility(standard deviation of returns) as the measure of risk.

Choosing the MAR carefully is very important, especially when comparing disparate investment choices. If the MAR is too low, it will not adequately capture the risks that concern the investor, and if the MAR is too high, it will unfavorably portray what may otherwise be a sound investment. When comparing multiple investments, some papers recommend using the risk free rate as the MAR. Practitioners may wish to choose one MAR for consistency, several standardized MAR values for reporting a range of scenarios, or a MAR customized to the objective of the investor.

SortinoRatio=frac{(overline{R_{a} - MAR})}{delta_{MAR}}

where delta_{MAR} is the DownsideDeviation.

Value

Sortino ratio

Author(s)

Brian G. Peterson

References

Sortino, F. and Price, L. Performance Measurement in a Downside Risk Framework. Journal of Investing. Fall 1994, 59-65.

See Also

SharpeRatio
DownsideDeviation
SemiVariance
SemiDeviation
InformationRatio

Examples

data(managers)
SortinoRatio(managers[, 1])
SortinoRatio(managers[, 1:8])

[Package PerformanceAnalytics version 0.9.9-5 Index]