Candle
Candle stick representation of trading
type Candle {
  periodStart: Timestamp!
  lastUpdateInPeriod: Timestamp!
  high: String!
  low: String!
  open: String!
  close: String!
  volume: String!
}
Fields
Candle.periodStart ● Timestamp! non-null scalar
RFC3339Nano formatted date and time for the candle start time
Candle.lastUpdateInPeriod ● Timestamp! non-null scalar
RFC3339Nano formatted date and time for the candle end time, or last updated time if the candle is still open
Candle.high ● String! non-null scalar
High price (uint64)
Candle.low ● String! non-null scalar
Low price (uint64)
Candle.open ● String! non-null scalar
Open price (uint64)
Candle.close ● String! non-null scalar
Close price (uint64)
Candle.volume ● String! non-null scalar
Volume price (uint64)
Returned by
candles  subscription
Member of
CandleEdge  object