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 cmoran13, 04-16-2026, 01:02 PM
    0 responses
    36 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    23 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    162 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    96 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    152 views
    2 likes
    Last Post CaptainJack  
    Working...
    X