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 Hwop38, 05-04-2026, 07:02 PM
        0 responses
        173 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        328 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        252 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        354 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        181 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X