Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to close position on time intervals?
Collapse
X
-
How to close position on time intervals?
How would I close positions on the next 5 minute interval, So I a position opened at 4:45 it will close at 4:50, if opened at 4:54 it will close at 4:55. Is this possible on Ninjatrader 8? If so can someone please show me the code. Thanks for your time and help!Tags: None
-
Hello xNICK,
Thanks for your reply.
A simple way to do this would be an if statement to see that you are in a position (long in this example) and then testing to see if bars close time minute equals a 5 minute interval.
if (Position.MarketPosition == MarketPosition.Long && (Time[0].Minute == 0 || Time[0].Minute == 5 || Time[0].Minute == 10 .... || Time[0].Minute == 55)
{
// exit order here
}
Alternately, you can use the "%" operator which in C# computes the remainder after dividing its first operand by its second operand and code something like:
if (Position.MarketPosition == MarketPosition.Long && (Time[0].Minute % 5 == 0))
{
//exit order here
}
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
50 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
69 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment