PerformanceAnalytics (version 2.0.4)

SortinoRatio: 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,
  ...,
  weights = NULL,
  threshold = c("MAR", "mean")[1],
  SE = FALSE,
  SE.control = NULL
)

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

any other passthru parameters

weights

portfolio weighting vector, default NULL

threshold

Parameter to determine whether we use a "MAR" (default) or "mean" threshold.

SE

TRUE/FALSE whether to ouput the standard errors of the estimates of the risk measures, default FALSE.

SE.control

Control parameters for the computation of standard errors. Should be done using the RPESE.control function.

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.

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

Run this code
# NOT RUN {
data(managers)
round(SortinoRatio(managers[, 1]),4)
round(SortinoRatio(managers[, 1:8]),4)

# }

Run the code above in your browser using DataCamp Workspace