UNPKG

@cmike444/supply-and-demand-zones

Version:

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

12 lines (11 loc) 291 B
/** * Enum representing the direction of a zone in the supply and demand system. * * @enum {number} * @property {number} SUPPLY - Represents a supply zone. * @property {number} DEMAND - Represents a demand zone. */ export declare enum ZONE_DIRECTION { SUPPLY = 0, DEMAND = 1 }