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