Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
how to skip past sessions when using FirstBarOfSession
Collapse
X
-
but that's not it.
i want the code to run once when OBU() evaluating the first bar of the current session. if i use:
if (Bars.FirstBarOfSession && FirstTickOfBar)
{
// code
}
then the code will run one time for each past session and i want to avoid that.
how do i do that?
Comment
-
Hello savekad,
You can further check for the time too to do it.
If you try the below code then are you able to get the correct values
Code:if (Bars.FirstBarOfSession && this.FirstTickOfBar && Bars.GetTradingDayFromLocal(Time[0]).Date == DateTime.Now.Date) { // do something }JoydeepNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
67 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
36 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
59 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
62 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment