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

Method fetchTradesWs

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

Source from the content-addressed store, hash-verified

4728 }
4729
4730 public java.util.concurrent.CompletableFuture<Object> fetchTradesWs(Object symbol, Object... optionalArgs)
4731 {
4732
4733 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
4734
4735 Object since = Helpers.getArg(optionalArgs, 0, null);
4736 Object limit = Helpers.getArg(optionalArgs, 1, null);
4737 Object parameters = Helpers.getArg(optionalArgs, 2, new java.util.HashMap<String, Object>() {{}});
4738 throw new NotSupported((String)Helpers.add(this.id, " fetchTradesWs() is not supported yet")) ;
4739 });
4740
4741 }
4742
4743 public java.util.concurrent.CompletableFuture<Object> watchLiquidations(Object symbol, Object... optionalArgs)
4744 {

Callers

nothing calls this directly

Calls 2

getArgMethod · 0.95
addMethod · 0.95

Tested by

no test coverage detected