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

Where do i place some variables ?

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

    Where do i place some variables ?

    Hello,
    when some variables are only to be initiated once; before the "on bar update"; where are they to be set ?
    And is this true for all types of variables ?

    #2
    Hi mate41,

    Best practice here is to declare all variables in the Variables region.

    For actions you want to take only once before OnBarUpdate(), there is dedicated handler OnStartup()
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      RyanM,
      mm.... seems doesn't work:
      protected override void OnStartUp()
      {
      sess_Open = CurrentDayOHL().CurrentOpen[0];
      }
      sess_Open as a variable(double) under Variables.

      Comment


        #4
        OnStartup() is called before OnBarUpdate() so you do not have access to bar objects there.

        If you're trying to access indicator or bar values, will need to access in OnBarUpdate().
        Ryan M.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by burtoninlondon, Today, 12:38 AM
        0 responses
        5 views
        0 likes
        Last Post burtoninlondon  
        Started by AaronKoRn, Yesterday, 09:49 PM
        0 responses
        14 views
        0 likes
        Last Post AaronKoRn  
        Started by carnitron, Yesterday, 08:42 PM
        0 responses
        11 views
        0 likes
        Last Post carnitron  
        Started by strategist007, Yesterday, 07:51 PM
        0 responses
        13 views
        0 likes
        Last Post strategist007  
        Started by StockTrader88, 03-06-2021, 08:58 AM
        44 responses
        3,982 views
        3 likes
        Last Post jhudas88  
        Working...
        X