# binance 幣安常用常數 Enum ## Order status (status): | Status | Description | 備註 | | -------- | -------- | -------- | | NEW | The order has been accepted by the engine. | | | PARTIALLY_FILLED | A part of the order has been filled.| | | FILLED | The order has been completed.| | |CANCELED | The order has been canceled by the user.| | | PENDING_CANCEL | Currently unused| | | REJECTED | The order was not accepted by the engine and not processed.| | | EXPIRED | The order was canceled according to the order type's rules (e.g. LIMIT FOK orders with no fill, LIMIT IOC or MARKET orders that partially fill) or by the exchange, (e.g. orders canceled during liquidation, orders canceled during maintenance)| | ## Order Type: * LIMIT timeInForce, quantity, price * MARKET quantity or quoteOrderQty * STOP_LOSS quantity, stopPrice * STOP_LOSS_LIMIT timeInForce, quantity, price, stopPrice * TAKE_PROFIT quantity, stopPrice * TAKE_PROFIT_LIMIT timeInForce, quantity, price, stopPrice * LIMIT_MAKER quantity, price ###### tags: `api` `binance`