burza625

Results 1 comments of burza625

I suggest this code: ``` orders = client.get_open_orders(symbol='BTCUSDT') df_orders = pd.DataFrame(orders) open_orders_count = len(df_orders.index) for i in range(open_orders_count): client.cancel_order(symbol='BTCUSDT, orderId=orders[i].get('orderId')) ``` It counts open orders with symbol BTCUSDT in data...