I am using a pre-built strategy from ninjatraderecosystem. but it doesn't have a stop loss parameter that I need.
So I tried creating another Stop_Loss_Strategy in the strategy builder:
I gave it an input and used the condition IF the Unrealized PnL is Great Equal to my input => Do the following Exit Long position.
Now I have both strategies running on the chart, but when the condition is met, my Stop_Loss_Strategy execute but it doesn't Exit Long position for the first strategy.
it is like the two strategies are not linked, so they are excuting separately from each other.
How do I make my Stop_Loss_Stragey affect the trades from my first strategy?
Note: my first strategy is based on ninjascript not strategy builder.

Comment