Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Suppress NinjaTrader Messages

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

    #31
    Has this feature to disable all the myriad of popup messages been implemented? This should be a very easy fix and option for people. Many trades of mine have been disrupted and detrimentally affected by these pop-up messages.

    Comment


      #32
      Hello grayfrog,
      Thank you for your post.

      This feature request has not been implemented within the NinjaTrader platform. You'll find a note regarding your feature request in the release notes when a feature is implemented.Please let us know if we may provide any further assistance.​​
      Adrian B.NinjaTrader Customer Service

      Comment


        #33
        Originally posted by -=Edge=- View Post

        By no means am I recommending this!

        As I'm not exactly sure just how many error message types this will effect..
        (Meaning this likely will effect more than just an order rejection error!)

        But it would be much more efficient to use an add-on script instead of indy/strat..
        This way it auto loads on start-up and only runs when when a window is created..


        Code:
        namespace NinjaTrader.NinjaScript.AddOns
        {
        public class AutoCloseNTErrorWindow : NinjaTrader.NinjaScript.AddOnBase
        {
        protected override void OnStateChange()
        {
        if (State == State.SetDefaults)
        {
        Description = @"Auto Close NTMessage Box Error Windows (Not Recommended)";
        Name = "AutoCloseNTErrorWindow";
        }
        }
        
        protected override void OnWindowCreated(Window window)
        {
        base.OnWindowCreated(window);
        if(window != null && window.GetType().ToString().Equals("NinjaTrader.Gui.NTMessageBox") && window.Title.Contains("Error")) {window.Close(); }
        }
        }
        }

        Be Safe in this Crazy World!
        Wow this was hard to find but the creeping threat of insanity pushed me on as well as a single trade today in a fast-moving NQ creating literally 97 error popups (I counted when closing them) and....

        They should pay you for this!

        Thank you.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by DynamicTest, Yesterday, 11:58 PM
        1 response
        7 views
        0 likes
        Last Post DynamicTest  
        Started by steve257, 12-20-2023, 05:32 AM
        5 responses
        436 views
        0 likes
        Last Post Nothinox  
        Started by javaburnaus, Today, 01:51 AM
        0 responses
        2 views
        0 likes
        Last Post javaburnaus  
        Started by XanderT, Today, 01:27 AM
        0 responses
        5 views
        0 likes
        Last Post XanderT
        by XanderT
         
        Started by anton_tymoshchuk, Today, 01:14 AM
        0 responses
        10 views
        0 likes
        Last Post anton_tymoshchuk  
        Working...
        X