Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Is it possible (adviseable) to display a WindowsForm while running a strategy?
Collapse
X
-
I think that there are race conditions inherent in that approach. I think the safest and least intrusive way is to keep the form in a separate process, that is the only way to guarantee that it's not affecting the threading in NT. Communicating with Win32 locking primatives and shared global memory resources will also safeguard against race conditions. It's a little more work, but the benefit is worth it. I'lll post whatever I come up with.Originally posted by mrlogik View Post
-
I don't know if this helps (I haven't tried opening a window) but these are my experiences with threads:
I've implemented an interface which allows to use MATLAB to run neural networks (I'll post this here once everything is polished). Since the training of a neural network takes quite a while (and even though MATLAB is doing the actual calculations it's still blocking the application), I'm running this in a separate thread. I'm using static volatile variables to sync everything.
So far everything works fine and as expected. They only thing you have to be careful about is to catch any exceptions in your thread as uncaught exception will crash the whole application.
Anyway, I see no reason why a custom thread should not be able to open and manage a window.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
672 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
379 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
111 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
577 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
582 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment