How do i keep the evalutions of the condtions from even being looked at until after the trading time window opens
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Trigger outside Trading Times set
Collapse
X
-
Trigger outside Trading Times set
I have an issue trying to figure out Why or what I need to do so solve this issue. I have a trading start time and a trading stop time. My conditions are meet prior to the trading time window. The orders are held until the trading time window is reached and then sent.
How do i keep the evalutions of the condtions from even being looked at until after the trading time window opensTags: None
-
Hello DTSSTS,
Thank you for your note.
You could check the times before processing other items and if it's not within that time period, return so nothing else is processed until you're in that window. So, something like:
if (Time[0] > MyStartTime && Time[0] < MyEndTime)
{
//your logic goes here
}
else
{
return;
}
This would keep other conditions in your logic from being checked unless the time is within your defined period.
Please let us know if we may be of further assistance to you.
-
that is what i am doing on the conditions area that is checked to send orders, but i am not doing that in the areas that some of rules (other conditions) are checked to see if there respective logic is true.
SO YOU ARE SAYING i need the time code on every area rules or logic is being considered/checked
thanks
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
71 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
143 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
76 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
47 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
51 views
0 likes
|
Last Post
|

Comment