Interface ITickerInfo

ITickerInfo Interface representing ticker information for a market.

const tickerInfo: ITickerInfo = {
symbol: "BTC_IRT",
price: "3145737420",
daily_change_price: -15.58,
low: "3035557311",
high: "3745700550",
timestamp: 1722860054.189
};
interface ITickerInfo {
    daily_change_price: number;
    high: `${number}`;
    low: `${number}`;
    price: `${number}`;
    symbol: `${string}_IRT` | `${string}_USDT`;
    timestamp: number;
}

Properties

daily_change_price: number

The daily change in price.

high: `${number}`

The highest price of the market for the day.

low: `${number}`

The lowest price of the market for the day.

price: `${number}`

The current price of the market.

symbol: `${string}_IRT` | `${string}_USDT`

The symbol of the market.

timestamp: number

The timestamp of the ticker information.