UNPKG

@cmike444/supply-and-demand-zones

Version:

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

12 lines (11 loc) 459 B
import { Candle } from "../types"; /** * Determines if a given candle is a bearish explosive candle. * * A bearish explosive candle is defined as a candle that satisfies both * the conditions of being an explosive candle and being bearish. * * @param candle - The candle object to evaluate. * @returns `true` if the candle is both explosive and bearish, otherwise `false`. */ export declare function isBearishExplosiveCandle(candle: Candle): boolean;