cancelAllActiveOrders method

Future<Map<String, dynamic>?> cancelAllActiveOrders({
  1. required String symbol,
})

Cancel all active orders that are unfilled or partially filled. Fully filled orders cannot be cancelled. https://bybit-exchange.github.io/docs/inverse/#t-cancelallactive

Implementation

Future<Map<String, dynamic>?> cancelAllActiveOrders(
    {required String symbol}) async {
  log.i('Cancel all active orders');
  return await rest.cancelAllActiveOrders(symbol: symbol);
}