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

Method fetchTicker

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

Source from the content-addressed store, hash-verified

694 public CompletableFuture<IsolatedBorrowRate> fetchIsolatedBorrowRateAsync(String symbol) { return fetchIsolatedBorrowRateAsync(symbol, (Map<String, Object>) null); }
695
696 @SuppressWarnings("unchecked")
697 public Ticker fetchTicker(String symbol, Map<String, Object> params) {
698 Object res = Helpers.joinUnwrapped(super.fetchTicker(symbol, params));
699 return new Ticker(res);
700 }
701 public Ticker fetchTicker(String symbol) { return fetchTicker(symbol, (Map<String, Object>) null); }
702 @SuppressWarnings("unchecked")
703 public CompletableFuture<Ticker> fetchTickerAsync(String symbol, Map<String, Object> params) {

Callers 5

mainMethod · 0.95
mainMethod · 0.95
mainMethod · 0.95
mainMethod · 0.95
fetchTickerAsyncMethod · 0.45

Calls 1

joinUnwrappedMethod · 0.95

Tested by 1

mainMethod · 0.76