rxjs-trading-signals
Version:
The user - defined operator helps users quickly output index values. base trading-signals library
11 lines (10 loc) • 456 B
TypeScript
import Big from 'big.js';
import { Observable } from 'rxjs';
import { HighLowClose } from '../utils/HighLowClose';
import { MovingAverageTypes } from '../utils/MovingAverageTypes';
export declare type ABANDSResult = {
lower: Big;
middle: Big;
upper: Big;
};
export declare const AccelerationBands: (interval: number, width: number, SmoothingIndicator?: MovingAverageTypes) => (observable: Observable<HighLowClose>) => Observable<ABANDSResult>;