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