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 bortz, 11-06-2023, 08:04 AM
        47 responses
        1,604 views
        0 likes
        Last Post aligator  
        Started by jaybedreamin, Today, 05:56 PM
        0 responses
        8 views
        0 likes
        Last Post jaybedreamin  
        Started by DJ888, 04-16-2024, 06:09 PM
        6 responses
        18 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by Jon17, Today, 04:33 PM
        0 responses
        4 views
        0 likes
        Last Post Jon17
        by Jon17
         
        Started by Javierw.ok, Today, 04:12 PM
        0 responses
        13 views
        0 likes
        Last Post Javierw.ok  
        Working...
        X