UNPKG

@showr/indicators

Version:

Technical indicators for Trading made with Showr

10 lines (9 loc) 285 B
import { Indicator } from '@showr/core'; interface IIndicatorParamsRSI { attribute?: string; period: number; } export declare class RSI<T = number> extends Indicator<IIndicatorParamsRSI, T> { constructor(name: string | undefined, params: IIndicatorParamsRSI); } export {};