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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        153 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        89 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        133 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        127 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        107 views
        0 likes
        Last Post CarlTrading  
        Working...
        X