From aadd2c517e739b583e58201f588d3840fa46945e Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Mon, 10 Feb 2025 23:16:59 -0800 Subject: [PATCH] feat: Add Trading System page to navigation menu --- src/streamlit_app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/streamlit_app.py b/src/streamlit_app.py index 135343f..4c8f2e6 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -673,7 +673,7 @@ def main(): st.sidebar.title("Navigation") st.session_state.page = st.sidebar.radio( "Go to", - ["Trading Journal", "Technical Scanner", "CANSLIM Screener"] + ["Trading Journal", "Technical Scanner", "CANSLIM Screener", "Trading System"] ) # Create necessary tables @@ -686,6 +686,8 @@ def main(): technical_scanner_page() elif st.session_state.page == "CANSLIM Screener": canslim_screener_page() + elif st.session_state.page == "Trading System": + trading_system_page() if __name__ == "__main__": main()