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

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.
    Chris L.NinjaTrader Customer Service

    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.
        Chris L.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by MacDad, 02-25-2024, 11:48 PM
        7 responses
        158 views
        0 likes
        Last Post loganjarosz123  
        Started by Belfortbucks, Today, 09:29 PM
        0 responses
        6 views
        0 likes
        Last Post Belfortbucks  
        Started by zstheorist, Today, 07:52 PM
        0 responses
        7 views
        0 likes
        Last Post zstheorist  
        Started by pmachiraju, 11-01-2023, 04:46 AM
        8 responses
        151 views
        0 likes
        Last Post rehmans
        by rehmans
         
        Started by mattbsea, Today, 05:44 PM
        0 responses
        6 views
        0 likes
        Last Post mattbsea  
        Working...
        X