feat(viz): 添加 Streamlit 可视化应用

- 创建 streamlit_app.py: 交互式回测结果展示
- 支持4个标签页:策略概览、收益分析、调仓记录、品种详情
- 集成 Plotly 图表:收益对比、胜率散点图、月度收益、收益分布
- 支持数据筛选和导出功能
- 添加启动脚本和依赖文件
This commit is contained in:
2026-05-08 20:56:38 +08:00
parent a539a7d096
commit d47a29f09e
3 changed files with 395 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# Streamlit 可视化应用依赖
streamlit>=1.28.0
plotly>=5.15.0
pandas>=2.0.0
requests>=2.31.0