protected override void OnTermination()
Print("running on termination");
strip.Items.Remove(buttonDrop);
strip.Items.Remove(thresholdBox);
strip.Items.Remove(slopeBox);
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
OnTermination not called
Collapse
X
-
OnTermination not called
I should be seeing a 'running on termination' in the output window, but I do not see anything. In addition, when the script loads again, it adds extra buttons, since the previous ones were not removed. I do not see any errors in the output window or log tab. I don't think Ontermination is running when I refresh the chart or change the time, how do I fix this?Code:Tags: None
-
You don't mention what you are doing that you expect to see this call?
It works for me when I remove my indicator.
Code:// Important to clean up our resources protected override void OnTermination() { // Cleans up our Timer object Print ( "MyTimer.Dispose" ); MyTimer.Dispose(); }
-
I am just refreshing my chart with the F5 button. I am using OnMarketDepth in the code. When I removed that, then recompiled, and started with a fresh chart, it ran correctly. Then I added OnMarketDepth again, it's working now for some reason. Is there something messed up with adding OnMarketDepth?
Comment
-
Sometimes you just run into stuff like that where things get gummed up making changes to code.Originally posted by habibalex View PostI am just refreshing my chart with the F5 button. I am using OnMarketDepth in the code. When I removed that, then recompiled, and started with a fresh chart, it ran correctly. Then I added OnMarketDepth again, it's working now for some reason. Is there something messed up with adding OnMarketDepth?
I remember something odd when I was developing that code. Old objects were still hanging around.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
605 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
351 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 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
560 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
561 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment