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

Method marketCodes

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

Source from the content-addressed store, hash-verified

7762 }
7763
7764 public Object marketCodes(Object... optionalArgs)
7765 {
7766 Object codes = Helpers.getArg(optionalArgs, 0, null);
7767 if (Helpers.isTrue(Helpers.isEqual(codes, null)))
7768 {
7769 return codes;
7770 }
7771 Object result = new java.util.ArrayList<Object>(java.util.Arrays.asList());
7772 for (var i = 0; Helpers.isLessThan(i, Helpers.getArrayLength(codes)); i++)
7773 {
7774 ((java.util.List<Object>)result).add(this.commonCurrencyCode(Helpers.GetValue(codes, i)));
7775 }
7776 return result;
7777 }
7778
7779 public Object parseOrderBookBidsAsks(Object bidasks, Object... optionalArgs)
7780 {

Callers 4

Calls 8

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

Tested by

no test coverage detected