UNPKG

@showr/indicators

Version:

Technical indicators for Trading made with Showr

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