refactor: Remove navigation buttons from strategy guide page

This commit is contained in:
Bobby (aider) 2025-02-10 23:32:07 -08:00
parent c1445fc5e3
commit 695259f3be

View File

@ -712,12 +712,6 @@ def strategy_guide_page():
- Potential breakout zones - Potential breakout zones
* Set price alerts * 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 # Morning Trading Section
with st.expander("2. Trading Strategy (6:30-7:30 AM PST)"): with st.expander("2. Trading Strategy (6:30-7:30 AM PST)"):
@ -788,12 +782,6 @@ def strategy_guide_page():
* Check scanner results * Check scanner results
* Refine strategies * 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(): def main():
st.set_page_config(page_title="Trading System", layout="wide") st.set_page_config(page_title="Trading System", layout="wide")