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

Method parseTrades

java/lib/src/main/java/io/github/ccxt/Exchange.java:8317–8324  ·  view source on GitHub ↗
(Object trades, Object... optionalArgs)

Source from the content-addressed store, hash-verified

8315 }
8316
8317 public Object parseTrades(Object trades, Object... optionalArgs)
8318 {
8319 Object market = Helpers.getArg(optionalArgs, 0, null);
8320 Object since = Helpers.getArg(optionalArgs, 1, null);
8321 Object limit = Helpers.getArg(optionalArgs, 2, null);
8322 Object parameters = Helpers.getArg(optionalArgs, 3, new java.util.HashMap<String, Object>() {{}});
8323 return this.parseTradesHelper(false, trades, market, since, limit, parameters);
8324 }
8325
8326 public Object parseWsTrades(Object trades, Object... optionalArgs)
8327 {

Callers 15

safeOrderMethod · 0.95
fetchTradesMethod · 0.45
fetchMyTradesMethod · 0.45
fetchTradesMethod · 0.45
fetchMyTradesMethod · 0.45
fetchTradesMethod · 0.45
fetchMyTradesMethod · 0.45
fetchTradesMethod · 0.45
fetchMyTradesMethod · 0.45
fetchTradesMethod · 0.45
fetchTradesMethod · 0.45
fetchMyTradesMethod · 0.45

Calls 2

getArgMethod · 0.95
parseTradesHelperMethod · 0.95

Tested by

no test coverage detected