#!/usr/bin/env python3
"""long-term-reversal — decile(10组)回测复现脚本。
信号与口径: scripts/lib/factors.py 的 sig_lt_reversal(与报告口径逐字对齐)。
运行: python3 -m lib.run_decile_batch long-term-reversal
输出: 本目录 backtest_result.json(报告页所有数字的来源)。
"""
import subprocess, sys
sys.exit(subprocess.run(["python3", "-m", "lib.run_decile_batch", "long-term-reversal"],
                        cwd="/root/cb-allotment/scripts").returncode)
