rxjs-trading-signals
Version:
The user - defined operator helps users quickly output index values. base trading-signals library
11 lines (10 loc) • 385 B
TypeScript
import { BigSource } from 'big.js';
export declare type KLineBaseInterface = {
id: number;
open: BigSource;
close: BigSource;
low: BigSource;
high: BigSource;
volume: BigSource;
};
export declare const mergeKLine: (interval?: number) => import("rxjs").UnaryFunction<import("rxjs").Observable<KLineBaseInterface>, import("rxjs").Observable<KLineBaseInterface>>;