feat(vol_breakout): 15m 현물 롱 라이브·모니터·cron 운영 추가
vol_breakout 멀티종목 tick, vol_live HTML 모니터, 마감 봉만 저장하는 캔들 다운로드, 텔레그램 체결 알림, cron/watch 감시 스크립트 및 테스트를 포함한다. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
13
scripts/3_serve_vol_monitor.py
Normal file
13
scripts/3_serve_vol_monitor.py
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
"""vol_live 모니터 HTTP 서버 — 3_run_vol_monitor.py --serve-only 래퍼."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import runpy
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
if __name__ == "__main__":
|
||||
target = Path(__file__).resolve().parent / "3_run_vol_monitor.py"
|
||||
sys.argv = [str(target), "--serve-only", *sys.argv[1:]]
|
||||
runpy.run_path(str(target), run_name="__main__")
|
||||
Reference in New Issue
Block a user