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

Method marketIds

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

Source from the content-addressed store, hash-verified

7658 }
7659
7660 public Object marketIds(Object... optionalArgs)
7661 {
7662 Object symbols = Helpers.getArg(optionalArgs, 0, null);
7663 if (Helpers.isTrue(Helpers.isEqual(symbols, null)))
7664 {
7665 return symbols;
7666 }
7667 Object result = new java.util.ArrayList<Object>(java.util.Arrays.asList());
7668 for (var i = 0; Helpers.isLessThan(i, Helpers.getArrayLength(symbols)); i++)
7669 {
7670 ((java.util.List<Object>)result).add(this.marketId(Helpers.GetValue(symbols, i)));
7671 }
7672 return result;
7673 }
7674
7675 public Object currencyIds(Object... optionalArgs)
7676 {

Callers 15

fetchPositionsMethod · 0.45
fetchPositionsMethod · 0.45
fetchPositionsHistoryMethod · 0.45
fetchTickersMethod · 0.45
fetchFundingRatesMethod · 0.45
fetchOpenInterestsMethod · 0.45
fetchPositionsMethod · 0.45
fetchTickersV3Method · 0.45
fetchBidsAsksMethod · 0.45
fetchOrderBooksMethod · 0.45
fetchBalanceMethod · 0.45
fetchOrderBooksMethod · 0.45

Calls 8

getArgMethod · 0.95
isTrueMethod · 0.95
isEqualMethod · 0.95
isLessThanMethod · 0.95
getArrayLengthMethod · 0.95
marketIdMethod · 0.95
GetValueMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected