Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Next Bar Date

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

    Next Bar Date

    Hello,

    I am using a strategy with a primaray (Daily) and secondary (minute) bar chart.
    I want to know during the current day/bar, what will be the next trading day date. I am unable to find out how to get this :-(

    Can someone help ?

    Thanks

    #2
    Hello guilhem, thanks for writing in.

    You can use a SessionIterator object to find the next trading session, see GetNextSession here:


    There is an example on that page, and also a working example in the platform called "PriorDayOHLC".

    Please let me know if you have any questions on this material.

    Comment


      #3
      Thanks Chris

      I did see this and tried to use it but when i Print(iter.getnextsessoin(Time[0], true))
      I get a True... That's nice but I d rather get a date :-)

      Could you show me how to get the date ?

      Thansk as always for the great support

      Comment


        #4
        Hello guilhem, thanks for your reply.

        The main SessionIterator page has a full example of using SessionIterator:

        https://ninjatrader.com/support/help...oniterator.htm

        GetNextSession returns true if it's able to successfully calculate the trading session, to get the actual DateTimes, you would do this after calling GetNextSession:

        DateTime tradingDay = sessionIterator.ActualTra dingDayExchange;
        DateTime beginTime = sessionIterator.ActualSessionBegin;
        DateTime endTime = sessionIterator.ActualSessionEnd;.

        A more straight forward way would be to simply add a day to today's date e.g.

        var today = Time[0];
        var tomorrow = today.AddDays(1);

        Please let me know if I can assist any further.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by NullPointStrategies, Yesterday, 05:17 AM
        0 responses
        62 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        134 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        75 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        45 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        50 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X