MoFin 初始提交

完整数据采集+分析管道:
- market_watch.py:90行业板块采集(同花顺/东方财富)
- 市场精选推荐 cron:全市场分析+候选池+星级推荐
- price_monitor.py:持仓/自选高频价格监控
- refresh_mtf_cache.py:多周期K线缓存
- 策略评估/知识萃取管道

文档:docs/ 含完整需求+架构设计
注意:尚未配置 git remote,笑笑接手后自行配置
This commit is contained in:
知微 (MoFin)
2026-06-20 12:04:21 +08:00
commit aa0f740381
950 changed files with 189006 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env python3
"""收盘后全量策略重评(no_agent 脚本)"""
import sys, json
sys.path.insert(0, "/home/hmo/web-dashboard")
from strategy_lifecycle import regenerate_all, load_macro_context
bias, desc = load_macro_context()
print(f"宏观参考: {desc} (bias={bias})")
r = regenerate_all(stdout=False)
print(f"{json.dumps(r, ensure_ascii=False, indent=2)}")