This commit is contained in:
Dobromir Popov
2025-05-26 23:04:52 +03:00
parent 374da1b8ac
commit 392dbb4b61
7 changed files with 894 additions and 17 deletions

36
.vscode/launch.json vendored
View File

@ -84,6 +84,29 @@
},
"preLaunchTask": "Kill Stale Processes"
},
{
"name": "🎯 Enhanced Scalping Dashboard (1s Bars + 15min Cache)",
"type": "python",
"request": "launch",
"program": "run_enhanced_scalping_dashboard.py",
"args": [
"--host",
"127.0.0.1",
"--port",
"8051",
"--log-level",
"INFO"
],
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"ENABLE_ENHANCED_DASHBOARD": "1",
"TICK_CACHE_MINUTES": "15",
"CANDLE_TIMEFRAME": "1s"
},
"preLaunchTask": "Kill Stale Processes"
},
{
"name": "🌙 Overnight Training Monitor (504M Model)",
"type": "python",
@ -245,6 +268,19 @@
"group": "Development",
"order": 3
}
},
{
"name": "🎯 Enhanced Trading System (1s Bars + Cache + Monitor)",
"configurations": [
"🎯 Enhanced Scalping Dashboard (1s Bars + 15min Cache)",
"🌙 Overnight Training Monitor (504M Model)"
],
"stopAll": true,
"presentation": {
"hidden": false,
"group": "Enhanced Trading",
"order": 4
}
}
]
}