estimateMaxSharpeRatio
Estimate efficient portfolio to maximize Sharpe ratio for Portfolio object
Syntax
Description
Examples
Input Arguments
Output Arguments
More About
Tips
You can also use dot notation to estimate an efficient portfolio that maximizes the Sharpe ratio.
[pwgt,pbuy,psell] = obj.estimateMaxSharpeRatio;
Algorithms
The maximization of the Sharpe ratio is accomplished by either using the
'direct'
or 'iterative'
method. For the 'direct'
method, consider the following
scenario. To maximize the Sharpe ratio is to:
where μ and C are the mean and covariance matrix, and rf is the risk-free rate.
If μT x - rf ≤ 0 for all x the portfolio that maximizes the Sharpe ratio is the one with maximum return.
If μT x - rf > 0, let
and y = tx (Cornuejols [1] section 8.2). Then after some substitutions, you can transform the original problem into the following form,
Only one optimization needs to be solved, hence the name “direct”. The portfolio weights can be recovered by x* = y* / t*.
For the 'iterative'
method, the idea is to iteratively
explore the portfolios at different return levels on the efficient frontier
and locate the one with maximum Sharpe ratio. Therefore, multiple
optimization problems are solved during the process, instead of only one in
the 'direct'
method. Consequently, the
'iterative'
method is slow compared to
'direct'
method.
References
[1] Cornuejols, G. and Reha Tütüncü. Optimization Methods in Finance. Cambridge University Press, 2007.
Version History
Introduced in R2011b
See Also
estimatePortSharpeRatio
| estimateFrontier
| estimateFrontierByReturn
| estimateFrontierByRisk
| setBounds
| setMinMaxNumAssets
Topics
- Estimate Efficient Portfolios for Entire Efficient Frontier for Portfolio Object
- Working with 'Conditional' BoundType, MinNumAssets, and MaxNumAssets Constraints Using Portfolio Objects
- Portfolio Optimization Examples Using Financial Toolbox
- Bond Portfolio Optimization Using Portfolio Object
- Portfolio Optimization Theory
- Choose MINLP Solvers for Portfolio Problems