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 Hwop38, 05-04-2026, 07:02 PM
          0 responses
          173 views
          0 likes
          Last Post Hwop38
          by Hwop38
           
          Started by CaptainJack, 04-24-2026, 11:07 PM
          0 responses
          328 views
          0 likes
          Last Post CaptainJack  
          Started by Mindset, 04-21-2026, 06:46 AM
          0 responses
          252 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by M4ndoo, 04-20-2026, 05:21 PM
          0 responses
          354 views
          0 likes
          Last Post M4ndoo
          by M4ndoo
           
          Started by M4ndoo, 04-19-2026, 05:54 PM
          0 responses
          181 views
          0 likes
          Last Post M4ndoo
          by M4ndoo
           
          Working...
          X