UNPKG

@cmike444/supply-and-demand-zones

Version:

A library for identifying supply and demand zones in candlestick data.

9 lines (8 loc) 362 B
import { Candle, SupplyZone } from '../types'; /** * Identifies a drop-base-drop pattern in a series of candlestick data. * * @param candles - Array of Candle objects to evaluate. * @returns A SupplyZone object if the pattern is identified, otherwise `null`. */ export declare function dropBaseDrop(candles: Candle[], localATR?: number): SupplyZone | null;