@exchanges/binance
Version:
Exchange provider for Binance API
13 lines (12 loc) • 503 B
TypeScript
import { BinanceClient } from '../../../clients';
export interface CompositeIndexSymbolInformationStreamsResponse {
eventTime: Date;
symbol: string;
price: number;
composition: {
baseAsset: string;
weightInQuantity: number;
weightInPercentage: number;
}[];
}
export declare function compositeIndexSymbolInformationStreams(client: BinanceClient, symbol: string, callback: (data: CompositeIndexSymbolInformationStreamsResponse, error?: any) => any): () => any;