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 ScottWalsh, 04-16-2024, 04:29 PM
        7 responses
        34 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by cls71, Today, 04:45 AM
        0 responses
        5 views
        0 likes
        Last Post cls71
        by cls71
         
        Started by mjairg, 07-20-2023, 11:57 PM
        3 responses
        214 views
        1 like
        Last Post PaulMohn  
        Started by TheWhiteDragon, 01-21-2019, 12:44 PM
        4 responses
        547 views
        0 likes
        Last Post PaulMohn  
        Started by GLFX005, Today, 03:23 AM
        0 responses
        3 views
        0 likes
        Last Post GLFX005
        by GLFX005
         
        Working...
        X