UNPKG

@showr/indicators

Version:

Technical indicators for Trading made with Showr

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