trading-signals
Version:
Technical indicators to run technical analysis with JavaScript / TypeScript.
12 lines (11 loc) • 416 B
TypeScript
import { IndicatorSeries } from '../../base/Indicator.js';
import type { HighLow } from '../../base/Candle.type.js';
export type BreakoutBarLowConfig = {
lookback: number;
};
export declare class BreakoutBarLow extends IndicatorSeries<HighLow> {
#private;
constructor(config: BreakoutBarLowConfig);
getRequiredInputs(): number;
update(candle: HighLow<number>, replace: boolean): number | null;
}