if (ToTime(Time[0]) == Bars.SessionEnd.TimeOfDay)
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Compare bar time to session end time
Collapse
X
-
Compare bar time to session end time
I am trying to not submit an order at the end of a trading session time (which is set in the strategy Time Frame parameter list). I tried the following if statement but received an error that said I could not compare the two. How would I do this?
if (ToTime(Time[0]) == Bars.SessionEnd.TimeOfDay)Tags: None
-
You may also find this reference sample useful for what you are trying to do: http://www.ninjatrader-support.com/v...ead.php?t=3226Code:if (ToTime(Time[0]) == ToTime(Bars.SessionEnd))
Josh P.NinjaTrader Customer Service
-
Hi,
I tried implementing the code you mentioned above but am getting the following error:
'NinjaTrader.Data.Bars' does not contain a definition for 'SessionEnd' and no extension method 'SessionEnd' accepting a first argument of type 'NinjaTrader.Data.Bars' could be found (are you missing a using directive or an assembly reference?)
Can you please advise? I would like to be able to have my system stop trading before end of day. (Dont want to use 4pm comparison as some sessions end earlier)
Thx
Comment
-
-
With respect, Bertrand, y'all need to correct that link. I've been told that NT7 should not use Bars.SessionBreak but should use Bars.FirstBarOfSession instead.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
144 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
71 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
125 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
79 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment