From 10ed4ea98d81b5da20deb6f4529efae77f17868a Mon Sep 17 00:00:00 2001 From: Macbook Date: Tue, 9 Jun 2026 14:10:03 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=AC=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/tradeNotification/TradeSignalMiniChart.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/components/tradeNotification/TradeSignalMiniChart.tsx b/frontend/src/components/tradeNotification/TradeSignalMiniChart.tsx index a6a6cf4..604e968 100644 --- a/frontend/src/components/tradeNotification/TradeSignalMiniChart.tsx +++ b/frontend/src/components/tradeNotification/TradeSignalMiniChart.tsx @@ -157,10 +157,7 @@ const TradeSignalMiniChart: React.FC = ({ onNewCandle: handleNewCandle, enabled: enabled && useUpbit, source: chartRealtimeSource, - deepObvHistory: false, - // OBV 있을 때: 200봉만 가져오면 OBV가 0부터 시작 → 신호선과 시각적 발산 보장 - // WARMUP_COUNT(600) 불필요 — 미니차트 지표(OBV SMA-9, W%R 등)는 짧은 웜업으로 충분 - fetchCount: needsDeepObv ? 200 : undefined, + deepObvHistory: needsDeepObv, }), [handleTickUpdate, handleNewCandle, enabled, useUpbit, needsDeepObv, chartRealtimeSource]), );