Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Price by timestamp

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

    Price by timestamp

    Hello,

    On a give chart what code would I use to access price at a given timestamp? For example what was the close at 10AM? What was it "exactly 4 hours ago"?

    Thanks

    #2
    Hello Entropy,

    Thank you for your note.

    You can use Bars.GetBar() to get the bar that is 4 hours ago. This will return the bars index value which you can then pass through a price data series such as Open, High, Low, Close

    Code:
    //print close value of bar 4 hours ago
    Print(Close[CurrentBar - Bars.GetBar(new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Date, 10, 0, 0)]);
    http://www.ninjatrader.com/support/h...tml?getbar.htm

    Let me know if I can be of further assistance.
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Thank you!

      How would I access the bar of a given time today, only if it is already past that time today? Assume for example how do I look back at 10AM today only if it's after 10AM?
      Last edited by entropy; 09-16-2014, 07:47 AM.

      Comment


        #4
        Entropy,

        You would test the date time to greater than 10 AM

        There are two ways to do this -
        Code:
        if(ToTime(Time[0]) > ToTime(10,0,0))
        
        OR
        
        if(DateTime.Now > new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Date, 10, 0, 0))
        Cal H.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        154 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        306 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        244 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        345 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        176 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X