In my strategy I want to enter a position with 2 contracts, have the first exit early and the 2nd remain in the market longer. The exit of the 2nd will be dependant on the 1st. How would one go about first separating 2 entries that fire according the same conditions and then causing the exit of the 2nd to be dependant on the first? Any suggestions?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Linking entries
Collapse
X
-
Linking entries
Hello,
In my strategy I want to enter a position with 2 contracts, have the first exit early and the 2nd remain in the market longer. The exit of the 2nd will be dependant on the 1st. How would one go about first separating 2 entries that fire according the same conditions and then causing the exit of the 2nd to be dependant on the first? Any suggestions?Tags: None
-
CaptainAmericaXX, in order to scale out of a position, you will need to first scale into it.
You can do this by submitting two orders at the same time from the same conditions:
As for exiting the second position after the first, you will need to keep track of when you want to exit and then submit the orders at the appropriate time, or you can track the executions and look for the exits in OnExecution() or OnOrderUpdate().Code:if (entry conditions == true) { EnterLong(1, "long entry 1"); EnterLong(1, "long entry 2"); }AustinNinjaTrader Customer Service
-
Hello,
Thank you for the response to my question.
This is what I have so far on that issue:
if (condition == true)
{
IOrder order1 = EnterShort(DefaultQuantity, "order1");
IOrder order2 = EnterShort(DefaultQuantity, "order2");
}
Pretty simple. Unfortunately as order1 is coming back valid, order2 is coming back null. Any idea why order2 wouldn't work?
Thanks
Comment
-
I hate it when I forget simple things. I added the Unique entries. That fixed it. Thanks for the help.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
579 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

. Glad to help.
Comment