I have a script that has 4 independent modules, each one can trigger a buy or sell order. Reading how NT manages orders, I struggle to know which is the more efficient and simple way to manage the dynamic right "balance" of position through orders. I'll explain this better with following situations:
1. Imagine each one of the 4 modules triggers a 100K EURUSD Buy orders, in order to open and keep the position of 400K, I had to set 4 orders X 100K each, so, in order to do this, is it good enough just allowing 4 entries for that script and setting four separated EnterLong() instructions? or just allowing 1 entry but identifying each one of that orders with a different SignalName?
2. Now imagine that the situation has changed, now I got 3 Long position Vs 1 Short position, in order to get and keep the new balance of 200K, which would the best method to do this? :
A) just allowing 4 entries in the script and setting these orders
EnterLong(100000);
EnterLong(100000);
EnterLong(100000);
EnterShort(100000):
B) just allowing 1 entry in the scrip but setting the orders
EnterLong(100000, "mod 1")
EnterLong(100000, "mod 2")
EnterLong(100000, "mod 3")
EnterShort(100000, "mod 4")
Thanks

Comment