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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
161 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
309 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
349 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment