refactor: enhance Optuna backtesting framework, optimize orderbook filtering, and update database management utilities.

This commit is contained in:
Your Name
2026-08-12 10:19:19 +09:00
parent cb7e5037a0
commit c6bd62a25f
218 changed files with 31613 additions and 759 deletions

8
scratch/run_fast_recommend.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/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