UNPKG

@react-financial-charts/indicators

Version:
25 lines (24 loc) 851 B
import { STOOptions } from "../calculator/sto"; interface StochasticOscillatorIndicator { (data: any[], options?: { merge: boolean; }): any; id(): number; id(x: number): StochasticOscillatorIndicator; accessor(): any; accessor(x: any): StochasticOscillatorIndicator; stroke(): string | any; stroke(x: string | any): StochasticOscillatorIndicator; fill(): string | any; fill(x: string | any): StochasticOscillatorIndicator; echo(): any; echo(x: any): StochasticOscillatorIndicator; type(): string; type(x: string): StochasticOscillatorIndicator; merge(): any; merge(newMerge: any): StochasticOscillatorIndicator; options(): STOOptions; options(newOptions: STOOptions): StochasticOscillatorIndicator; } export default function (): StochasticOscillatorIndicator; export {};