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 CarlTrading, 03-31-2026, 09:41 PM
          1 response
          47 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          23 views
          0 likes
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          33 views
          1 like
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          50 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          42 views
          0 likes
          Last Post CarlTrading  
          Working...
          X