9 lines
332 B
Bash
Executable File
9 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
for strat in MOMENTUM BREAKOUT SCALP TAIL; do
|
|
echo "=== $strat 호가 필터 추천 ==="
|
|
python3 scripts/apply_optuna_ob_consensus.py --strategy $strat --n-trials 1000
|
|
|
|
echo "=== $strat 휩쏘 필터 추천 ==="
|
|
python3 scripts/apply_optuna_whipsaw_consensus.py --strategy $strat --n-trials 500
|
|
done
|