Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        559 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        324 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        546 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        547 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X