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

4
scratch/check_db.py Normal file
View File

@@ -0,0 +1,4 @@
from kis_trader.database.db_manager import TradeDBExt
db = TradeDBExt()
cols = [r['Field'] for r in db.conn.execute('SHOW COLUMNS FROM env_config').fetchall()]
print([c for c in cols if 'SOURCE' in c or 'PROVIDER' in c])