Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Finding the Timestamp for Current Day High

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

    Finding the Timestamp for Current Day High

    Sorry for the post but I am racking my brain trying to figure out how to do this and I think there is an easy way. I know how to get the value for the current day high or low (via the CurrentDayOHL() and I know that the GetBar can return the number of bars ago for a specific time stamp, but I cannot figure out how to retrieve the the time stamp for when the CurrentDayOHL.CurrentHigh[0] occurred (or the time stamp for any other indicator, for that matter)

    I did read the script on Getting indicator values from a specified time but I am still at a loss.

    Thanks for the help,I really appreciate it

    #2
    Hello Eurostoxx trader,

    You'll probably want to look at this reference sample:
    Calculating the highest high or lowest low for a specified time range

    The key value you would want from this sample is startBarsAgo.

    You could then plug this value into HighestBar() lookback period.

    That returns the number of bars ago that the highest high occurred for the lookback. This can go into your Time[ ] index.

    barsAgoHigh = HighestBar(High, startBarsAgo);
    myDateTime = Time[barsAgoHigh];
    Last edited by NinjaTrader_RyanM1; 09-14-2010, 04:10 PM.
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Thanks for the reply, I used the following code to get the session high and it works fine

      Code:
        barsAgoHigh = HighestBar(High, Bars.BarsSinceSession -1);
        myDateTime = Time[barsAgoHigh];

      Comment


        #4
        Excellent. Thanks for sharing your solution. It is definitely a lot simpler.
        Ryan M.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        576 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
        553 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