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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        579 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        334 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
        554 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X