I would like to add code to my strategy to trade the overnight session only. Using an if statement I can start trading if ToTime(Time[0]) >= 150000. So starting at 3pm Pacific Time. But how would I code it to keep trading until 630 am pacific the following day? If I use ToTime(Time[0]) < 063000 it would reference the morning of the current day and never trade?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Function to Trade the Overnight Session Only
Collapse
X
-
Function to Trade the Overnight Session Only
Hi,
I would like to add code to my strategy to trade the overnight session only. Using an if statement I can start trading if ToTime(Time[0]) >= 150000. So starting at 3pm Pacific Time. But how would I code it to keep trading until 630 am pacific the following day? If I use ToTime(Time[0]) < 063000 it would reference the morning of the current day and never trade?Tags: None
-
Hello wooofad,
You can have two conditions in the set encapsulated by parenthesis.
if ( (condition 1 && condition 2) || (condition 3 && condition 4) )
if ( (bar time is above this time and below this time) OR (bar time is above this other time and some other time))Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
54 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
130 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
72 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
44 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment