UNPKG

@huangapple/okx-api

Version:

Complete & robust Node.js SDK for OKX's REST APIs and WebSockets, with TypeScript & end-to-end tests.

101 lines (100 loc) 2.33 kB
import { InstrumentType, numberInString } from '../shared'; export interface Ticker { instType: InstrumentType; instId: string; last: numberInString; lastSz: numberInString; askPx: numberInString; askSz: numberInString; bidPx: numberInString; bidSz: numberInString; open24h: numberInString; high24h: numberInString; low24h: numberInString; volCcy24h: numberInString; vol24h: numberInString; sodUtc0: numberInString; sodUtc8: numberInString; ts: numberInString; } export interface IndexTicker { instId: string; idxPx: string; high24h: string; sodUtc0: string; open24h: string; low24h: string; sodUtc8: string; ts: string; } declare type OBPrice = string; declare type OBAssetQty = string; declare type OBOrderCount = string; declare type OrderBookLevel = [OBPrice, OBAssetQty, '0', OBOrderCount]; export interface OrderBook { asks: OrderBookLevel[]; bids: OrderBookLevel[]; ts: string; } declare type timestamp = string; declare type openPrice = string; declare type highPrice = string; declare type lowPrice = string; declare type closePrice = string; declare type vol = string; declare type volCcy = string; export declare type Candle = [ timestamp, openPrice, highPrice, lowPrice, closePrice, vol, volCcy ]; export declare type CandleNoVolume = [ timestamp, openPrice, highPrice, lowPrice, closePrice ]; export interface Trade { instId: string; side: string; sz: string; px: string; tradeId: string; ts: string; } export interface Instrument { instType: InstrumentType; instId: string; uly: string; instFamily: string; category: string; baseCcy: string; quoteCcy: string; settCcy: string; ctVal: string; ctMult: string; ctValCcy: string; optType: string; stk: string; listTime: string; expTime: string; lever: string; tickSz: string; lotSz: string; minSz: string; ctType: string; alias: string; state: string; maxLmtSz: string; maxMktSz: string; maxTwapSz: string; maxIcebergSz: string; maxTriggerSz: string; maxStopSz: string; } export {};