module Binance::Spot::Trade

def cancel_order_list(symbol:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#cancel-oco-trade -

Options Hash: (**kwargs)
  • :recvWindow (Integer) -- The value cannot be greater than 60000
  • :newClientOrderId (String) --
  • :listClientOrderId (String) --
  • :orderListId (Integer) --

Parameters:
  • kwargs (Hash) --
  • symbol (String) -- the symbol
def cancel_order_list(symbol:, **kwargs)
  Binance::Utils::Validation.require_param('symbol', symbol)
  @session.sign_request(:delete, '/api/v3/orderList', params: kwargs.merge(symbol: symbol))
end