@cmike444/supply-and-demand-zones
Version:
A library for identifying supply and demand zones in candlestick data.
15 lines (14 loc) • 522 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isBullishCandle = isBullishCandle;
/**
* Determines if a given candlestick represents a bullish candle.
* A candlestick is considered bullish if the closing price is higher than the opening price.
*
* @param candle - The candlestick object containing `open` and `close` properties.
* @returns `true` if the candlestick is bullish, otherwise `false`.
*/
function isBullishCandle(candle) {
return candle.close > candle.open;
}
;