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

Method fetchTrades

java/lib/src/main/java/io/github/ccxt/exchanges/Binance.java:84–88  ·  view source on GitHub ↗
(String symbol, Long since, Long limit, Map<String, Object> params)

Source from the content-addressed store, hash-verified

82 public CompletableFuture<List<Account>> fetchAccountsAsync() { return fetchAccountsAsync((Map<String, Object>) null); }
83
84 @SuppressWarnings("unchecked")
85 public List<Trade> fetchTrades(String symbol, Long since, Long limit, Map<String, Object> params) {
86 Object res = Helpers.joinUnwrapped(super.fetchTrades(symbol, since, limit, params));
87 return toTypedList(res, Trade::new);
88 }
89 public List<Trade> fetchTrades(String symbol) { return fetchTrades(symbol, (Long) null, (Long) null, (Map<String, Object>) null); }
90 public List<Trade> fetchTrades(String symbol, Long since) { return fetchTrades(symbol, since, (Long) null, (Map<String, Object>) null); }
91 public List<Trade> fetchTrades(String symbol, Long since, Long limit) { return fetchTrades(symbol, since, limit, (Map<String, Object>) null); }

Callers 4

mainMethod · 0.95
mainMethod · 0.95
mainMethod · 0.95
fetchTradesAsyncMethod · 0.45

Calls 2

joinUnwrappedMethod · 0.95
toTypedListMethod · 0.80

Tested by 1

mainMethod · 0.76