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 cls71, Today, 04:45 AM
        0 responses
        1 view
        0 likes
        Last Post cls71
        by cls71
         
        Started by mjairg, 07-20-2023, 11:57 PM
        3 responses
        213 views
        1 like
        Last Post PaulMohn  
        Started by TheWhiteDragon, 01-21-2019, 12:44 PM
        4 responses
        544 views
        0 likes
        Last Post PaulMohn  
        Started by GLFX005, Today, 03:23 AM
        0 responses
        3 views
        0 likes
        Last Post GLFX005
        by GLFX005
         
        Started by XXtrader, Yesterday, 11:30 PM
        2 responses
        12 views
        0 likes
        Last Post XXtrader  
        Working...
        X