feat: 新增 ChanMacro 宏观 regime 检测模块

This commit is contained in:
jackyu66git
2026-08-20 16:03:25 +08:00
parent 340676bfbd
commit 29cff47f98
48 changed files with 5846 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python3
"""
main.py — ChanMacro entry point.
CLI: python main.py fetch|score|regime|serve
"""
import sys
import os
# Ensure package root is on path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from cli import main
if __name__ == "__main__":
main()