MarketQuote

The MarketQuote type represents a summary of a market's activity in the last 24 hours.

interface MarketQuote {
  base_ticker: string;
  base_ticker_display: string;
  closing_price: string;
  highest_price: string;
  last_price: string;
  lowest_price: string;
  opening_price: string;
  price_change: string;
  price_change_percent: string;
  quote_ticker: string;
  quote_ticker_display: string;
  symbol: string;
  total_trade_base_amount: string;
  total_trade_quote_amount: string;
}

Properties

  • base_ticker: string

    • A ticker of the base token.

    • It is a combination of a base symbol, an underscore, and a chain symbol.

    • E.g., ETH_ETHSEPOLIA

  • base_ticker_display: string

    • A symbol of the base token.

  • closing_price: string

    • The closing price of the market in the last 24 hours.

  • highest_price: string

    • The highest price the market reached in the last 24 hours.

  • last_price: string

    • The last traded price of the market.

  • lowest_price: string

    • The lowest price the market reached in the last 24 hours.

  • opening_price: string

    • The opening price of the market in the last 24 hours.

  • price_change: string

    • The change in price of the market in the last 24 hours.

  • price_change_percent: string

    • The percentage change in price of the market in the last 24 hours.

  • quote_ticker: string

    • A ticker of the quote token.

    • It is a combination of a quote symbol, an underscore, and a chain symbol.

    • E.g., USDT_ETHSEPOLIA

  • quote_ticker_display: string

    • A symbol of the quote token.

  • symbol: string

    • A market symbol.

    • It is a combination of a base ticker, a colon, and a quote ticker.

    • E.g., ETH_ETHSEPOLIA:USDT_ETHSEPOLIA

  • total_trade_base_amount: string

    • The total traded amount in the base currency in the last 24 hours.

  • total_trade_quote_amount: string

    • The total traded amount in the quote currency in the last 24 hours.

Last updated