tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
76 lines • 3.11 kB
TypeScript
/// <reference types="node" />
import { Writable } from 'stream';
import { Filter } from '../types';
import { MultiConnectionRealTimeFeedBase, PoolingClientBase, RealTimeFeedBase } from './realtimefeed';
declare abstract class BinanceRealTimeFeedBase extends MultiConnectionRealTimeFeedBase {
protected abstract wssURL: string;
protected abstract httpURL: string;
protected abstract suffixes: {
[key: string]: string;
};
protected abstract depthRequestRequestWeight: number;
protected _getRealTimeFeeds(exchange: string, filters: Filter<string>[], timeoutIntervalMS?: number, onError?: (error: Error) => void): Generator<BinanceSingleConnectionRealTimeFeed | BinanceFuturesOpenInterestClient, void, unknown>;
}
declare class BinanceFuturesOpenInterestClient extends PoolingClientBase {
private readonly _httpURL;
private readonly _instruments;
constructor(exchange: string, _httpURL: string, _instruments: string[]);
protected poolDataToStream(outputStream: Writable): Promise<void>;
}
declare class BinanceSingleConnectionRealTimeFeed extends RealTimeFeedBase {
protected wssURL: string;
private readonly _httpURL;
private readonly _suffixes;
private readonly _depthRequestRequestWeight;
constructor(exchange: string, filters: Filter<string>[], wssURL: string, _httpURL: string, _suffixes: {
[key: string]: string;
}, _depthRequestRequestWeight: number, timeoutIntervalMS: number | undefined, onError?: (error: Error) => void);
protected mapToSubscribeMessages(filters: Filter<string>[]): any[];
protected messageIsError(message: any): boolean;
protected provideManualSnapshots(filters: Filter<string>[], shouldCancel: () => boolean): Promise<void>;
}
export declare class BinanceRealTimeFeed extends BinanceRealTimeFeedBase {
protected wssURL: string;
protected httpURL: string;
protected suffixes: {
depth: string;
};
protected depthRequestRequestWeight: number;
}
export declare class BinanceJerseyRealTimeFeed extends BinanceRealTimeFeedBase {
protected wssURL: string;
protected httpURL: string;
protected suffixes: {
depth: string;
};
protected depthRequestRequestWeight: number;
}
export declare class BinanceUSRealTimeFeed extends BinanceRealTimeFeedBase {
protected wssURL: string;
protected httpURL: string;
protected suffixes: {
depth: string;
};
protected depthRequestRequestWeight: number;
}
export declare class BinanceFuturesRealTimeFeed extends BinanceRealTimeFeedBase {
protected wssURL: string;
protected httpURL: string;
protected suffixes: {
depth: string;
markPrice: string;
};
protected depthRequestRequestWeight: number;
}
export declare class BinanceDeliveryRealTimeFeed extends BinanceRealTimeFeedBase {
protected wssURL: string;
protected httpURL: string;
protected suffixes: {
depth: string;
markPrice: string;
indexPrice: string;
};
protected depthRequestRequestWeight: number;
}
export {};
//# sourceMappingURL=binance.d.ts.map