Nectar SDK & API
StartRelease
v1.6
v1.6
  • Introduction
  • Quick Start
  • Installation
  • Actions
    • getAllMarkets
    • getMarket
    • getMarketByTicker
    • getAllMarket24h
    • getMarket24h
    • getChains
    • getTokens
    • getAllOrders
    • getOpenOrders
    • getChart
    • getTrades
    • getBidAsk
    • transferToTradingWallet
    • transferToFundingWallet
    • buyLimit
    • sellLimit
    • buyMarketTotal
    • sellMarketAmount
    • cancelOrder
  • Types
    • BidAsk
    • Chain
    • Contract
    • Kline
    • Market
    • MarketQuote
    • NectarTransferResult
    • Order
    • Paginated
    • Token
    • Trade
    • Transaction
  • Enums
    • ChainType
    • ContractType
    • KLineInterval
    • OrderStatus
    • OrderType
    • TokenType
    • TransactionStatus
  • API Specifications
    • Header
    • Exchange Info
    • Markets 24hr Summary
    • Market History
    • Market Trades
    • Cancel Order
    • Opened User Orders
    • All User Orders
  • Release Notes
  • License and Copyright
Powered by GitBook
On this page
  1. Types

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 1 year ago