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 RDTrader16, Today, 10:19 PM
      0 responses
      5 views
      0 likes
      Last Post RDTrader16  
      Started by gemify, 03-08-2023, 08:02 AM
      9 responses
      148 views
      0 likes
      Last Post culpepper  
      Started by elirion, Today, 10:03 PM
      0 responses
      2 views
      0 likes
      Last Post elirion
      by elirion
       
      Started by RaddiFX, Today, 09:55 PM
      0 responses
      10 views
      0 likes
      Last Post RaddiFX
      by RaddiFX
       
      Started by Trader146, 03-29-2024, 01:22 PM
      4 responses
      27 views
      0 likes
      Last Post Trader146  
      Working...
      X