pub struct CexSymbol {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl CexSymbol
impl CexSymbol
Sourcepub fn cautions(&self, options: CexSymbolCautionsOptions) -> Result<Value>
pub fn cautions(&self, options: CexSymbolCautionsOptions) -> Result<Value>
Return currently-active caution/warning/danger flagged symbols. Bithumb provides an expiry (end_at); other exchanges are open-ended until the next collector poll clears them.
Sourcepub fn delistings(&self, options: CexSymbolDelistingsOptions) -> Result<Value>
pub fn delistings(&self, options: CexSymbolDelistingsOptions) -> Result<Value>
Return symbols with a known delisting_at timestamp or trading_status in {delisting, delisted}. Filter by time window to get upcoming delistings.
Sourcepub fn liquidation(
&self,
base: impl Into<String>,
options: CexSymbolLiquidationOptions,
) -> Result<Value>
pub fn liquidation( &self, base: impl Into<String>, options: CexSymbolLiquidationOptions, ) -> Result<Value>
Sums long/short liquidation volume across all events in a rolling window for every exchange × quote pairing of the base asset. Window max 30d; default 24h.
Sourcepub fn metadata(&self, options: CexSymbolMetadataOptions) -> Result<Value>
pub fn metadata(&self, options: CexSymbolMetadataOptions) -> Result<Value>
Fetch per-symbol trading status, caution flags, tags and timing metadata collected by tfsymbolmeta.
Sourcepub fn oi(
&self,
base: impl Into<String>,
options: CexSymbolOiOptions,
) -> Result<Value>
pub fn oi( &self, base: impl Into<String>, options: CexSymbolOiOptions, ) -> Result<Value>
Latest Open Interest snapshot across every futures venue carrying the given base. Sorted by USD value descending, NULLs last.
Sourcepub fn oi_stats(
&self,
base: impl Into<String>,
options: CexSymbolOiStatsOptions,
) -> Result<Value>
pub fn oi_stats( &self, base: impl Into<String>, options: CexSymbolOiStatsOptions, ) -> Result<Value>
Enriched snapshot combining the latest OI (USD) with 1h/4h/24h change percentages and OI/24h volume ratio. Backed by the tfopeninterest taskflow’s Redis HASH.
Fetch (exchange, market, base, quote, tag) rows from cex_symbol_tag. Use to find every symbol flagged with a given tag (e.g. all meme coins across exchanges).