Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 cmtjoancolmenero, Yesterday, 03:58 PM
    11 responses
    39 views
    0 likes
    Last Post cmtjoancolmenero  
    Started by FrazMann, Today, 11:21 AM
    0 responses
    5 views
    0 likes
    Last Post FrazMann  
    Started by geddyisodin, Yesterday, 05:20 AM
    8 responses
    52 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by DayTradingDEMON, Today, 09:28 AM
    4 responses
    26 views
    0 likes
    Last Post DayTradingDEMON  
    Started by George21, Today, 10:07 AM
    1 response
    22 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Working...
    X