(Object symbol, Object side, Object amount, Object... optionalArgs)
| 11574 | } |
| 11575 | |
| 11576 | public java.util.concurrent.CompletableFuture<Object> createMarketOrder(Object symbol, Object side, Object amount, Object... optionalArgs) |
| 11577 | { |
| 11578 | |
| 11579 | return java.util.concurrent.CompletableFuture.supplyAsync(() -> { |
| 11580 | |
| 11581 | Object price = Helpers.getArg(optionalArgs, 0, null); |
| 11582 | Object parameters = Helpers.getArg(optionalArgs, 1, new java.util.HashMap<String, Object>() {{}}); |
| 11583 | return (this.createOrder(symbol, "market", side, amount, price, parameters)).join(); |
| 11584 | }); |
| 11585 | |
| 11586 | } |
| 11587 | |
| 11588 | public java.util.concurrent.CompletableFuture<Object> createMarketOrderWs(Object symbol, Object side, Object amount, Object... optionalArgs) |
| 11589 | { |
nothing calls this directly
no test coverage detected