@cmike444/supply-and-demand-zones
Version:
A library for identifying supply and demand zones in candlestick data.
9 lines (8 loc) • 364 B
TypeScript
import { Candle, DemandZone } from '../types';
/**
* Identifies a drop-base-rally pattern in a series of candlestick data.
*
* @param candles - Array of Candle objects to evaluate.
* @returns A DemandZone object if the pattern is identified, otherwise `null`.
*/
export declare function dropBaseRally(candles: Candle[], localATR?: number): DemandZone | null;