@exchanges/binance
Version:
Exchange provider for Binance API
10 lines (9 loc) • 360 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface PositionADLQuantileEstimationResponse {
symbol: string;
long: number;
short: number;
hedge: number;
both: number;
}
export declare function positionADLQuantileEstimation(client: BinanceSignedClient, symbol?: string): Promise<PositionADLQuantileEstimationResponse[]>;