fast-technical-indicators
Version:
High-performance technical indicators with zero dependencies - compatible with technicalindicators package
13 lines (12 loc) • 434 B
TypeScript
import { CandleData } from '../types';
export interface BearishHammerStickInput {
candles: CandleData[];
}
export declare function bearishhammerstick(input: BearishHammerStickInput): boolean[];
export declare class BearishHammerStick {
private candles;
constructor(input?: BearishHammerStickInput);
nextValue(candle: CandleData): boolean;
getResult(): boolean[];
static calculate: typeof bearishhammerstick;
}