From c72046909b0ee7915bae9b5aa2a51de576f40866 Mon Sep 17 00:00:00 2001 From: ILSEON-RYU Date: Tue, 5 May 2026 00:10:02 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B0=A8=ED=8A=B8=20=EC=BA=94=EB=93=A4=20?= =?UTF-8?q?=EC=88=98=20=EC=B6=95=EC=86=8C=20=E2=80=94=20desktop=2053=20/?= =?UTF-8?q?=20mobile=2014?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 이전: desktop 200 / mobile 53 (mobile 비율 = 53/200 ≈ 26.5%) 이후: desktop 53 / mobile 14 (= 53 × 26.5%, 동일 비율 유지) 요건: "모바일 토글 off 시 기존 mobile 캔들 수, mobile 토글 시 동일 비율로 추가 축소". 비율 보존하면서 전체 축소. Co-Authored-By: Claude Opus 4.7 (1M context) --- app_streamlit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app_streamlit.py b/app_streamlit.py index 2156274..99fb014 100644 --- a/app_streamlit.py +++ b/app_streamlit.py @@ -1014,7 +1014,8 @@ def main(): with col5d: mobile_mode = st.checkbox("모바일", value=False) - candle_limit = 53 if mobile_mode else 200 + # 데스크톱: 53 (기존 모바일 캔들 수). 모바일: 14 (= 53 × 53/200, 기존 비율 유지) + candle_limit = 14 if mobile_mode else 53 with alert_state.alert_lock: alert_state.alert_symbol = symbol