feat: Add Trading System page to navigation menu
This commit is contained in:
parent
b8c268652f
commit
aadd2c517e
@ -673,7 +673,7 @@ def main():
|
|||||||
st.sidebar.title("Navigation")
|
st.sidebar.title("Navigation")
|
||||||
st.session_state.page = st.sidebar.radio(
|
st.session_state.page = st.sidebar.radio(
|
||||||
"Go to",
|
"Go to",
|
||||||
["Trading Journal", "Technical Scanner", "CANSLIM Screener"]
|
["Trading Journal", "Technical Scanner", "CANSLIM Screener", "Trading System"]
|
||||||
)
|
)
|
||||||
|
|
||||||
# Create necessary tables
|
# Create necessary tables
|
||||||
@ -686,6 +686,8 @@ def main():
|
|||||||
technical_scanner_page()
|
technical_scanner_page()
|
||||||
elif st.session_state.page == "CANSLIM Screener":
|
elif st.session_state.page == "CANSLIM Screener":
|
||||||
canslim_screener_page()
|
canslim_screener_page()
|
||||||
|
elif st.session_state.page == "Trading System":
|
||||||
|
trading_system_page()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user