UNPKG

rxjs-trading-signals

Version:

The user - defined operator helps users quickly output index values. base trading-signals library

9 lines (8 loc) 339 B
import Big from 'big.js'; import { Observable } from 'rxjs'; import { HighLowClose } from '../utils/HighLowClose'; export interface StochasticResult { stochD: Big; stochK: Big; } export declare const StochasticOscillator: (n: number, m: number, p: number) => (observable: Observable<HighLowClose>) => Observable<StochasticResult>;