Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

barnumberoforder x 2

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

    barnumberoforder x 2

    Hello,

    I´m using barnumberoforder for cancelling limitentryorder after a certain number of bars. This works fine.

    But when I want to use this for another setup with limitentry, that might be working the same time(!), I dont find a solution. How can I have another "2nd" barnumberoforders for another setup with limitentryorder to start counting from the moment this limit is working?

    I tried to assign another variable but cant find a logic that makes sense.

    Thank you
    Tony

    #2
    Hello Tony,

    You will need a separate variable for each order to track each order separately.

    You could also use an array.

    The logic will likely be the same, just referencing the correct variable name.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Hello Chelsea,

      thank you for your reply. I think I´m not experienced enough in coding to understand what you mean. "BarnumberofOrder" is a certain "vocabular" no? Can I use "BarnumberofOrder2" and doing the same? Will Ninjatrader accept and count "BarnumberorOrder2"? If so, its easy of course. Otherwise I dont know how you mean.

      Thank you!
      Tony

      Comment


        #4
        Hello Tony,

        Yes, BarnumberorOrder2 is a valid name for a variable.

        private int barnumberorOrder2 = 5;
        Print( barnumberorOrder2 );

        You can also use an array.

        private int[] barnumberorOrder = new int[2];
        barnumberorOrder[1] = 5;
        Print( barnumberorOrder[1] );
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        110 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        59 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        37 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        41 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        78 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X