Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Getting yesterday prices

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

    Getting yesterday prices

    Currently I am using

    priorClosePrice = PriorDayOHLC().PriorClose[0];

    to get the yesterday last transaction price. However some instruments have their orices disseminated until 16:15. For theses cases I want to get yesterday transaction price at 16:00.
    How can I do this?

    #2
    Originally posted by dafonseca View Post
    Currently I am using

    priorClosePrice = PriorDayOHLC().PriorClose[0];

    to get the yesterday last transaction price. However some instruments have their orices disseminated until 16:15. For theses cases I want to get yesterday transaction price at 16:00.
    How can I do this?
    Code:
    double CloseAt1600 = Close[Bars.GetBar(Time[0].Date.AddDays(-1).Add(new TimeSpan(16, 0, 0)))];

    Comment


      #3
      when using your fornula I am getting the 16.00 price of the day before tomorrow.
      What is wrong?

      Comment


        #4
        Originally posted by dafonseca View Post
        when using your fornula I am getting the 16.00 price of the day before tomorrow.
        What is wrong?
        Sorry, I got confused again with the documented "Bars.GetBar()" and the undocumented "GetBar()"

        You can use either:
        Code:
        double CloseAt1600 = Close[CurrentBar - Bars.GetBar(Time[0].Date.AddDays(-1).Add(new TimeSpan(16, 0, 0)))];
        or else
        Code:
        double CloseAt1600 = Close[GetBar(Time[0].Date.AddDays(-1).Add(new TimeSpan(16, 0, 0)))];
        Remember that the second, seemingly more intuitive version is not documented, and, therefore, ipso facto unsupported.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        633 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        364 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        105 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        567 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        568 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X