Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

First Bar Painted

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

    First Bar Painted

    Hi,
    I am trying to get the time stamp of the first bar of a data series. I realize that I can use
    Code:
    ChartControl.FirstTimePainted
    and this works fine. However, how can I get the time stamp of the first bar for a series that is not being charted but rather is being added as a secondary series via AddSeries?

    #2
    Hello Zeos6,

    Thanks for opening the thread.

    This would involve referencing the Times[][] Series for the BarsInProgress of that data series and using the CurrentBars[] value of that data series as the barsAgo reference.

    Code:
    protected override void OnBarUpdate()
    {
    	if(CurrentBars[1] < 1)
    		return;
    	if(BarsInProgress == 0)
    		Print(Times[1][CurrentBars[1]]);
    }
    Times - https://ninjatrader.com/support/help...ries_times.htm

    CurrentBars - https://ninjatrader.com/support/help...urrentbars.htm

    Please let me know if this does not resolve your inquiry.

    Comment


      #3
      Thanks for the reply Jim, but ...
      This doesn't answer the question. I asked for the time stamp of the first painted bar of the series.

      EDIT:
      Bars.GetTime(0) will get me the time stamp of the first bar on the chart.
      Last edited by Zeos6; 10-04-2017, 03:25 PM.

      Comment


        #4
        Hello Zeos6,

        I guess I am confused by your inquiry.

        A secondary series which is not drawn on a chart would not have a first bar painted.

        Could you provide more detail to what you are trying to accomplish?

        EDIT: I see that you have updated your post and resolved your inquiry. If there is something else you would like to address, please don't hesitate to bump this thread.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        599 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        344 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        558 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        557 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X