I have a simple strategy I would like to implement via a strategy (not an ATM).
In my strategy I enter the trade with 3 different take profit targets and one stop-loss.
Per my understanding I need to use 3 orders in order to implement this strategy.
My broker commissions depend on the stock quantities I trade. For the sake of simplicity let assume my commissions are:
1 cent per stock for quantify <= 100
1/2 cent per stock for quantify >100
My Questions:
1. If I use the "managed approach" for writing a strategy, will my commission be 300 cents in case I stopped out (i.e. 100*3. This, since there are three different S.L orders, each for 100 stocks)? or does NT aggregate the SL of the three orders (i.e. in that case my lose would be 200 cents (100 cent + 0.5*200).
2. Is the only alternative to overcome this issue is by using the "Unmanaged approach" for writing this strategy? (Though this introduces other programmatic complexity)?
Is there any other alternative?
I'd appreciate your comments
Ron

Comment