Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Disable Strategy after a certain date
Collapse
X
-
Hello mlarocco,
Are you printing the values used in the condition to confirm the condition is evaluating as true?
Are there labels in your prints to show what each value is?
Is there a print in the action block of the condition set to show the logic is being reached?
Are you calling SetState(Terminated), or CloseStrategy(), or are you calling return to prevent logic execution without disabling the script?
Are you printing the State to confirm the State has not changed?
Please provide the output from the prints saved to a text file and I will be happy to assist with analyzing the output.Chelsea B.NinjaTrader Customer Service
-
I'm really not getting that far. I thought I could use if (DateTime.Now < (some future date/time) but I can't get the syntax correct, it won't compile no matter what I tryOriginally posted by NinjaTrader_ChelseaB View PostHello mlarocco,
Are you printing the values used in the condition to confirm the condition is evaluating as true?
Are there labels in your prints to show what each value is?
Is there a print in the action block of the condition set to show the logic is being reached?
Are you calling SetState(Terminated), or CloseStrategy(), or are you calling return to prevent logic execution without disabling the script?
Are you printing the State to confirm the State has not changed?
Please provide the output from the prints saved to a text file and I will be happy to assist with analyzing the output.
Comment
-
I figured it out, this code works...Originally posted by NinjaTrader_ChelseaB View PostHello mlarocco,
If you are having a compile error you want assistance with, please provide the full error message and the line of code.
if (ToDay(Time[0]) > 20220608)
{
Print ("Strategy is Disabled");
CloseStrategy("Disable");
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
13 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
59 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
41 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
47 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
38 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment