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