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