feat: Add Trading System page to navigation menu

This commit is contained in:
Bobby (aider) 2025-02-10 23:16:59 -08:00
parent b8c268652f
commit aadd2c517e

View File

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