UNPKG

@neabyte/candlestick-cli

Version:

Beautiful terminal candlestick charts with real-time trading data. Create stunning ASCII art charts directly in your terminal with support for live market data, custom colors, and professional trading visualization.

10 lines (9 loc) 181 B
export interface MarketData { timestamp: number; open: number; high: number; low: number; close: number; volume: number; } export * from './candlestick.js';