|
829 | 829 | ```python |
830 | 830 | client.options_historical_trades(symbol, fromId, limit) |
831 | 831 | ``` |
| 832 | +- *Account and trading interface* |
| 833 | + - **GET /vapi/v1/account (HMAC SHA256)** (Account asset info (USER_DATA)) |
| 834 | + ```python |
| 835 | + client.options_account_info(recvWindow) |
| 836 | + ``` |
| 837 | + - **POST /vapi/v1/transfer (HMAC SHA256)** (Funds transfer (USER_DATA)) |
| 838 | + ```python |
| 839 | + client.options_funds_transfer(currency, type, amount, recvWindow) |
| 840 | + ``` |
| 841 | + - **GET /vapi/v1/position (HMAC SHA256)** (Option holdings info (USER_DATA)) |
| 842 | + ```python |
| 843 | + client.options_positions(symbol, recvWindow) |
| 844 | + ``` |
| 845 | + - **POST /vapi/v1/bill (HMAC SHA256)** (Account funding flow (USER_DATA)) |
| 846 | + ```python |
| 847 | + client.options_bill(currency, recordId, startTime, endTime, limit, recvWindow) |
| 848 | + ``` |
| 849 | + - **POST /vapi/v1/order (HMAC SHA256)** (Option order (TRADE)) |
| 850 | + ```python |
| 851 | + client.options_place_order(symbol, side, type, quantity, price, timeInForce, reduceOnly, postOnly, \ |
| 852 | + newOrderRespType, clientOrderId, recvWindow, recvWindow) |
| 853 | + ``` |
| 854 | + - **POST /vapi/v1/batchOrders (HMAC SHA256)** (Place Multiple Option orders (TRADE)) |
| 855 | + ```python |
| 856 | + client.options_place_batch_order(orders, recvWindow) |
| 857 | + ``` |
| 858 | + - **DELETE /vapi/v1/order (HMAC SHA256)** (Cancel Option order (TRADE)) |
| 859 | + ```python |
| 860 | + client.options_cancel_order(symbol, orderId, clientOrderId, recvWindow) |
| 861 | + ``` |
| 862 | + - **DELETE /vapi/v1/batchOrders (HMAC SHA256)** (Cancel Multiple Option orders (TRADE)) |
| 863 | + ```python |
| 864 | + client.options_cancel_batch_order(symbol, orderIds, clientOrderIds, recvWindow) |
| 865 | + ``` |
| 866 | + - **DELETE /vapi/v1/allOpenOrders (HMAC SHA256)** (Cancel all Option orders (TRADE)) |
| 867 | + ```python |
| 868 | + client.options_cancel_all_orders(symbol, recvWindow) |
| 869 | + ``` |
| 870 | + - **GET /vapi/v1/order (HMAC SHA256)** (Query Option order (TRADE)) |
| 871 | + ```python |
| 872 | + client.options_query_order(symbol, orderId, clientOrderId, recvWindow) |
| 873 | + ``` |
| 874 | + - **GET /vapi/v1/openOrders (HMAC SHA256)** (Query current pending Option orders (TRADE)) |
| 875 | + ```python |
| 876 | + client.options_query_pending_orders(symbol, orderId, startTime, endTime, limit, recvWindow) |
| 877 | + ``` |
| 878 | + - **GET /vapi/v1/historyOrders (HMAC SHA256)** (Query Option order history (TRADE)) |
| 879 | + ```python |
| 880 | + client.options_query_order_history(symbol, orderId, startTime, endTime, limit, recvWindow) |
| 881 | + ``` |
832 | 882 | ### [COIN-M Futures](https://binance-docs.github.io/apidocs/delivery/en/) |
833 | 883 | > :warning: Not yet implemented |
834 | 884 | ### [USDT-M Futures testnet](https://binance-docs.github.io/apidocs/testnet/en/) |
|
0 commit comments