tigeropen.common.consts.OrderStatussourceopen in new window tigeropen.common.util.order_utils.get_order_status method of the SDK converts the raw status codes to a enum valuesourceopen in new window
Identifier
Status Value
Status Code
Description
NEW
Initial
-1
Order initial status
HELD
Submitted
5
Order Submitted
PARTIALLY_FILLED
PartiallyFilled
2, 5, 8
Partially filled
FILLED
Filled
6
Completed
CANCELLED
Cancelled
4
Cancelled
PENDING_CANCEL
PendingCancel
3
Pending cancellation
REJECTED
Inactive
7
Inactive
EXPIRED
Invalid
-2
Illegal state
Note: The status of PARTIALLY_FILLED is special, it may be HELD, CANCELLED, EXPIRED, REJECTED of any kind of status, please see FAQ-trading - how to determine the order is a partial transaction status See also the method of order status in sdk tigeropen.trade.domain.order.Order.status, that is, if the order status returned by the server is HELD(submitted), and there is a partial number of transactions, then the order status is PARTIALLY_FILLED
classOrder:......@propertydefstatus(self):ifnot self.remaining and self.filled:return OrderStatus.FILLED
elif self._status == OrderStatus.HELD and self.filled:return OrderStatus.PARTIALLY_FILLED
else:return self._status
classAssetQuoteType(Enum):# Includes pre-market, intra-day, and after-hours trading data. For night session, the closing price of the previous after-hours trading is used for calculation.
ETH ="ETH"# Only intra-day trading data. For pre-market, after-hours, and night session, the intra-day closing price is used for calculation.
RTH ="RTH"# Includes night session trading data. For night session, the night session trading data is used for calculation.
OVERNIGHT ="OVERNIGHT"