You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Other than maximizing Sharpe ratio of a portfolio, minimizing the portfolio’s maximum drawdown (MDD) would be an interesting objective. While both Sharpe ratio maximization and Markowitz mean-variance portfolio optimization considers variance as risk, MDD minimization considers downside risk only. Considering variance as risk also penalizes upside rewards, which is the reason why the Markowitz portfolio optimization problem is often criticized.
Don’t mind the inequality because we will minimize it in the end. Thus, it doesn’t matter whether it is equality or inequality, but if we use equality constraints, the constraints are not convex.
Note that $\max(\cdot, \cdot)$ is a convex function, indeed, a piece wise linear function. More specifically, it can be broken down into two inequality constraints as:
Note the above maximization problem is also scale invariant with respect to $\mathbf{w}$. Thus, we can use the same technique used in Sharpe ratio maximization also to this problem.
For the size constraint, add either $||\mathbf{y}||_1 \le \kappa$ or $\mathbf{e}^\top\mathbf{y}=\kappa$.
Caution!
When we have more alphas/signals than the time intervals, i.e., $m \ll n$, then there exists more than one weight that make MDD zero. In such case, it is better to use this optimization with any regularization method such as Tikhonov regularization, i.e., adding $\lambda||\mathbf{w}||_2^2$.