Skip to content

Commit f4125f0

Browse files
committed
add PendingSubmit order status
1 parent 8664b91 commit f4125f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/tigerapi/enums.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ namespace TIGER_API {
328328

329329
enum class OrderStatus {
330330
PendingNew,
331+
PendingSubmit,
331332
Initial,
332333
Submitted,
333334
PartiallyFilled,
@@ -342,6 +343,8 @@ namespace TIGER_API {
342343
switch (status) {
343344
case OrderStatus::PendingNew:
344345
return U("PendingNew");
346+
case OrderStatus::PendingSubmit:
347+
return U("PendingSubmit");
345348
case OrderStatus::Initial:
346349
return U("Initial");
347350
case OrderStatus::Submitted:

0 commit comments

Comments
 (0)