| 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); } |