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 Barry Milan, Today, 10:35 PM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by WeyldFalcon, 12-10-2020, 06:48 PM
        14 responses
        1,428 views
        0 likes
        Last Post Handclap0241  
        Started by DJ888, Yesterday, 06:09 PM
        2 responses
        9 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by jeronymite, 04-12-2024, 04:26 PM
        3 responses
        40 views
        0 likes
        Last Post jeronymite  
        Started by bill2023, Today, 08:51 AM
        2 responses
        16 views
        0 likes
        Last Post bill2023  
        Working...
        X