UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

17 lines (16 loc) 548 B
import { BinanceClient } from '../../../clients'; import { usdtM } from '../../../info'; export interface TakerBuySellVolumePayload { symbol: string; period: usdtM.InterestPeriod; limit?: number; startTime?: Date | number; endTime?: Date | number; } export interface TakerBuySellVolumeResponse { buySellRatio: number; buyVol: number; sellVol: number; timestamp: Date; } export declare function takerBuySellVolume(client: BinanceClient, payload: TakerBuySellVolumePayload): Promise<TakerBuySellVolumeResponse[]>;