Files
Bithumb/scripts/05_run_monitor.py
dsyoon 2cb67c42b3 GT MTF 프로필·캘리브레이션과 04 매칭/시뮬/실거래 파이프라인을 추가한다.
3분~일봉 GT 타점 분석(03c), leg 체결 순서 수정, 총자산 90% 검증 루프,
walk-forward Go/No-Go 시뮬, monitor·live_trader 및 reference 문서를 포함한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-31 11:27:50 +09:00

21 lines
733 B
Python

#!/usr/bin/env python3
"""05단계: WLD 실시간 모니터 루프 (04 규칙 알림 포함)."""
import argparse
import runpy
from pathlib import Path
runpy.run_path(str(Path(__file__).resolve().parent / "_bootstrap.py"))
from deepcoin.ops.monitor_coin import MonitorCoin
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="WLD 모니터")
parser.add_argument("--once", action="store_true", help="1회만 출력 후 종료")
parser.add_argument("--no-rules", action="store_true", help="04 규칙 평가 생략")
args = parser.parse_args()
mon = MonitorCoin(cooldown_file=None, check_rules=not args.no_rules)
if args.once:
mon.monitor_wld()
else:
mon.run_schedule()