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 maybeimnotrader, Yesterday, 05:46 PM
        2 responses
        21 views
        0 likes
        Last Post maybeimnotrader  
        Started by adeelshahzad, Today, 03:54 AM
        5 responses
        32 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by stafe, 04-15-2024, 08:34 PM
        7 responses
        32 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by merzo, 06-25-2023, 02:19 AM
        10 responses
        823 views
        1 like
        Last Post NinjaTrader_ChristopherJ  
        Started by frankthearm, Today, 09:08 AM
        5 responses
        22 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Working...
        X