Real-time ticker data for a market.

interface MarketTicker {
    base_volume: string;
    best_ask: string;
    best_bid: string;
    last_price: string;
    market_id: MarketId;
    quote_volume: string;
}

Properties

base_volume: string

24-hour base asset volume.

best_ask: string

Best ask (lowest sell) price.

best_bid: string

Best bid (highest buy) price.

last_price: string

Last traded price.

market_id: MarketId

Market identifier.

quote_volume: string

24-hour quote asset volume.