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

Method fetchTrades

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

Source from the content-addressed store, hash-verified

4715 }
4716
4717 public java.util.concurrent.CompletableFuture<Object> fetchTrades(Object symbol, Object... optionalArgs)
4718 {
4719
4720 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
4721
4722 Object since = Helpers.getArg(optionalArgs, 0, null);
4723 Object limit = Helpers.getArg(optionalArgs, 1, null);
4724 Object parameters = Helpers.getArg(optionalArgs, 2, new java.util.HashMap<String, Object>() {{}});
4725 throw new NotSupported((String)Helpers.add(this.id, " fetchTrades() is not supported yet")) ;
4726 });
4727
4728 }
4729
4730 public java.util.concurrent.CompletableFuture<Object> fetchTradesWs(Object symbol, Object... optionalArgs)
4731 {

Callers

nothing calls this directly

Calls 2

getArgMethod · 0.95
addMethod · 0.95

Tested by

no test coverage detected