Announcement

Collapse
No announcement yet.

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.

    Comment


      #3
      Thank for the welcome and the replay !

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      134 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      75 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      119 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      114 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      90 views
      0 likes
      Last Post CarlTrading  
      Working...
      X