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: stringA 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: stringA symbol of the base token.
closing_price: stringThe closing price of the market in the last 24 hours.
highest_price: stringThe highest price the market reached in the last 24 hours.
last_price: stringThe last traded price of the market.
lowest_price: stringThe lowest price the market reached in the last 24 hours.
opening_price: stringThe opening price of the market in the last 24 hours.
price_change: stringThe change in price of the market in the last 24 hours.
price_change_percent: stringThe percentage change in price of the market in the last 24 hours.
quote_ticker: stringA 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: stringA symbol of the quote token.
symbol: stringA 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: stringThe total traded amount in the base currency in the last 24 hours.
total_trade_quote_amount: stringThe total traded amount in the quote currency in the last 24 hours.
Last updated