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

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.
    JesseNinjaTrader Customer Service

    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.
        JesseNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by GussJ, 03-04-2020, 03:11 PM
        11 responses
        3,229 views
        0 likes
        Last Post xiinteractive  
        Started by andrewtrades, Today, 04:57 PM
        1 response
        14 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by chbruno, Today, 04:10 PM
        0 responses
        7 views
        0 likes
        Last Post chbruno
        by chbruno
         
        Started by josh18955, 03-25-2023, 11:16 AM
        6 responses
        441 views
        0 likes
        Last Post Delerium  
        Started by FAQtrader, Today, 03:35 PM
        0 responses
        12 views
        0 likes
        Last Post FAQtrader  
        Working...
        X