@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.
20 lines (19 loc) • 481 B
TypeScript
export interface CliOptions {
file?: string;
symbol?: string;
timeframe?: string;
limit?: number;
title?: string;
width?: number;
height?: number;
bearColor?: string;
bullColor?: string;
volume?: boolean;
volumeHeight?: number;
output?: string;
background?: 'light' | 'dark';
watch?: boolean;
interval?: number;
}
export type RGBColor = [number, number, number];
export declare const DEFAULT_TITLE = "Candlestick Chart";