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.

17 lines (16 loc) 584 B
import type { ChartConstants, ChartLabels } from './types/candlestick.js'; export declare const CONSTANTS: ChartConstants; export declare const LABELS: ChartLabels; export declare const COLORS: { readonly blue: "\u001B[94m"; readonly bold: "\u001B[01m"; readonly cyan: "\u001B[96m"; readonly gray: "\u001B[90m"; readonly grey: "\u001B[90m"; readonly green: "\u001B[92m"; readonly magenta: "\u001B[95m"; readonly red: "\u001B[91m"; readonly white: "\u001B[97m"; readonly yellow: "\u001B[93m"; }; export declare const RESET_COLOR = "\u001B[00m";