use of org.knowm.xchange.okcoin.v3.dto.trade.SwapMultipleOrderCancellationResponse in project XChange by knowm.
the class OkexTradeServiceRaw method swapCancelMultipleOrders.
public SwapMultipleOrderCancellationResponse swapCancelMultipleOrders(String instrumentId, SwapOrderBatchCancellationRequest req) throws IOException {
SwapMultipleOrderCancellationResponse res = okex.swapCancelMultipleOrders(apikey, digest, timestamp(), passphrase, instrumentId, req);
res.checkResult();
return res;
}
Aggregations