Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Change Plot to only see current

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

    Change Plot to only see current

    Hi, I'm altering an indicator so it plots only the data from the currentbar. I don't want to see the plots from the previous bars.

    Is RemoveDrawObjects(); the best way to accomplish this?

    What's the usual logic for this? Do you use a timestamp reference or can I say something like

    if Currentbar > 1
    RemoveDrawObjects();

    #2
    Hello stockgoblin,
    RemoveDrawObject will remove a drawing object and not a Plot/Data Series.

    You can simply reset the Plot values. For example if you have a Plot named Plot0 then you can use the below code to reset it so that only the first value will be visible

    Code:
    if (CurrentBar > 1) Plot0.Reset(1);
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Hey Thanks

      I don't see the Plots being named, just:

      Add(new Plot(Color.FromKnownColor(KnownColor.Blue), PlotStyle.Line, "Upper"));
      Add(new Plot(Color.FromKnownColor(KnownColor.Blue), PlotStyle.Line, "Lower"));
      Overlay = true;

      Is there a default that goes too?

      Comment


        #4
        Oh, Upper and Lower, Okay, I got it, thanks!

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        149 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        84 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        129 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        125 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        102 views
        0 likes
        Last Post CarlTrading  
        Working...
        X