Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

RemoveDrawObject

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

    RemoveDrawObject

    I coded in a strategy DrawArrowUp:

    DrawArrowUp ("ArrowUp" + CurrentBar,0, Low[0] - TickSize * 2, Color.Green);

    and then I want to remove the Arrow if a condition is true.

    if (condition)
    {
    RemoveDrawObject("ArrowUp");
    }

    But it is not working. The arrow stays always on the chart.

    Thank you.

    #2
    Hello Ironman9973,

    Thank you for your post.

    You are including an additional item in the tag; CurrentBar. This needs to be included in the RemoveDrawObject() method.

    Since you may be removing the drawing object after the bar the DrawArrowUp() was placed, you could not include simply RemoveDrawObject("ArrowUp" + CurrentBar);.

    You will either need to use a variable you can track or remove the CurrentBar from the tag.

    You could track the variable with Time[0] (as this is a DataSeries that can be accessed by the bars ago index). You would still need to figure how many bars have passed since the DrawArrowUp() was placed and use that as a variable int that you can call when removing the drawing object.
    Code:
    DrawArrowUp ("ArrowUp" + Time[0],0, Low[0] - TickSize * 2, Color.Green);
    
    if (condition)
    {
    RemoveDrawObject("ArrowUp" + Time[sinceDrawn]);
    }
    Please let me know if you have any questions.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    160 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    308 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    245 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    349 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    179 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X