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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
630 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
364 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
566 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
568 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment