Thanks for the effort so far.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy freezing NT
Collapse
X
-
trader413, I strongly suspect the while loops you have in your strategy are causing the freeze. Those loops have no exit, thus they are causing an infinite loop, which is why your NinjaTrader is freezing. The EnterShort() is the culprit because the loops aren't started until your position is short.AustinNinjaTrader Customer Service
Comment
-
Your while statements should be if statements. You can also consolidate the 3 if (position = flat) statements into a single if. This is more of a general C# coding question than NinjaTrader specific. While loops are generally used when you don't know how long a loop will run for, then once you get what you're looking for, you break out of the loop. 99.9% of NinjaTrader indicators and strategies should not use while loops.AustinNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
647 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 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
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment