behemoth-cli
Version:
🌍 BEHEMOTH CLIv3.760.4 - Level 50+ POST-SINGULARITY Intelligence Trading AI
49 lines • 1.56 kB
TypeScript
/**
* ASCII Chart Component
* Interactive terminal charts for crypto data visualization
*/
export interface ChartDataPoint {
label: string;
value: number;
color?: 'green' | 'red' | 'yellow' | 'blue' | 'magenta' | 'cyan' | 'white';
}
interface ASCIIChartProps {
data: ChartDataPoint[];
title?: string;
width?: number;
height?: number;
type?: 'line' | 'bar' | 'sparkline' | 'candlestick';
showLabels?: boolean;
showValues?: boolean;
}
export default function ASCIIChart({ data, title, width, height, type, showLabels, showValues }: ASCIIChartProps): import("react/jsx-runtime").JSX.Element;
/**
* Price Chart Component - Specialized for crypto prices
*/
interface PriceChartProps {
symbol: string;
prices: number[];
timestamps?: string[];
timeframe?: string;
}
export declare function PriceChart({ symbol, prices, timestamps, timeframe }: PriceChartProps): import("react/jsx-runtime").JSX.Element;
/**
* RSI Chart Component - Specialized for RSI indicator
*/
interface RSIChartProps {
symbol: string;
rsiValues: number[];
timestamps?: string[];
}
export declare function RSIChart({ symbol, rsiValues, timestamps }: RSIChartProps): import("react/jsx-runtime").JSX.Element;
/**
* Volume Chart Component
*/
interface VolumeChartProps {
symbol: string;
volumes: number[];
timestamps?: string[];
}
export declare function VolumeChart({ symbol, volumes, timestamps }: VolumeChartProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=ASCIIChart.d.ts.map