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 tsantospinto, 04-12-2024, 07:04 PM
        7 responses
        126 views
        0 likes
        Last Post aligator  
        Started by futtrader, 04-21-2024, 01:50 AM
        5 responses
        56 views
        0 likes
        Last Post NinjaTrader_Eduardo  
        Started by PeakTry, Today, 10:49 AM
        0 responses
        2 views
        0 likes
        Last Post PeakTry
        by PeakTry
         
        Started by llanqui, Today, 10:32 AM
        0 responses
        5 views
        0 likes
        Last Post llanqui
        by llanqui
         
        Started by StockTrader88, 03-06-2021, 08:58 AM
        45 responses
        3,994 views
        3 likes
        Last Post johntraderuser2  
        Working...
        X