Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Start/End of day plot
Collapse
X
-
I just want to ask about the time filter. I have set a strategy to starts at 8:30 am and ends at 2:15pm and the other strategy is being set to starts at 8:30am also but it will ends at 3:30 pm. Now, I am just confused because when strategy 1 shuts off at 2:15pm and what will happen is that the strategy 2 will also shuts off at 2:15 while I have set it to shut off at 3:30. Any idea on this? Thanks in advance.
-
I placed the code like this:
if(Time[0] >= startTime)
{
Print("do something");
}
else if(Time[0] <= endTime )
{
print("-------------------------------------------");
print("strategy 1");
print("time:" +Time[0]);
print("-------------------------------------------");
return;
}
that is inside in the onbarupdate() and the strategy 2 is also the same code.
if(Time[0] >= startTime)
{
Print("do something");
}
else if(Time[0] <= endTime )
{
print("-------------------------------------------");
print("strategy 2");
print("time:" +Time[0]);
print("-------------------------------------------");
return;
}
Comment
-
Hello,
I'm not sure if that code alone will completely filter for the trading times you had set. I'd suggest putting the conditions that the strategy is running in side a time filter/wrapper so that these conditions are only true between your start time and end time.
For an example of this, please see our SampleTimeFilter reference:
MatthewNinjaTrader Product Management
Comment
-
Hello I just want to know the overall function of Disable(); code. If I have two strategies running or enabled and my 1st strategy have the Disable(); code at 2:15 pm. Does the Disable(); code will disable all my enabled strategies at 2:15 pm? Or it will only disable the 1st strategy which have the Disable(); code.
Comment
-
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
581 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
338 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment