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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      596 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      343 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      556 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      554 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X