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

Method stringGt

java/lib/src/main/java/io/github/ccxt/base/Precise.java:265–268  ·  view source on GitHub ↗
(Object a, Object b)

Source from the content-addressed store, hash-verified

263 }
264
265 public static boolean stringGt(Object a, Object b) {
266 if (a == null || b == null) return false;
267 return new Precise(String.valueOf(a)).gt(new Precise(String.valueOf(b)));
268 }
269
270 public static boolean stringEq(Object a, Object b) {
271 if (a == null || b == null) return false;

Callers 15

safeLedgerEntryMethod · 0.95
safeCurrencyStructureMethod · 0.95
safeOrderMethod · 0.95
parsePositionRiskMethod · 0.95
fetchPositionsRiskMethod · 0.95
parsePositionMethod · 0.95
parseMarketMethod · 0.95
parsePositionMethod · 0.95

Calls 1

gtMethod · 0.45

Tested by 4

testMarketMethod · 0.76
testOrderBookMethod · 0.76
AssertGreaterMethod · 0.76
testPreciseMethod · 0.76