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

Method watchLiquidations

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

Source from the content-addressed store, hash-verified

4741 }
4742
4743 public java.util.concurrent.CompletableFuture<Object> watchLiquidations(Object symbol, Object... optionalArgs)
4744 {
4745
4746 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
4747
4748 Object since = Helpers.getArg(optionalArgs, 0, null);
4749 Object limit = Helpers.getArg(optionalArgs, 1, null);
4750 Object parameters = Helpers.getArg(optionalArgs, 2, new java.util.HashMap<String, Object>() {{}});
4751 if (Helpers.isTrue(Helpers.GetValue(this.has, "watchLiquidationsForSymbols")))
4752 {
4753 return (this.watchLiquidationsForSymbols(new java.util.ArrayList<Object>(java.util.Arrays.asList(symbol)), since, limit, parameters)).join();
4754 }
4755 throw new NotSupported((String)Helpers.add(this.id, " watchLiquidations() is not supported yet")) ;
4756 });
4757
4758 }
4759
4760 public java.util.concurrent.CompletableFuture<Object> watchLiquidationsForSymbols(Object symbols, Object... optionalArgs)
4761 {

Callers

nothing calls this directly

Calls 5

getArgMethod · 0.95
isTrueMethod · 0.95
GetValueMethod · 0.95
addMethod · 0.95

Tested by

no test coverage detected