Skip to content

Commit d14175a

Browse files
authored
added missing order statuses (#137)
1 parent 4c9d41c commit d14175a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

schwab/client/base.py

+6
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ class Status(Enum):
197197
:meth:`get_orders_for_all_linked_accounts`'''
198198
AWAITING_PARENT_ORDER = 'AWAITING_PARENT_ORDER'
199199
AWAITING_CONDITION = 'AWAITING_CONDITION'
200+
AWAITING_STOP_CONDITION = 'AWAITING_STOP_CONDITION'
200201
AWAITING_MANUAL_REVIEW = 'AWAITING_MANUAL_REVIEW'
201202
ACCEPTED = 'ACCEPTED'
202203
AWAITING_UR_OUT = 'AWAITING_UR_OUT'
@@ -210,6 +211,11 @@ class Status(Enum):
210211
REPLACED = 'REPLACED'
211212
FILLED = 'FILLED'
212213
EXPIRED = 'EXPIRED'
214+
NEW = 'NEW'
215+
AWAITING_RELEASE_TIME = 'AWAITING_RELEASE_TIME'
216+
PENDING_ACKNOWLEDGEMENT = 'PENDING_ACKNOWLEDGEMENT'
217+
PENDING_RECALL = 'PENDING_RECALL'
218+
UNKNOWN = 'UNKNOWN'
213219

214220
def _make_order_query(self,
215221
*,

0 commit comments

Comments
 (0)