1. You can load your Portfolio Expert in EA Studio and recalculate it with the newer data.
Then remove the strategies you don't like and export the Portfolio again.
2. You can remove the strategies from the code.
The strategies are set in the "SetSignals" function and look like that:
/*STRATEGY CODE {"properties":{"entryLots":0.1,"tradeDirectionMode":0,"oppositeEntrySignal":0, ... */
signalList[i++] = GetExitSignal_039();
signalList[i++] = GetEntrySignal_039();
/*STRATEGY CODE {"properties":{"entryLots":0.1,"tradeDirectionMode":0,"oppositeEntrySignal":0, ... */
signalList[i++] = GetExitSignal_040();
signalList[i++] = GetEntrySignal_040();
/*STRATEGY CODE {"properties":{"entryLots":0.1,"tradeDirectionMode":0,"oppositeEntrySignal":0, .. */
signalList[i++] = GetExitSignal_041();
signalList[i++] = GetEntrySignal_041();
Important: The index in the code is equal to the magic number index - 1.
If you want to delete the strategy with a magic number 100000040, delete the /*STRATEGY CODE line and the functions with index 39:
/*STRATEGY CODE {"properties":{"entryLots":0.1,"tradeDirectionMode":0,"oppositeEntrySignal":0, ... */
signalList[i++] = GetExitSignal_039();
signalList[i++] = GetEntrySignal_039();
EA Studio imports a strategy by its "/* STRATEGY CODE". If you delete this line from the MQL file, the strategy will not be imported.
I'm thinking of a simple editor that will do it easier.