I have a problem trying to find portfolio weights and optimise them while satisfying constraints. I require some help on designing a code that would allow me to simulate multiple arrays of weights while satisfying a range of constraints, please see example below for an explanation:
Problem - simulate various weights while satisfying constraints:
Instruments = ['Fixed Income', 'Equity 1', 'Equity 2', 'Multi-Asset', 'Cash']
Constraints:
- each weight between 0.1 and 0.4
- cash = 0.05
- Equity 1 less than 0.3
At the moment I have code:
import numpy as np:
instruments = ['Fixed Income', 'Equity 1', 'Equity 2', 'Multi-Asset', 'Cash']
weights = np.random.uniform(0.1, 0.4, len(instruments)) # random number generation
weights = weights / weights.sum() # normalise weights
# I have done test runs, and normalised weights always fit the constraints
if weights[-1] > 0.03:
excess = weights[-1] - 0.03
# distribute excess weights equally
weights[:-1] = weights[:-1] + excess / (len(weights) - 1)
and I'm stuck, I also realised that when I distribute the excess weights I have effectively broken my constraint.
Is there anyway to do it? and I have to do it via monte-carlo
Thanks everyone for your help.
Here is one solution:
This solution is performant, but discards generated examples that don't satisfy the constraints.