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

Remove draw object line after refresh

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

    Remove draw object line after refresh

    Hi

    I have one property to draw one line.

    I draw the line getting the propierty value in OnBarUpdate when CurrentBar == 0.

    I want to delete all the indicator's line before drawing the line, because when I change the property value and press F5 the line value doesn't refresh.

    Regards

    #2
    Hello davidgamo,

    Thank you for your post.

    Are you changing the value in code or the Indicators menu?

    Comment


      #3
      Hi

      1) I add the indicator, and in the parameteres menu I set the propierty levels = 1953,09;1963,05;

      I click OK button

      Initialize()
      {
      string[] values = levels.Split(new char[] { ';' });
      foreach (string value in values)
      {
      Line line = new Line(new Pen(Color.Red, 2), number, "sr" + (++count));
      Add(line);

      }
      }

      I see the two lines in the chart.

      2) I open the indicator menu again, and in the parameteres I set the propierty levels = 1954,00;

      I click OK button

      But I see the two last lines. I have tried to delete all the lines in the chart, before the code but the Lines.Length = 0

      Regards

      Comment


        #4
        Hello davidgamo,

        Thank you for your response.

        There is no method or function to explicitly remove a line that was created via the Intialize() method. You would need some sort of reset for your array. If you add the lines just using Add() and not the array or for loop you should be able to re-adjust the lines.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by JoMoon2024, Today, 06:56 AM
        0 responses
        6 views
        0 likes
        Last Post JoMoon2024  
        Started by Haiasi, 04-25-2024, 06:53 PM
        2 responses
        17 views
        0 likes
        Last Post Massinisa  
        Started by Creamers, Today, 05:32 AM
        0 responses
        5 views
        0 likes
        Last Post Creamers  
        Started by Segwin, 05-07-2018, 02:15 PM
        12 responses
        1,786 views
        0 likes
        Last Post Leafcutter  
        Started by poplagelu, Today, 05:00 AM
        0 responses
        3 views
        0 likes
        Last Post poplagelu  
        Working...
        X