실시간 차트 보조지표 값 소수점 표시

This commit is contained in:
Macbook
2026-05-30 10:39:50 +09:00
parent 33c2d4b337
commit c7ba13e7ed
23 changed files with 226 additions and 40 deletions
@@ -0,0 +1,12 @@
-- ============================================================
-- V49: 캔들 차트 영역(오버레이 지표) 가격축 라벨·설명 — 보조지표 pane 과 분리
-- chart_series_price_labels = 하단 보조지표 pane (기존)
-- chart_candle_area_price_labels = 캔들·거래량 pane 위 오버레이 (pane 0~1)
-- ============================================================
ALTER TABLE gc_app_settings
ADD COLUMN chart_candle_area_price_labels TINYINT(1) NOT NULL DEFAULT 1
COMMENT '캔들 영역 오버레이 지표 가격축 라벨·설명 (1=ON, 0=OFF)';
UPDATE gc_app_settings
SET chart_candle_area_price_labels = chart_series_price_labels;