cob integration wip 2

This commit is contained in:
Dobromir Popov
2025-06-24 18:01:24 +03:00
parent f855ed2cf1
commit 8b85a7275e
8 changed files with 1348 additions and 27 deletions

58
.vscode/launch.json vendored
View File

@ -93,6 +93,51 @@
"ENABLE_REALTIME_RL": "1"
},
"preLaunchTask": "Kill Stale Processes"
},
{
"name": "🚀 Integrated COB Dashboard + RL Trading",
"type": "python",
"request": "launch",
"program": "run_integrated_rl_cob_dashboard.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"CUDA_VISIBLE_DEVICES": "0",
"PYTORCH_CUDA_ALLOC_CONF": "max_split_size_mb:512",
"ENABLE_REALTIME_RL": "1",
"COB_BTC_BUCKET_SIZE": "10",
"COB_ETH_BUCKET_SIZE": "1"
},
"preLaunchTask": "Kill Stale Processes"
},
{
"name": "🎯 Optimized COB System (No Redundancy)",
"type": "python",
"request": "launch",
"program": "run_optimized_cob_system.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"COB_BTC_BUCKET_SIZE": "10",
"COB_ETH_BUCKET_SIZE": "1"
},
"preLaunchTask": "Kill Stale Processes"
},
{
"name": "🌐 Simple COB Dashboard (Working)",
"type": "python",
"request": "launch",
"program": "run_simple_cob_dashboard.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"COB_BTC_BUCKET_SIZE": "10",
"COB_ETH_BUCKET_SIZE": "1"
},
"preLaunchTask": "Kill Stale Processes"
}
],
"compounds": [
@ -149,6 +194,19 @@
"group": "Enhanced Trading",
"order": 4
}
},
{
"name": "🔥 COB Dashboard + 1B RL Trading System",
"configurations": [
"📈 COB Data Provider Dashboard",
"🔥 Real-time RL COB Trader (1B Parameters)"
],
"stopAll": true,
"presentation": {
"hidden": false,
"group": "COB Trading",
"order": 5
}
}
]
}