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 kempotrader, Today, 08:56 AM
        0 responses
        7 views
        0 likes
        Last Post kempotrader  
        Started by kempotrader, Today, 08:54 AM
        0 responses
        4 views
        0 likes
        Last Post kempotrader  
        Started by mmenigma, Today, 08:54 AM
        0 responses
        2 views
        0 likes
        Last Post mmenigma  
        Started by halgo_boulder, Today, 08:44 AM
        0 responses
        2 views
        0 likes
        Last Post halgo_boulder  
        Started by drewski1980, Today, 08:24 AM
        0 responses
        4 views
        0 likes
        Last Post drewski1980  
        Working...
        X