Files
KisStock/constants.tsx
2026-02-01 15:25:08 +09:00

56 lines
2.5 KiB
TypeScript

import { MarketType, StockItem } from './types';
export const COLORS = {
up: 'text-red-500',
down: 'text-blue-500',
neutral: 'text-slate-500',
primary: 'blue-600',
accent: 'indigo-600'
};
export const MOCK_STOCKS: StockItem[] = [
{
code: '005930', name: '삼성전자', price: 73200, change: 800, changePercent: 1.1, market: MarketType.DOMESTIC, volume: 15234000,
per: 15.2, pbr: 1.1, roe: 12.5, marketCap: 4370000, dividendYield: 2.1,
aiScoreBuy: 85, aiScoreSell: 20,
openPrice: 72500, highPrice: 73500, lowPrice: 72400,
themes: ['반도체', 'AI/인공지능', '스마트폰', 'HBM']
},
{
code: '000660', name: 'SK하이닉스', price: 124500, change: -1200, changePercent: -0.96, market: MarketType.DOMESTIC, volume: 2100000,
per: 22.4, pbr: 1.5, roe: 8.2, marketCap: 906000, dividendYield: 1.2,
aiScoreBuy: 65, aiScoreSell: 45,
openPrice: 126000, highPrice: 126500, lowPrice: 124000,
themes: ['반도체', 'HBM', '엔비디아 관련주']
},
{
code: '035420', name: 'NAVER', price: 215000, change: 4500, changePercent: 2.14, market: MarketType.DOMESTIC, volume: 850000,
per: 35.1, pbr: 2.3, roe: 15.8, marketCap: 352000, dividendYield: 0.5,
aiScoreBuy: 72, aiScoreSell: 30,
openPrice: 211000, highPrice: 216500, lowPrice: 210500,
themes: ['플랫폼', '생성형AI', '광고/커머스']
},
{
code: 'AAPL', name: 'Apple Inc.', price: 189.43, change: 1.25, changePercent: 0.66, market: MarketType.OVERSEAS, volume: 45000000,
per: 31.5, pbr: 48.2, roe: 160.1, marketCap: 3020000, dividendYield: 0.5,
aiScoreBuy: 90, aiScoreSell: 15,
openPrice: 188.50, highPrice: 190.20, lowPrice: 188.10,
themes: ['빅테크', '스마트폰', '자율주행']
},
{
code: 'TSLA', name: 'Tesla Inc.', price: 234.12, change: -4.50, changePercent: -1.89, market: MarketType.OVERSEAS, volume: 110000000,
per: 78.2, pbr: 15.1, roe: 22.4, marketCap: 745000, dividendYield: 0,
aiScoreBuy: 40, aiScoreSell: 75,
openPrice: 238.10, highPrice: 239.50, lowPrice: 233.80,
themes: ['전기차', '자율주행', '에너지저장장치']
},
{
code: 'NVDA', name: 'NVIDIA Corp.', price: 485.12, change: 12.30, changePercent: 2.6, market: MarketType.OVERSEAS, volume: 32000000,
per: 65.4, pbr: 35.2, roe: 91.5, marketCap: 1200000, dividendYield: 0.1,
aiScoreBuy: 95, aiScoreSell: 10,
openPrice: 480.00, highPrice: 488.50, lowPrice: 479.20,
themes: ['반도체', 'AI/인공지능', '데이터센터']
}
];