pub struct CCOptionsMarkets {
pub type_: String,
pub exchange_status: String,
pub mapped_instrument_total: i64,
pub unmapped_instruments_total: i64,
pub instrument_status: CCInstrumentStatus,
pub total_trades_options: i64,
pub total_open_interest_updates: i64,
pub has_orderbook_l2_minute_snapshots_enabled: Option<bool>,
}
Expand description
Options: 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 to the correct assets rather than using the same asset id to represent different assets.
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_options: i64
The total number of options trades that this exchange has processed.
total_open_interest_updates: i64
The total number of options open interest updates that this exchange has processed.
has_orderbook_l2_minute_snapshots_enabled: Option<bool>