trading-signals
Version:
Technical indicators to run technical analysis with JavaScript / TypeScript.
8 lines (7 loc) • 311 B
TypeScript
import { IndicatorSeries } from '../../base/Indicator.js';
import type { HighLowClose } from '../../base/Candle.type.js';
export declare class TR extends IndicatorSeries<HighLowClose<number>> {
#private;
getRequiredInputs(): number;
update(candle: HighLowClose<number>, replace: boolean): number;
}