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

Open price of the year

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

    #16
    Originally posted by calhawk01 View Post
    how about we try to get the price at 930 on the first day of the year:

    Code:
                if (Times[1][0].DayOfYear == 1 && ToTime(Times[1][0]) == ToTime(9, 30, 0))
                {
                    a = Closes[2][0];
                    b = Closes[1][0];
    
                }

    this compiles but returns zero values.
    January 1 is not a trading day and is not on the chart, so the filtered block will not be entered.

    Comment


      #17
      Originally posted by koganam View Post
      January 1 is not a trading day and is not on the chart, so the filtered block will not be entered.
      koganam Why are you so damn smart?? Haha. Ok i found a solution. I looked back on the calender for the past several years to avoid newyear and the weekend. So day 7 seems to be the best option. Also ... btw... CurrentDayOHL(BarsArray[2]).CurrentOpen[0]... works on both intra and daily bars when used the below code.

      Even though the below works, bc i've manually checked on the # of days. Isn't there a way to retrieve only trading days of the year?

      Code:
          if (Times[1][0].DayOfYear == 7 )
                  {
                      a = CurrentDayOHL(BarsArray[2]).CurrentOpen[0];
                      b = CurrentDayOHL(BarsArray[1]).CurrentOpen[0];
                  }
      Last edited by staycool3_a; 03-28-2015, 06:14 PM.

      Comment


        #18
        Originally posted by calhawk01 View Post
        koganam Why are you so damn smart?? Haha. Ok i found a solution. I looked back on the calender for the past several years to avoid newyear and the weekend. So day 7 seems to be the best option. Also ... btw... CurrentDayOHL(BarsArray[2]).CurrentOpen[0]... works on both intra and daily bars when used the below code.

        Even though the below works, bc i've manually checked on the # of days. Isn't there a way to retrieve only trading days of the year?

        Code:
            if (Times[1][0].DayOfYear == 7 )
                    {
                        a = CurrentDayOHL(BarsArray[2]).CurrentOpen[0];
                        b = CurrentDayOHL(BarsArray[1]).CurrentOpen[0];
                    }
        Bars.GetTradingDayFromLocal(Time[0]);

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by wzgy0920, Yesterday, 09:53 PM
        1 response
        13 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by Rapine Heihei, Yesterday, 07:51 PM
        1 response
        12 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by kaywai, Today, 06:26 AM
        1 response
        6 views
        0 likes
        Last Post kaywai
        by kaywai
         
        Started by ct, 05-07-2023, 12:31 PM
        6 responses
        206 views
        0 likes
        Last Post wisconsinpat  
        Started by kevinenergy, 02-17-2023, 12:42 PM
        118 responses
        2,780 views
        1 like
        Last Post kevinenergy  
        Working...
        X