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

OnStartUP

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

    OnStartUP

    Hi,

    Looking from today's perspective to the history - I would like to find each time the day's high is setting a new high. As I am using it in a 1 minute chart, I was thinking about getting the data once for each chart in the OnStartUp function. I wrote the following code, however I keep getting 0 as the high. What am I doing wrong ?

    my backtest definitions are :
    price based on : Last
    minute
    1

    from 01/01/2016
    until 12/07/2016

    Max bars - infinite
    min bars 205



    protected override void OnStartUp()
    {
    Resistance_Array_Index = 0 ; for (int x = 10; x < 200; x++)
    {

    if ( PriorDayOHLC().PriorHigh[x] > Resistance_Array[1,Resistance_Array_Index])
    {
    Resistance_Array[1,Resistance_Array_Index] = PriorDayOHLC().PriorHigh[x];
    Resistance_Array[0,Resistance_Array_Index] = x;
    Resistance_Array_Index = Resistance_Array_Index + 1 ;

    }
    }
    }

    #2
    Hello dillen,

    Thanks for your post and welcome to the forum!

    The issue is that there are no bars loaded in OnStartUp() so you would need to move your logic into the OnBarUpdate() method.
    Paul H.NinjaTrader Customer Service

    Comment


      #3
      Thank for the welcome and the replay !

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by andrewtrades, Today, 04:57 PM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by chbruno, Today, 04:10 PM
      0 responses
      6 views
      0 likes
      Last Post chbruno
      by chbruno
       
      Started by josh18955, 03-25-2023, 11:16 AM
      6 responses
      436 views
      0 likes
      Last Post Delerium  
      Started by FAQtrader, Today, 03:35 PM
      0 responses
      7 views
      0 likes
      Last Post FAQtrader  
      Started by rocketman7, Today, 09:41 AM
      5 responses
      19 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X