Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

FirstBarOfSession and Multi-Time Frame Scripts

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

    FirstBarOfSession and Multi-Time Frame Scripts

    Hi guys

    im looking at the first bar of a session in a multi time series script where the secondary series is tick or volume based, using historical data.

    Is there some quick way i can flag that the first bar of today's session for ANY timeframe has been processed - thanks.

    Code:
    Initialize(){
    Add(PeriodType.Tick, 100);
    CalculateOnBarClose = false;
    }
    
    Update(){
    if (BarsInProgress == 0 && Bars.FirstBarOfSession)
    {//Blah0}
    
    if (BarsInProgress == 1 && Bars.FirstBarOfSession)
    {//Blah1}
    }
    Last edited by Zzoom; 02-21-2015, 02:25 AM.

    #2
    Sorted myself out - had to get out of trading mode and back into coding mode!

    Thanks

    Code:
    int  sessionStarted = 0;
    ......
    if (BarsInProgress == 0 && Bars.FirstBarOfSession  && sessionStarted != ToDay(Time[0]))
                {
                    sessionStarted = ToDay(Time[0]);
                    Print(BarsInProgress + " " + Time[0]); 
                }
    if (BarsInProgress == 1 && Bars.FirstBarOfSession && sessionStarted != ToDay(Time[0]))
                {
                    sessionStarted = ToDay(Time[0]);
                    Print(BarsInProgress + " " + Time[0]); 
                }
    Last edited by Zzoom; 02-21-2015, 02:30 AM.

    Comment


      #3
      Zzoom,

      Thank you for the update.

      Glad you were able to resolve it
      Cal H.NinjaTrader Customer Service

      Comment


        #4
        In fact, this still caused issues under certain circumstances.

        Resorted to doing a raw new session count for each time series and comparing the two as I went along.

        Regards.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        566 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        330 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        547 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        548 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X