Sorted array of 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
)
Start time of the candle period
Updated time
Low price during the period
High price during the period
Open price at the beginning of the period
Close price at the end of the period
Volume in the unit of the asset
Volume in USDC