(Object id, Object symbol, Object amount, Object... optionalArgs)
| 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 | { |
nothing calls this directly
no test coverage detected