3분~일봉 GT 타점 분석(03c), leg 체결 순서 수정, 총자산 90% 검증 루프, walk-forward Go/No-Go 시뮬, monitor·live_trader 및 reference 문서를 포함한다. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
362 B
Python
12 lines
362 B
Python
#!/usr/bin/env python3
|
|
"""GT 총자산 90% 목표 MTF 프로필 반복 캘리브레이션 (03b 스냅샷)."""
|
|
import runpy
|
|
from pathlib import Path
|
|
|
|
runpy.run_path(str(Path(__file__).resolve().parent / "_bootstrap.py"))
|
|
|
|
from deepcoin.matching.gt_profile_iterate import run_profile_calibration_loop
|
|
|
|
if __name__ == "__main__":
|
|
run_profile_calibration_loop()
|