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 usazencort, Today, 01:16 AM
      0 responses
      1 view
      0 likes
      Last Post usazencort  
      Started by kaywai, 09-01-2023, 08:44 PM
      5 responses
      603 views
      0 likes
      Last Post NinjaTrader_Jason  
      Started by xiinteractive, 04-09-2024, 08:08 AM
      6 responses
      22 views
      0 likes
      Last Post xiinteractive  
      Started by Pattontje, Yesterday, 02:10 PM
      2 responses
      20 views
      0 likes
      Last Post Pattontje  
      Started by flybuzz, 04-21-2024, 04:07 PM
      17 responses
      230 views
      0 likes
      Last Post TradingLoss  
      Working...
      X