Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

open order

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

    open order

    Is there a function that will tell me if there is an open order (ie, like if I placed a Limit Order that has not been executed yet)?

    I use limit orders and I need my strategy to take an action once a trade opens, and for my purposes, once the order is placed, it is the same as if the trade was opened.

    Thanks,

    Safetrading

    #2
    You can track the state of the order using an IOrder object. This will allow you to see if the limit order is OrderState.Working or OrderState.Filled, and then take action from there.

    MatthewNinjaTrader Product Management

    Comment


      #3
      Safetrading,

      There is also another way of checking for an open order:

      for (inti=0; i<Account.Orders.Count; i++)
      {
      if(Account.Orders[i].Instrument.Id==Instrument.Id&&// checking orders just for your instrument
      Account.Orders[i].OrderState==OrderState.Accepted) // get order in the desired status
      {
      // your logic here
      }
      }

      Hope this helps

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      76 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      45 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      26 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      32 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      62 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X