Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw Objects bound to indicator

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

    Draw Objects bound to indicator

    I programming an indicator that places draw objects and I need to be able to manually delete items after the indicator lays them down.

    In 6 I can do this. In 7 the only thing I can do is remove the whole indicator.

    Got a fix for this?

    #2
    goldfly, you could add to the Initialize -

    Code:
     
    AllowRemovalOfDrawObjects = true;

    Comment


      #3
      Got it. Thanks.

      Comment


        #4
        I spoke a little to soon. Deleting is fine. But what about moving?

        I have to open the properties and deselect the Lock checkbox.

        Not devestating, but certainly inconvenient. Got a trick for that?



        Oh yeah, and the ability to change the tag might prove useful.

        Comment


          #5
          You will need to work with the IDrawObject itself in your code and turn Locked to false. Likewise for changing tags.

          ILine someLine= DrawLine(....);
          someLine.Locked = false;

          Something like that.
          Josh P.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          601 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          347 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          103 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          559 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          558 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X