From 695259f3be2f77a22aef7c0aa20327b28888e2f1 Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Mon, 10 Feb 2025 23:32:07 -0800 Subject: [PATCH] refactor: Remove navigation buttons from strategy guide page --- src/streamlit_app.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/streamlit_app.py b/src/streamlit_app.py index 1282372..4493fd3 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -712,12 +712,6 @@ def strategy_guide_page(): - Potential breakout zones * Set price alerts """) - - col1, col2 = st.columns(2) - with col1: - if st.button("Go to SunnyBands Scanner"): - st.session_state.page = "Technical Scanner" - st.rerun() # Morning Trading Section with st.expander("2. Trading Strategy (6:30-7:30 AM PST)"): @@ -788,12 +782,6 @@ def strategy_guide_page(): * Check scanner results * Refine strategies """) - - col1, col2 = st.columns(2) - with col1: - if st.button("Go to Trading Journal"): - st.session_state.page = "Trading Journal" - st.rerun() def main(): st.set_page_config(page_title="Trading System", layout="wide")