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

Access public values in multiframe strategy

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

    Access public values in multiframe strategy

    Hi everybody
    I have a multi frame strategy. I set a variable in the first data series onbarupdate. how can i access that variable in the second data series onbarupdate.


    For example i have a variable named MaxVal.
    in onbarupdate event, if barsinprogress == 1 i set the MaxVal to 3.78.
    i want to read MaxVal in onbarupdate if barsinprogress == 2

    #2
    From your example, it sounds like it should work as you expect.

    The value you assign to MaxVal when BIP == 1 will be retained
    when OBU is called again with BIP == 2. Therefore, just access
    MaxVal normally when BIP == 2 ...

    EDIT:
    That is, as long as MaxVal is a class variable, and not defined
    as a local variable inside OBU itself.


    Give it a try, report back with any errors.

    Comment


      #3
      Should i declare the variable as static?

      Comment


        #4
        Originally posted by amiralimadadi View Post
        Should i declare the variable as static?
        No, just define it as private variable for the class.

        Comment


          #5
          Hello amiralimadadi,

          Thank you for your note.

          You could declare the variable within the class, for example private in x=0.

          I have attached a screen shot of how you’d set this up.

          Please let us know if you need further assistance.
          Attached Files
          Alan P.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by RookieTrader, Today, 09:37 AM
          3 responses
          15 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by kulwinder73, Today, 10:31 AM
          0 responses
          5 views
          0 likes
          Last Post kulwinder73  
          Started by terofs, Yesterday, 04:18 PM
          1 response
          23 views
          0 likes
          Last Post terofs
          by terofs
           
          Started by CommonWhale, Today, 09:55 AM
          1 response
          4 views
          0 likes
          Last Post NinjaTrader_Erick  
          Started by Gerik, Today, 09:40 AM
          2 responses
          7 views
          0 likes
          Last Post Gerik
          by Gerik
           
          Working...
          X