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

Method microseconds

java/lib/src/main/java/io/github/ccxt/base/Time.java:32–36  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30 }
31
32 public static long microseconds() {
33 // epoch micros = seconds * 1_000_000 + nanos/1000
34 Instant now = Instant.now();
35 return now.getEpochSecond() * 1_000_000L + (now.getNano() / 1_000);
36 }
37
38 // -------- parsing helpers --------
39

Callers 7

microsecondsMethod · 0.95
nonceMethod · 0.45
signMethod · 0.45
fetchOHLCVMethod · 0.45
signMethod · 0.45
fetchOHLCVMethod · 0.45
nonceMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected