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 algospoke, Yesterday, 06:40 PM
          2 responses
          23 views
          0 likes
          Last Post algospoke  
          Started by ghoul, Today, 06:02 PM
          3 responses
          15 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by jeronymite, 04-12-2024, 04:26 PM
          3 responses
          46 views
          0 likes
          Last Post jeronymite  
          Started by Barry Milan, Yesterday, 10:35 PM
          7 responses
          23 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by AttiM, 02-14-2024, 05:20 PM
          10 responses
          181 views
          0 likes
          Last Post jeronymite  
          Working...
          X