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 Haiasi, 04-25-2024, 06:53 PM
        2 responses
        17 views
        0 likes
        Last Post Massinisa  
        Started by Creamers, Today, 05:32 AM
        0 responses
        5 views
        0 likes
        Last Post Creamers  
        Started by Segwin, 05-07-2018, 02:15 PM
        12 responses
        1,786 views
        0 likes
        Last Post Leafcutter  
        Started by poplagelu, Today, 05:00 AM
        0 responses
        3 views
        0 likes
        Last Post poplagelu  
        Started by fx.practic, 10-15-2013, 12:53 AM
        5 responses
        5,408 views
        0 likes
        Last Post Bidder
        by Bidder
         
        Working...
        X