pub struct CCFuturesMarkets {
pub type_: String,
pub exchange_status: String,
pub mapped_instrument_total: i64,
pub unmapped_instruments_total: i64,
pub instrument_status: CCInstrumentStatus,
pub total_trades_futures: i64,
pub total_funding_rate_updates: i64,
pub total_open_interest_updates: i64,
pub has_orderbook_l2_minute_snapshots_enabled: bool,
}
Expand description
Futures: Markets
Fields§
§type_: String
Type of the message.
exchange_status: String
The status of the echange. We only poll / stream / connect to the ACTIVE ones, for the RETIRED ones we no longer query for data.
mapped_instrument_total: i64
The total number of instruments that have been verified by our mapping team and have been properly assigned with a base, quote, mapping function, and other necessary fields. This is done to ensure that pairs like XXBTZUSD are accurately mapped to BTC-USD and that the pair refers
unmapped_instruments_total: i64
The number of instruments that have not yet been verified by our mapping team.
instrument_status: CCInstrumentStatus
An object with the total number of instrument for each of the available instrument statuses.
total_trades_futures: i64
The total number of futures trades that this exchange has processed.
total_funding_rate_updates: i64
The total number of futures funding rate updates that this exchange has processed.
total_open_interest_updates: i64
The total number of futures open interest updates that this exchange has processed.
has_orderbook_l2_minute_snapshots_enabled: bool
Boolean field denoting if we have historical minute orderbook snapshots endabled for this exchange.