Description Usage Arguments Details Author(s) References See Also Examples
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.
1 2 3 4 5 6 7 8 9 |
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 |
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})}{δ_{MAR}}
where
δ_{MAR} is the DownsideDeviation
.
Brian G. Peterson
Sortino, F. and Price, L. Performance Measurement in a Downside Risk Framework. Journal of Investing. Fall 1994, 59-65.
SharpeRatio
DownsideDeviation
SemiVariance
SemiDeviation
InformationRatio
1 2 3 | data(managers)
round(SortinoRatio(managers[, 1]),4)
round(SortinoRatio(managers[, 1:8]),4)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.