Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 geddyisodin, Today, 05:20 AM
        0 responses
        1 view
        0 likes
        Last Post geddyisodin  
        Started by JonesJoker, 04-22-2024, 12:23 PM
        6 responses
        32 views
        0 likes
        Last Post JonesJoker  
        Started by GussJ, 03-04-2020, 03:11 PM
        12 responses
        3,239 views
        0 likes
        Last Post Leafcutter  
        Started by AveryFlynn, Today, 04:57 AM
        0 responses
        5 views
        0 likes
        Last Post AveryFlynn  
        Started by RubenCazorla, 08-30-2022, 06:36 AM
        3 responses
        79 views
        0 likes
        Last Post PaulMohn  
        Working...
        X