vol_breakout 멀티종목 tick, vol_live HTML 모니터, 마감 봉만 저장하는 캔들 다운로드, 텔레그램 체결 알림, cron/watch 감시 스크립트 및 테스트를 포함한다. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
442 B
Bash
Executable File
15 lines
442 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# vol_live 모니터 HTTP 서버 — 8766 미수신 시 기동 (cron/수동)
|
|
set -euo pipefail
|
|
# shellcheck source=scripts/_cron_env.sh
|
|
source "$(dirname "$0")/_cron_env.sh"
|
|
|
|
PORT="${VOL_MONITOR_PORT:-8766}"
|
|
export VOL_MONITOR_PORT="$PORT"
|
|
|
|
if curl -sf -o /dev/null --connect-timeout 2 "http://127.0.0.1:${PORT}/vol_live_monitor.html"; then
|
|
exit 0
|
|
fi
|
|
|
|
exec bash "${CRON_PROJECT_ROOT}/scripts/3_run_vol_monitor_serve.sh"
|