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

Remove ALL drawings from chart via script

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

    Remove ALL drawings from chart via script

    Hi, there is still no way to delete ALL drawings via script. Those drawn by a strategy or indicator can be deleted via RemoveDrawObjects(), but those drawn by hand by the user remain, unfortunately.
    sidlercom80
    NinjaTrader Ecosystem Vendor - Sidi Trading

    #2
    Hi sidlercom80,
    You can set a Hotkey like "Ctrl + Delete" and after just press "Enter" in the dialog box. It is a quick way to remove all your drawings made manually.
    You can set this Hotkey going to "Control Center" > "Tools" > "Hotkeys" > "Chart" > "Drawing" > "Remove drawing objects"

    Nice Trading!

    Comment


      #3
      Hello sidlercom80,

      Thanks for your question, and thanks for your suggestion joselube001!

      As an unsupported tip, you could try invoking the RemoveAllDrawingObjects command programmatically.

      Please note that a dispatcher would be used to properly execute the command.

      Code:
      ChartControl.Dispatcher.InvokeAsync(new Action(() => {
          NinjaTrader.Gui.Chart.ChartDrawingToolCommands.RemoveAllDrawingObjects.Execute(null);
      }));
      JimNinjaTrader Customer Service

      Comment


        #4
        Thank you both, super tip from _Jim, very helpful!.
        sidlercom80
        NinjaTrader Ecosystem Vendor - Sidi Trading

        Comment


          #5
          sidlercom80

          It has already been done by the mahToolBar6 indicator that places a buttons in main toolbar. You can One-Click the button (Trash) to delete all user drawn objects on the chart. Here:

          https://ninjatraderecosystem.com/use...-mahtoolbar-2/

          Cheers!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by ScottWalsh, 04-16-2024, 04:29 PM
          7 responses
          34 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by cls71, Today, 04:45 AM
          0 responses
          5 views
          0 likes
          Last Post cls71
          by cls71
           
          Started by mjairg, 07-20-2023, 11:57 PM
          3 responses
          214 views
          1 like
          Last Post PaulMohn  
          Started by TheWhiteDragon, 01-21-2019, 12:44 PM
          4 responses
          547 views
          0 likes
          Last Post PaulMohn  
          Started by GLFX005, Today, 03:23 AM
          0 responses
          3 views
          0 likes
          Last Post GLFX005
          by GLFX005
           
          Working...
          X