It needs to function as follows: a. I have another EA that manages all my running trades this EA needs to work alongside with it, but my existing EA can only detect based on pairs and not lot size. This EA should not conflict with my current EA since I need two to run at the same time. b. This EA must only manage running trades based on "lot size" example USD/JPY (lot size .02 (X) ) <-- it needs to only work on the trades with certain lot size that I set. c. At the same time the EA must not conflict with running trades of the same pair with different lot sizes Example: Output below is an example only the lot size trade management must not be only limited to three, I must be able to set different conditions for different lot sizes , I must be able to set the percentage of partial close also. From EA setting ; For lot size with (.02) move SL (+ or -) to break even when 80 of pips in profit are reached + condition for Partial close (N/A% Value) (Yes or No) = No For lot size with (.05) move SL (+ or -) to break even when 60 of pips in profit are reached + condition for Partial close (30% Value) (Yes or No) = Yes For lot size with (.07) move SL (+ or -) to break even when 30 of pips in profit are reached + condition for Partial close (50% Value) (Yes or No) = Yes Output First running trade USD/JPY lot size (.02) <-- EA must only manage this trade = when 80 pips of profit are met, only set SL to BE (+ or -) and don't do partial close Second running trade USD/JPY lot size (.05) <-- EA must manage this trade = when 60 pips of profit are met, set SL to BE (+ or -) and do a 30% partial close from lot size Third running trade USD/JPY lot size (.07) <-- EA must manage this trade = when 30 pips of profit are met, set SL to BE (+ or -) and do a 50% partial close from lot size Fourth running trade USD/JPY lot size (.09) <-- DO NOT MANAGE THIS TRADE d. EA needs to work without attaching it to charts. e. User interface must be easy to understand, and I can set the lot size and the how many PIPS from BE when X no. of profits are reached.