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

Method editLimitBuyOrder

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

Source from the content-addressed store, hash-verified

8815 }
8816
8817 public java.util.concurrent.CompletableFuture<Object> editLimitBuyOrder(Object id, Object symbol, Object amount, Object... optionalArgs)
8818 {
8819
8820 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
8821
8822 Object price = Helpers.getArg(optionalArgs, 0, null);
8823 Object parameters = Helpers.getArg(optionalArgs, 1, new java.util.HashMap<String, Object>() {{}});
8824 return (this.editLimitOrder(id, symbol, "buy", amount, price, parameters)).join();
8825 });
8826
8827 }
8828
8829 public java.util.concurrent.CompletableFuture<Object> editLimitSellOrder(Object id, Object symbol, Object amount, Object... optionalArgs)
8830 {

Callers

nothing calls this directly

Calls 2

getArgMethod · 0.95
editLimitOrderMethod · 0.95

Tested by

no test coverage detected