Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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
          Paul H.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Pattontje, Yesterday, 02:10 PM
          2 responses
          15 views
          0 likes
          Last Post Pattontje  
          Started by flybuzz, 04-21-2024, 04:07 PM
          17 responses
          229 views
          0 likes
          Last Post TradingLoss  
          Started by agclub, 04-21-2024, 08:57 PM
          3 responses
          17 views
          0 likes
          Last Post TradingLoss  
          Started by TradingLoss, 04-21-2024, 04:32 PM
          4 responses
          44 views
          2 likes
          Last Post TradingLoss  
          Started by cre8able, 04-17-2024, 04:16 PM
          6 responses
          57 views
          0 likes
          Last Post cre8able  
          Working...
          X