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

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 kujista, Today, 06:23 AM
        2 responses
        6 views
        0 likes
        Last Post kujista
        by kujista
         
        Started by f.saeidi, Today, 08:03 AM
        0 responses
        4 views
        0 likes
        Last Post f.saeidi  
        Started by cre8able, 04-17-2024, 04:16 PM
        7 responses
        64 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by Aviram Y, 08-09-2023, 09:04 AM
        11 responses
        299 views
        0 likes
        Last Post arjandezeeuw  
        Started by Christopher Leggit, 02-15-2024, 09:00 AM
        3 responses
        47 views
        0 likes
        Last Post rdtdale
        by rdtdale
         
        Working...
        X