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

Private double - how to set default value for more variables at once

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

    Private double - how to set default value for more variables at once

    Hello,

    I have tried all possible resources and did not find answer to the following issue:

    - I have 8 private double variables
    - In protected override void Initialize() I set value of 0 for all of them

    QUESTION: When I get into IF ELSE statement how will I be able to call the value of 0 for all the private double variables at once (without having to copy the whole 8 lines)

    I will appreciate any guidance


    #2
    My apologies to the moderator. This thread was meant to belong into "NinjaTrader 7 - Indicator Development". If possible, please move the thread there.

    Comment


      #3
      It helps if you post text rather than a pic so people can copy/paste for you.

      Just move the variable initialization into a new method:

      Code:
      private void InitializePrvni() {
             firstVariable = 0;
             secondVariable = 0;
      
      }

      then from your Initialize method and from your OnBarUpdate you can just call

      Code:
      InitializePrvni()
      Last edited by kevinenergy; 02-22-2019, 04:11 AM.

      Comment


        #4
        Thank you very much Kevin

        Comment


          #5
          Hello kadan,

          Thanks for your post.

          It looks like you have resolved this item following kevenenergy's input.

          I'll have this thread moved to the NinjaTrader 7 forum for better searching.

          If you have any additional NinjaScript related questions, please do not hesitate to open a new thread.
          JimNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by junkone, Today, 11:37 AM
          1 response
          9 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by frankthearm, Yesterday, 09:08 AM
          11 responses
          41 views
          0 likes
          Last Post frankthearm  
          Started by quantismo, 04-17-2024, 05:13 PM
          5 responses
          35 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by proptrade13, Today, 11:06 AM
          1 response
          6 views
          0 likes
          Last Post NinjaTrader_Clayton  
          Started by love2code2trade, 04-17-2024, 01:45 PM
          4 responses
          34 views
          0 likes
          Last Post love2code2trade  
          Working...
          X