When trading forex, I noticed that the Bars.BarsSinceSession returns a value of 1 at the start of the new trading session (5pm EST) but also at 12:00 midnight.. Is there any way to solve this? I'm only interested in the 5pm EST point in time.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
BarsSinceSession
Collapse
X
-
BarsSinceSession
Hi,
When trading forex, I noticed that the Bars.BarsSinceSession returns a value of 1 at the start of the new trading session (5pm EST) but also at 12:00 midnight.. Is there any way to solve this? I'm only interested in the 5pm EST point in time.Tags: None
-
I am using the Forex template with the following settings:

It happens on all forex pairs.
When I enter the following code within the OnBarUpdate() statement I get the results:
7/1/2015 5:02:00 PMCode:if(Bars.FirstBarOfSession) { Print(Time[0].ToString()); }
7/1/2015 5:30:00 PM
I know there is a non-tradeable period between 5pm and 5:30pm but I would think the session is marked at 5pm.Last edited by siroki; 07-06-2015, 01:21 PM.
Comment
-
Hello,
Thanks for your reply.
I used:
At first I too had a print at Midnight on some days. I then reloaded all historical data and that cleared up the issue. Please try reloading your historical data and testing again.Code:if(Bars.FirstBarOfSession && FirstTickOfBar) { Print(Time[0].ToString()); }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
160 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
348 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
178 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment