if(Position.MarketPosition == MarketPosition.Long)
{
SubmitOrderUnmanaged(0,OrderAction.Sell,
OrderType.Market,Position.Quantity,Close[0],Close[0],"","XX");
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Unmanaged version of flatten account
Collapse
X
-
Unmanaged version of flatten account
I have tried using the below for a long position, but it does not work - sometimes leaves the position open.
Code:Tags: None
-
Hello Mindset,
Thank you for your post.
I see you are using a Market order type. In that case, the fields for limitPrice and stopPrice should be set to "0" and not Close[0]. This is noted in the help guide for when the limit order stop price is irrelevant for the order type being submitted:- https://ninjatrader.com/support/help...runmanaged.htm
- "limitPrice - Order limit price. Use "0" should this parameter be irrelevant for the OrderType being submitted."
- "stopPrice - Order stop price. Use "0" should this parameter be irrelevant for the OrderType being submitted."
Let us know if we may be of further assistance.
- https://ninjatrader.com/support/help...runmanaged.htm
-
I suggest adding print statements to your strategy to better understand its behavior. Please also check the Log tab of the Control Center for any error messages. For more information about using prints and other debugging tips, please see the links below:Thank you for your time and patience.Originally posted by Mindset View PostOk I had to reinstall NT8 and now this Market Order ( with 0,0) is not exiting any positions again!
Code:if(Position.MarketPosition == MarketPosition.Long) { SubmitOrderUnmanaged(0,OrderAction.Sell,OrderType.Market,Position.Quantity,0,0,"","XX"); }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
59 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
133 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
73 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
50 views
0 likes
|
Last Post
|

Comment