Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OnTermination not called

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    OnTermination not called

    Code:
    protected override void OnTermination()
    	Print("running on termination");
    	strip.Items.Remove(buttonDrop);
    	strip.Items.Remove(thresholdBox);
    	strip.Items.Remove(slopeBox);	
    }
    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?

    #2
    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();
    }

    Comment


      #3
      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


        #4
        Originally posted by habibalex View Post
        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?
        Sometimes you just run into stuff like that where things get gummed up making changes to code.

        I remember something odd when I was developing that code. Old objects were still hanging around.

        Comment


          #5
          Hello habibalex,

          Thanks for your posts.

          There should be no issue with using/adding OnMarketDepth. You may want to restart and test again (I like sledge's description) to clear out any residuals.

          If the issue persists, please contact us at PlatFormSupport[at]Ninjatrader[dot]com

          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 Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          351 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          105 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          560 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          561 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X