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 judysamnt7, 03-13-2023, 09:11 AM
        4 responses
        59 views
        0 likes
        Last Post DynamicTest  
        Started by ScottWalsh, Today, 06:52 PM
        4 responses
        36 views
        0 likes
        Last Post ScottWalsh  
        Started by olisav57, Today, 07:39 PM
        0 responses
        7 views
        0 likes
        Last Post olisav57  
        Started by trilliantrader, Today, 03:01 PM
        2 responses
        21 views
        0 likes
        Last Post helpwanted  
        Started by cre8able, Today, 07:24 PM
        0 responses
        10 views
        0 likes
        Last Post cre8able  
        Working...
        X