MCPcopy Index your code
hub / github.com/ccxt/ccxt / cancelUnifiedOrder

Method cancelUnifiedOrder

java/lib/src/main/java/io/github/ccxt/Exchange.java:10946–10955  ·  view source on GitHub ↗
(Object order, Object... optionalArgs)

Source from the content-addressed store, hash-verified

10944 }
10945
10946 public java.util.concurrent.CompletableFuture<Object> cancelUnifiedOrder(Object order, Object... optionalArgs)
10947 {
10948
10949 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
10950
10951 Object parameters = Helpers.getArg(optionalArgs, 0, new java.util.HashMap<String, Object>() {{}});
10952 return this.cancelOrder(this.safeString(order, "id"), this.safeString(order, "symbol"), parameters);
10953 });
10954
10955 }
10956
10957 public java.util.concurrent.CompletableFuture<Object> fetchOrders(Object... optionalArgs)
10958 {

Callers

nothing calls this directly

Calls 3

getArgMethod · 0.95
cancelOrderMethod · 0.95
safeStringMethod · 0.95

Tested by

no test coverage detected