Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 724 Bytes

MarketCandles.md

File metadata and controls

48 lines (29 loc) · 724 Bytes

MarketCandles

Sorted array of MarketCandle

MarketCandle

data class MarketCandle(
 val startedAtMilliseconds: Double,
 val updatedAtMilliseconds: Double?,
 val low: Double,
 val high: Double,
 val open: Double,
 val close: Double,
 val baseTokenVolume: Double,
 val usdVolume: Double
)

startedAtMilliseconds

Start time of the candle period

updatedAtMilliseconds

Updated time

low

Low price during the period

high

High price during the period

open

Open price at the beginning of the period

close

Close price at the end of the period

baseTokenVolume

Volume in the unit of the asset

usdVolume

Volume in USDC