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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
141 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
80 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
123 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
118 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
97 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment