增加选股策略

This commit is contained in:
oficcejo
2025-12-14 11:42:10 +08:00
parent 9ffeb0dc91
commit 941a6cd541
5 changed files with 743 additions and 1 deletions
+14 -1
View File
@@ -314,7 +314,14 @@ def main():
if st.button("🐂 低价擒牛", width='stretch', key="nav_low_price_bull", help="低价高成长股票筛选策略"):
st.session_state.show_low_price_bull = True
for key in ['show_history', 'show_monitor', 'show_config', 'show_sector_strategy',
'show_longhubang', 'show_portfolio', 'show_main_force']:
'show_longhubang', 'show_portfolio', 'show_main_force', 'show_small_cap']:
if key in st.session_state:
del st.session_state[key]
if st.button("📊 小市值策略", width='stretch', key="nav_small_cap", help="小盘高成长股票筛选策略"):
st.session_state.show_small_cap = True
for key in ['show_history', 'show_monitor', 'show_config', 'show_sector_strategy',
'show_longhubang', 'show_portfolio', 'show_main_force', 'show_low_price_bull']:
if key in st.session_state:
del st.session_state[key]
@@ -473,6 +480,12 @@ def main():
from low_price_bull_ui import display_low_price_bull
display_low_price_bull()
return
# 检查是否显示小市值策略
if 'show_small_cap' in st.session_state and st.session_state.show_small_cap:
from small_cap_ui import display_small_cap
display_small_cap()
return
# 检查是否显示智策板块
if 'show_sector_strategy' in st.session_state and st.session_state.show_sector_strategy: