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 mmckinnm, Today, 01:34 PM
          0 responses
          1 view
          0 likes
          Last Post mmckinnm  
          Started by f.saeidi, Today, 01:32 PM
          0 responses
          1 view
          0 likes
          Last Post f.saeidi  
          Started by traderqz, Today, 12:06 AM
          9 responses
          16 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by kevinenergy, 02-17-2023, 12:42 PM
          117 responses
          2,766 views
          1 like
          Last Post jculp
          by jculp
           
          Started by Mongo, Today, 11:05 AM
          5 responses
          15 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Working...
          X