Summary statistics for a market over the last 24 hours.

interface MarketSummary {
    base_volume: string;
    highest_price_24h: string;
    lowest_price_24h: string;
    market_id: MarketId;
    price: string;
    price_change_percent_24h: string;
    quote_volume: string;
}

Properties

base_volume: string

24-hour base asset volume.

highest_price_24h: string

24-hour high price.

lowest_price_24h: string

24-hour low price.

market_id: MarketId

Market identifier.

price: string

Current price.

price_change_percent_24h: string

24-hour price change as a percentage string.

quote_volume: string

24-hour quote asset volume.