UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

18 lines (17 loc) 645 B
import { BinanceClient } from '../../../clients'; import { usdtM } from '../../../info'; export interface TopTraderLongShortRatioAccountsPayload { symbol: string; period: usdtM.InterestPeriod; limit?: number; startTime?: Date | number; endTime?: Date | number; } export interface TopTraderLongShortRatioAccountsResponse { symbol: string; longShortRatio: number; longAccount: number; shortAccount: number; timestamp: Date; } export declare function topTraderLongShortRatioAccounts(client: BinanceClient, payload: TopTraderLongShortRatioAccountsPayload): Promise<TopTraderLongShortRatioAccountsResponse[]>;