order flow WIP, chart broken

This commit is contained in:
Dobromir Popov
2025-06-18 13:51:08 +03:00
parent 5bce17a21a
commit e238ce374b
16 changed files with 1768 additions and 1333 deletions

4
.vscode/launch.json vendored
View File

@ -6,7 +6,7 @@
"name": "📊 Enhanced Web Dashboard",
"type": "python",
"request": "launch",
"program": "main_clean.py",
"program": "main.py",
"args": [
"--port",
"8050"
@ -24,7 +24,7 @@
"name": "🔬 System Test & Validation",
"type": "python",
"request": "launch",
"program": "main_clean.py",
"program": "main.py",
"args": [
"--mode",
"test"

2
.vscode/tasks.json vendored
View File

@ -7,7 +7,7 @@
"command": "python",
"args": [
"-c",
"import psutil; [p.kill() for p in psutil.process_iter() if any(x in p.name().lower() for x in ['python', 'tensorboard']) and any(x in ' '.join(p.cmdline()) for x in ['scalping', 'training', 'tensorboard']) and p.pid != psutil.Process().pid]; print('Stale processes killed')"
"import psutil; [p.kill() for p in psutil.process_iter() if any(x in p.name().lower() for x in [\"python\", \"tensorboard\"]) and any(x in \" \".join(p.cmdline()) for x in [\"scalping\", \"training\", \"tensorboard\"]) and p.pid != psutil.Process().pid]; print(\"Stale processes killed\")"
],
"presentation": {
"reveal": "silent",