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

Method editLimitSellOrder

java/lib/src/main/java/io/github/ccxt/Exchange.java:8829–8839  ·  view source on GitHub ↗
(Object id, Object symbol, Object amount, Object... optionalArgs)

Source from the content-addressed store, hash-verified

8827 }
8828
8829 public java.util.concurrent.CompletableFuture<Object> editLimitSellOrder(Object id, Object symbol, Object amount, Object... optionalArgs)
8830 {
8831
8832 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
8833
8834 Object price = Helpers.getArg(optionalArgs, 0, null);
8835 Object parameters = Helpers.getArg(optionalArgs, 1, new java.util.HashMap<String, Object>() {{}});
8836 return (this.editLimitOrder(id, symbol, "sell", amount, price, parameters)).join();
8837 });
8838
8839 }
8840
8841 public java.util.concurrent.CompletableFuture<Object> editLimitOrder(Object id, Object symbol, Object side, Object amount, Object... optionalArgs)
8842 {

Callers

nothing calls this directly

Calls 2

getArgMethod · 0.95
editLimitOrderMethod · 0.95

Tested by

no test coverage detected