UNPKG

@react-stockcharts3/indicators

Version:

Indicators for react-stockcharts3

13 lines (12 loc) 291 B
export interface RSIOptions { windowSize: number; sourcePath?: string; } export default function (): { (data: any[]): any[]; undefinedLength(): number; options(newOptions?: RSIOptions): { windowSize: number; sourcePath: string; } | /*elided*/ any; };