Files
Bithumb/scripts/04_causal_gt_calibrate.py
xavis d385456867 hybrid DD tier와 Option C 2차(+1000%) 검증을 추가하고 실거래 사이징을 정합한다.
인과 GT leg 엔진·drawdown tier·train 캘리브레이션, Phase 2 Go/No-Go 및 시뮬 리포트를 반영한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-01 16:09:28 +09:00

12 lines
358 B
Python

#!/usr/bin/env python3
"""인과 GT leg 엔진 파라미터 캘리브레이션 (Option C +300% 경로)."""
import runpy
from pathlib import Path
runpy.run_path(str(Path(__file__).resolve().parent / "_bootstrap.py"))
from deepcoin.ground_truth.causal_gt_calibrate import run_causal_gt_calibration
if __name__ == "__main__":
run_causal_gt_calibration()