UI: - web/lib/api.ts: 백엔드 모든 엔드포인트의 클라이언트 + 타입 (Symbol, ChartPayload, PredictResponse, LatestPredictionResponse, MetricsResponse, NewsResponse). NEXT_PUBLIC_API_BASE 자동 정규화. - web/components/SearchBox: 디바운스 검색, seed_only 토글, trigram + prefix. - web/components/StockChart: lightweight-charts 캔들 + 예측 overlay (median dashed + q10/q90 점선). base_date 에서 target_date 까지 이어 붙임. - web/components/PredictionPanel: "예상차트 보기" 버튼 → POST /api/predict → user_triggered=TRUE 저장 → onResult 콜백으로 StockChart 에 반영. 표로 +1/+3/+5거래일 direction, prob_up/flat/down, expected_return, ci_low~ci_high 표시. - web/components/MetricsPanel: 최근 30일 hit_rate / mae. - web/components/NewsList: 최근 뉴스 + 감성 라벨/점수. - web/app/page.tsx: 검색 페이지. - web/app/[code]/page.tsx: 종목 상세 (차트 + 패널 + 메트릭 + 뉴스). TypeScript 보강 (사용자 요청 "typescript도 추가해서 나중에 수정하기 쉽게"): - tsconfig.json: strict 외에 forceConsistentCasingInFileNames, noFallthroughCasesInSwitch, noImplicitOverride 추가. - package.json: typecheck (tsc --noEmit), check (typecheck + lint) 스크립트, eslint + eslint-config-next 14.2.3. - .eslintrc.json: next/core-web-vitals. - package-lock.json 커밋 (재현 가능한 dep). 백엔드: - pyproject.toml: [tool.mypy] 추가. strict_optional, no_implicit_optional, check_untyped_defs. 3rd-party stub 없는 pykrx/chronos 등은 ignore. 검증: `npx tsc --noEmit` 통과 (exit=0). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
168 lines
5.0 KiB
TypeScript
168 lines
5.0 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useRef } from "react";
|
|
import {
|
|
createChart,
|
|
type CandlestickData,
|
|
type IChartApi,
|
|
type ISeriesApi,
|
|
type LineData,
|
|
type UTCTimestamp,
|
|
} from "lightweight-charts";
|
|
import type { ChartPayload, LatestPredictionResponse } from "../lib/api";
|
|
|
|
type Props = {
|
|
chart: ChartPayload;
|
|
prediction?: LatestPredictionResponse | null;
|
|
};
|
|
|
|
function dateToUtcTs(d: string): UTCTimestamp {
|
|
// 'YYYY-MM-DD' → UTC midnight epoch seconds
|
|
return (Date.UTC(
|
|
Number(d.slice(0, 4)),
|
|
Number(d.slice(5, 7)) - 1,
|
|
Number(d.slice(8, 10)),
|
|
) / 1000) as UTCTimestamp;
|
|
}
|
|
|
|
export function StockChart({ chart, prediction }: Props) {
|
|
const containerRef = useRef<HTMLDivElement | null>(null);
|
|
const chartRef = useRef<IChartApi | null>(null);
|
|
const candleRef = useRef<ISeriesApi<"Candlestick"> | null>(null);
|
|
const predRef = useRef<ISeriesApi<"Line"> | null>(null);
|
|
const predLowRef = useRef<ISeriesApi<"Line"> | null>(null);
|
|
const predHighRef = useRef<ISeriesApi<"Line"> | null>(null);
|
|
|
|
// create chart once
|
|
useEffect(() => {
|
|
if (!containerRef.current) return;
|
|
const c = createChart(containerRef.current, {
|
|
layout: {
|
|
background: { color: "transparent" },
|
|
textColor: "#cbd5e1",
|
|
},
|
|
grid: {
|
|
vertLines: { color: "#1f2937" },
|
|
horzLines: { color: "#1f2937" },
|
|
},
|
|
rightPriceScale: { borderColor: "#374151" },
|
|
timeScale: { borderColor: "#374151", timeVisible: false },
|
|
autoSize: true,
|
|
});
|
|
const candle = c.addCandlestickSeries({
|
|
upColor: "#22c55e",
|
|
downColor: "#ef4444",
|
|
borderUpColor: "#22c55e",
|
|
borderDownColor: "#ef4444",
|
|
wickUpColor: "#22c55e",
|
|
wickDownColor: "#ef4444",
|
|
});
|
|
chartRef.current = c;
|
|
candleRef.current = candle;
|
|
return () => {
|
|
c.remove();
|
|
chartRef.current = null;
|
|
candleRef.current = null;
|
|
predRef.current = null;
|
|
predLowRef.current = null;
|
|
predHighRef.current = null;
|
|
};
|
|
}, []);
|
|
|
|
// push candle data
|
|
useEffect(() => {
|
|
if (!candleRef.current) return;
|
|
const data: CandlestickData[] = chart.ohlcv
|
|
.filter((p) => p.open !== null && p.high !== null && p.low !== null && p.close !== null)
|
|
.map((p) => ({
|
|
time: dateToUtcTs(p.date),
|
|
open: p.open as number,
|
|
high: p.high as number,
|
|
low: p.low as number,
|
|
close: p.close as number,
|
|
}));
|
|
candleRef.current.setData(data);
|
|
chartRef.current?.timeScale().fitContent();
|
|
}, [chart]);
|
|
|
|
// push prediction overlay
|
|
useEffect(() => {
|
|
if (!chartRef.current) return;
|
|
// remove previous overlay
|
|
if (predRef.current) {
|
|
chartRef.current.removeSeries(predRef.current);
|
|
predRef.current = null;
|
|
}
|
|
if (predLowRef.current) {
|
|
chartRef.current.removeSeries(predLowRef.current);
|
|
predLowRef.current = null;
|
|
}
|
|
if (predHighRef.current) {
|
|
chartRef.current.removeSeries(predHighRef.current);
|
|
predHighRef.current = null;
|
|
}
|
|
if (!prediction || !prediction.found || !prediction.steps?.length) return;
|
|
const baseDate = prediction.base_date!;
|
|
const baseClose = prediction.base_close;
|
|
if (!baseClose) return;
|
|
const sorted = [...prediction.steps].sort((a, b) => a.horizon - b.horizon);
|
|
|
|
const med: LineData[] = [
|
|
{ time: dateToUtcTs(baseDate), value: baseClose },
|
|
...sorted
|
|
.filter((s) => s.point_close !== null)
|
|
.map((s) => ({ time: dateToUtcTs(s.target_date), value: s.point_close as number })),
|
|
];
|
|
const lo: LineData[] = [
|
|
{ time: dateToUtcTs(baseDate), value: baseClose },
|
|
...sorted
|
|
.filter((s) => s.ci_low !== null)
|
|
.map((s) => ({ time: dateToUtcTs(s.target_date), value: s.ci_low as number })),
|
|
];
|
|
const hi: LineData[] = [
|
|
{ time: dateToUtcTs(baseDate), value: baseClose },
|
|
...sorted
|
|
.filter((s) => s.ci_high !== null)
|
|
.map((s) => ({ time: dateToUtcTs(s.target_date), value: s.ci_high as number })),
|
|
];
|
|
|
|
const medLine = chartRef.current.addLineSeries({
|
|
color: "#a78bfa",
|
|
lineWidth: 2,
|
|
lineStyle: 2, // dashed
|
|
priceLineVisible: false,
|
|
lastValueVisible: true,
|
|
title: "예측 median",
|
|
});
|
|
medLine.setData(med);
|
|
const loLine = chartRef.current.addLineSeries({
|
|
color: "#7c3aed",
|
|
lineWidth: 1,
|
|
lineStyle: 1,
|
|
priceLineVisible: false,
|
|
lastValueVisible: false,
|
|
title: "q10",
|
|
});
|
|
loLine.setData(lo);
|
|
const hiLine = chartRef.current.addLineSeries({
|
|
color: "#7c3aed",
|
|
lineWidth: 1,
|
|
lineStyle: 1,
|
|
priceLineVisible: false,
|
|
lastValueVisible: false,
|
|
title: "q90",
|
|
});
|
|
hiLine.setData(hi);
|
|
predRef.current = medLine;
|
|
predLowRef.current = loLine;
|
|
predHighRef.current = hiLine;
|
|
chartRef.current.timeScale().fitContent();
|
|
}, [prediction]);
|
|
|
|
return (
|
|
<div className="h-[460px] w-full rounded-md border border-zinc-800 bg-zinc-900/30 p-2">
|
|
<div ref={containerRef} className="h-full w-full" />
|
|
</div>
|
|
);
|
|
}
|