The order queue
Working with the order queue
The following methods are available for working with the application queue in the ISecurity interface:
GetBuyQueue (int barNum) - Get the order queue for purchases.
GetSellQueue (int barNum) - Get the order queue for sales.
UpdateQueueData () - Update a cached quotes (does not affect FinInfo.Ask / FinInfo.Bid).
The GetBuyQueue and GetSellQueue methods list the IQueueData objects. At the moment, these methods always return the current queue, i.e. independent of the passed parameter barNum.
Interface IQueueData | |
IsBuyPart | |
LastUpdate | Last update time |
Price | Price |
Quantity | Quantity |
HasOwnOrderContains | Are there any of our orders |
Security | Access to a financial instrument |
Example, output the data of the queues to the log:
The information from TSLab matches the data from the terminal.
Last updated