Ohlcv
public struct Ohlcv : Equatable, CodableModel
Open/High/Low/Close values with volume and market_cap
-
Session open date
Declaration
Swift
public let timeOpen: Date -
Session close date
Declaration
Swift
public let timeClose: Date -
Open price
Declaration
Swift
public let open: Decimal? -
Highest price
Declaration
Swift
public let high: Decimal? -
Lowest price
Declaration
Swift
public let low: Decimal? -
Close price
Declaration
Swift
public let close: Decimal? -
Coin volume
Declaration
Swift
public let volume: Decimal? -
Coin market capitalization
Declaration
Swift
public let marketCap: Decimal?
Ohlcv Structure Reference