Hot answers tagged portfolio-selection
8
Minimum variance can be solved simply and efficiently via a quadratic optimizer as the only key input is a covariance matrix.
Drawdown or Sortino cannot be optimized via a covariance matrix unless you assume some functional relationship between co-variances/variances and your risk metric of interest. Likely you'll wind up with a similar portfolio to the ...
3
I would look to run a pre-optimization routine over the whole universe of 200+ ETFs. I would use this pre-optimization to reduce the universe to a cardinality that provides optimal diversification effects. You can do that by first looking at pair-wise correlations and then also run optimizations to reduce portfolio variance by utilizing the covariance ...
3
If you're using Python, you may want to take a look at this question, to which the cvxopt library was the most popular answer.
If not, or if you don't want to use cvxopt, then the basic setup is no different than using mean-variance optimization. You will almost always characterize your problem as a function taking a single vector argument (the portfolio ...
3
Even if some buy side funds are not allowed to short sell it does not mean they must buy. They could long sell, they can do nothing and stand on the sidelines and they can hedge, selling index futures or buy put protection on broad indexes or on the underlying of core holdings. Why this is an important point becomes apparent when you start to think about ...
2
In case anyone is interested, I solved it using Nelder-Mead's algorithm instead. The performance could be better, but I didn't want to waste any more time in it.
Here's the final solution:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Extreme.Statistics;
using Extreme.Mathematics;
using ...
2
There is a simple reason to use prefer $CE$ to pure utility: $CE$ is independent of utility units. Thus it allows direct comparison.
The cash equivalent of a risky portfolio is the certain amount of cash that provides the same utility that portfolio. So for portfolio $w$ we can define $CE$ via $U(CE)=E[U(w)]$ or $CE=U^{-1}(E[U(w)])$. Note that for ...
2
I do not see any advantage in this approach whatsoever, nor would I believe, as you suggested, that "many" use this kind of approach.
In fact I find it horribly wrong. Using a single variable (CE in this case) to represent a non-trivial risk-return construct implies the ability to map such relationship to one variable representations. Everybody values risk ...
1
When I select assets for a portfolio given an universe, I tend to pick ones that span the beta spectrum, given your selected benchmark. I find that if your portfolio of assets have varying volatility or correlation, you can achieve better diversification. I didn't come up with the idea but it comes from a rotational system's framework from the link below:
...
1
First you need to define what you need a risk measure for. It is usually to take a decision, so you have an operational criterion that defines your risk. You should go back at this point and see what is the impact of a change of distribution on it.
Just say for instance that you need a risk measure to take decisions according to a Sharpe ratio and define it ...
Only top voted, non community-wiki answers of a minimum length are eligible

