MCPcopy
hub / github.com/ccxt/ccxt / stringGe

Method stringGe

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

Source from the content-addressed store, hash-verified

310 }
311
312 public static boolean stringGe(Object a, Object b) {
313 if (a == null || b == null) return false;
314 return new Precise(String.valueOf(a)).ge(new Precise(String.valueOf(b)));
315 }
316
317 public static String stringMod(Object a, Object b) {
318 if (a == null || b == null) return null;

Callers 10

parseOrderMethod · 0.95
parsePositionMethod · 0.95
parseWsOrderMethod · 0.95
parseWsOrderMethod · 0.95
testTickerMethod · 0.95
testBalanceMethod · 0.95
AssertGreaterOrEqualMethod · 0.95
tcoAssertFilledOrderMethod · 0.95
testPreciseMethod · 0.95

Calls 1

geMethod · 0.45

Tested by 5

testTickerMethod · 0.76
testBalanceMethod · 0.76
AssertGreaterOrEqualMethod · 0.76
tcoAssertFilledOrderMethod · 0.76
testPreciseMethod · 0.76