Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Check Draw objects for null before removing

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

    Check Draw objects for null before removing

    Hello

    Regarding removing Draw objects drawn by an indicator, when I want to remove an object (i.e. line, arrow, etc), would I have to do the null check before removing it, as in the code below?

    Code:
    if (a > 0 && CurrentBar == RebUpBar[a-1] + 1 && Low[0].ApproxCompare(Low[1]) < 0 && High[0] < High[1] + 5 * TickSize && [COLOR=#B22222]DrawObjects["Rebound Up = " + RebUpBar[a-1]] as DrawingTools.ArrowUp != null[/COLOR])
    {
          RemoveDrawObject("Rebound Up = " + RebUpBar[a-1]);
          RebUpBar.RemoveAt(a-1);
          a--;
    }
    
    Thank you

    #2
    Hello itrader46,

    The RemoveDrawObject method would not specifically need check but if you are using the objects values prior to removing it you would want to make sure you check the object is not null before trying to use it.

    I look forward to being of further assistance.

    Comment


      #3
      So you mean that I don't have to do the null check before removing the objects, but I have to do it before using them after drawing (i.e. trigger an action after drawing an arrow)?

      Comment


        #4
        Hello itrader46,

        I believe you understood correctly, you need to have a null check if you try to access a value the object has, otherwise if you are just removing it that is not needed.

        I look forward to being of further assistance.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        648 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        369 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        108 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        572 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        574 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X