export const TIME_RANGES = [
{ value: '1M', label: '1个月' },
{ value: '3M', label: '3个月' },
{ value: '6M', label: '6个月' },
{ value: '1Y', label: '1年' },
{ value: '2Y', label: '2年' },
{ value: '5Y', label: '5年' },
{ value: 'ALL', label: '全部' }
];
export const REPORT_TYPES = [
{ value: 'comprehensive', label: '综合分析报告' },
{ value: 'financial', label: '财务报表' },
{ value: 'investment', label: '投资建议报告' },
{ value: 'performance', label: '业绩报告' },
{ value: 'risk', label: '风险分析' },
{ value: 'competitor', label: '竞争对手分析' }
];
export const COMPANIES = [
{
id: 'NVDA',
symbol: 'NVDA',
name: 'NVIDIA Corporation',
sector: 'Technology',
industry: 'Semiconductors'
},
{
id: 'AAPL',
symbol: 'AAPL',
name: 'Apple Inc.',
sector: 'Technology',
industry: 'Consumer Electronics'
},
{
id: 'MSFT',
symbol: 'MSFT',
name: 'Microsoft Corporation',
sector: 'Technology',
industry: 'Software'
},
{
id: 'GOOGL',
symbol: 'GOOGL',
name: 'Alphabet Inc.',
sector: 'Technology',
industry: 'Internet Services'
},
{
id: 'TSLA',
symbol: 'TSLA',
name: 'Tesla Inc.',
sector: 'Automotive',
industry: 'Electric Vehicles'
},
{
id: 'AMZN',
symbol: 'AMZN',
name: 'Amazon.com Inc.',
sector: 'Technology',
industry: 'E-commerce'
},
{
id: 'META',
symbol: 'META',
name: 'Meta Platforms Inc.',
sector: 'Technology',
industry: 'Social Media'
},
{
id: 'NFLX',
symbol: 'NFLX',
name: 'Netflix Inc.',
sector: 'Technology',
industry: 'Streaming Services'
},
{
id: 'AMD',
symbol: 'AMD',
name: 'Advanced Micro Devices',
sector: 'Technology',
industry: 'Semiconductors'
},
{
id: 'INTC',
symbol: 'INTC',
name: 'Intel Corporation',
sector: 'Technology',
industry: 'Semiconductors'
}
];
export const BRAND_CONFIG = {
name: '恺南AI财务分析',
tagline: 'AI驱动的智能财务洞察',
description: '智能财务数据分析和报告生成平台',
version: '1.0.0',
copyright: '© 2024 恺南 Kennan. 保留所有权利。'
};