From 42b9199ed3eb3f23ce9b8871458578b01f60e67f Mon Sep 17 00:00:00 2001 From: ILSEON-RYU Date: Wed, 29 Apr 2026 18:39:00 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B0=B1=EC=8B=A0=EC=8B=9C=EA=B0=84=20KST=20?= =?UTF-8?q?=EC=9A=B0=EC=B8=A1=EC=83=81=EB=8B=A8=20=EA=B3=A0=EC=A0=95=20+?= =?UTF-8?q?=20StochRSI=20K=20=EB=B9=A8=EA=B0=84=EC=8B=A4=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app_streamlit.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app_streamlit.py b/app_streamlit.py index ee37335..d0eccfa 100644 --- a/app_streamlit.py +++ b/app_streamlit.py @@ -581,6 +581,8 @@ def main(): with col4: refresh_sec = st.number_input("๊ฐฑ์‹ (์ดˆ)", min_value=10, max_value=300, value=30) with col5: + now_kst = datetime.now(timezone.utc) + KST + st.markdown(f"
๐Ÿ• ๋งˆ์ง€๋ง‰ ๊ฐฑ์‹ : {now_kst.strftime('%Y-%m-%d %H:%M:%S')} KST
", unsafe_allow_html=True) col5a, col5b, col5c, col5d = st.columns(4) with col5a: refresh_btn = st.button("๐Ÿ”„ ์ƒˆ๋กœ๊ณ ์นจ") @@ -623,7 +625,7 @@ def main(): "modeBarButtonsToRemove": ["lasso2d", "select2d"], }) - st.caption(f"๋งˆ์ง€๋ง‰ ๊ฐฑ์‹ : {datetime.now().strftime('%H:%M:%S')}") + except Exception as e: st.error(f"๋ฐ์ดํ„ฐ ๋กœ๋“œ ์˜ค๋ฅ˜: {e}")