(status)
| 3882 | }, market); |
| 3883 | } |
| 3884 | parseOrderStatus(status) { |
| 3885 | const statuses = { |
| 3886 | 'NEW': 'open', |
| 3887 | 'PENDING': 'open', |
| 3888 | 'PARTIALLY_FILLED': 'open', |
| 3889 | 'RUNNING': 'open', |
| 3890 | 'FILLED': 'closed', |
| 3891 | 'CANCELED': 'canceled', |
| 3892 | 'CANCELLED': 'canceled', |
| 3893 | 'FAILED': 'canceled', |
| 3894 | }; |
| 3895 | return this.safeString(statuses, status, status); |
| 3896 | } |
| 3897 | /** |
| 3898 | * @method |
| 3899 | * @name bingx#cancelOrder |