UNPKG

@cmike444/supply-and-demand-zones

Version:

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

9 lines (8 loc) 366 B
import { Candle, DemandZone } from '../types'; /** * Identifies a rally-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 rallyBaseRally(candles: Candle[], localATR?: number): DemandZone | null;