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

5
scratch/check_html.py Normal file
View File

@@ -0,0 +1,5 @@
from urllib.request import urlopen
html = urlopen("http://127.0.0.1:5050/").read().decode('utf-8')
print("tab-tail exists:", "id=\"tab-tail\"" in html)
idx = html.find('id="tab-tail"')
print(html[idx:idx+200])