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()