#!/usr/bin/env bash # vol_breakout 현물 롱 tick (cron 1분) set -euo pipefail # shellcheck source=scripts/_cron_env.sh source "$(dirname "$0")/_cron_env.sh" ensure_cron_log_dir "data/spot/operations" LOCKDIR="data/spot/operations/vol.tick.lock.d" if ! acquire_cron_lock "$LOCKDIR" "scripts/3_run_vol_breakout.py" 600; then exit 0 fi PYTHON="$(resolve_bithumb_python)" || exit 1 "$PYTHON" scripts/3_run_vol_breakout.py "$@"