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