Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Create new thread for each Account.CreateOrder

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

    Create new thread for each Account.CreateOrder

    Hello,

    I am working on a script to submit an order to multiple accounts simultaneously in a loop. i.e.

    foreach (Account myAccount in MyAccoutList)
    {
    submitTheAccount(myAccount);
    }

    Will it be more efficient to start a new thread for each submitTheAccount call like this?

    foreach (Account myAccount in MyAccoutList)
    {
    Thread thread =new Thread(() =>submitTheAccount(myAccount));
    thread.Start();​
    }​

    Which way is recommended?

    #2
    Hello coppernob108,

    Threading is handled internally, we do not suggest using custom threading in Ninjascript to maintain the order of events the platform expects.

    Comment


      #3
      Hi Jesse,

      Thanks for the input.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      43 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      21 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      30 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      50 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      40 views
      0 likes
      Last Post CarlTrading  
      Working...
      X