I have two types of absolute value constraints
abs(Xi) <= U
and
sum[abs(Xi)] <= U
which represent the cases where X= w-w0 , w0 denotes the current portfolio weights and w the targeted portfolio weights, so that the amount to be traded is x= w - w0. U is a threshold. Case one limits each individual entry, case two the overall turnover.
My question now is, can I transform these constraint into a linear formulation, case one can be split in positive results and negative results so I can correct the sign but this won't work for case two, or is there a way to mix linear and non-linear constraint and use a convex and socp solver in combination for example?
thanks in advance