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

Method fetchTickers

java/lib/src/main/java/io/github/ccxt/Exchange.java:9742–9752  ·  view source on GitHub ↗
(Object... optionalArgs)

Source from the content-addressed store, hash-verified

9740 }
9741
9742 public java.util.concurrent.CompletableFuture<Object> fetchTickers(Object... optionalArgs)
9743 {
9744
9745 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
9746
9747 Object symbols = Helpers.getArg(optionalArgs, 0, null);
9748 Object parameters = Helpers.getArg(optionalArgs, 1, new java.util.HashMap<String, Object>() {{}});
9749 throw new NotSupported((String)Helpers.add(this.id, " fetchTickers() is not supported yet")) ;
9750 });
9751
9752 }
9753
9754 public java.util.concurrent.CompletableFuture<Object> fetchSpotTickers(Object... optionalArgs)
9755 {

Callers 2

fetchTickersAsyncMethod · 0.95
fetchTickerMethod · 0.95

Calls 2

getArgMethod · 0.95
addMethod · 0.95

Tested by

no test coverage detected