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 Mindset, 04-21-2026, 06:46 AM
      0 responses
      102 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      144 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      71 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      125 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      79 views
      0 likes
      Last Post PaulMohn  
      Working...
      X