MCPcopy
hub / github.com/ccxt/ccxt / get

Method get

java/lib/src/main/java/io/github/ccxt/types/Tickers.java:23–27  ·  view source on GitHub ↗
(String key)

Source from the content-addressed store, hash-verified

21 }
22
23 public Ticker get(String key) {
24 Ticker t = tickers.get(key);
25 if (t == null) throw new NoSuchElementException("Key not found: " + key);
26 return t;
27 }
28}

Calls

no outgoing calls