155 lines
4.9 KiB
JSON
155 lines
4.9 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
|
|
{
|
|
"name": "📊 Enhanced Web Dashboard",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "main.py",
|
|
"args": [
|
|
"--port",
|
|
"8050"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
"env": {
|
|
"PYTHONUNBUFFERED": "1",
|
|
"ENABLE_REALTIME_CHARTS": "1",
|
|
"ENABLE_NN_MODELS": "1"
|
|
},
|
|
"preLaunchTask": "Kill Stale Processes"
|
|
},
|
|
{
|
|
"name": "🔬 System Test & Validation",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "main.py",
|
|
"args": [
|
|
"--mode",
|
|
"test"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
"env": {
|
|
"PYTHONUNBUFFERED": "1",
|
|
"TEST_ALL_COMPONENTS": "1"
|
|
}
|
|
},
|
|
|
|
{
|
|
"name": "🧪 CNN Live Training with Analysis",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "training/enhanced_cnn_trainer.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
"env": {
|
|
"PYTHONUNBUFFERED": "1",
|
|
"ENABLE_BACKTESTING": "1",
|
|
"ENABLE_ANALYSIS": "1",
|
|
"ENABLE_LIVE_VALIDATION": "1",
|
|
"CUDA_VISIBLE_DEVICES": "0"
|
|
},
|
|
"preLaunchTask": "Kill Stale Processes",
|
|
"postDebugTask": "Start TensorBoard"
|
|
},
|
|
{
|
|
"name": "🏗️ Python Debugger: Current File",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
"env": {
|
|
"PYTHONUNBUFFERED": "1"
|
|
}
|
|
},
|
|
{
|
|
"name": "📈 COB Data Provider Dashboard",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "web/cob_realtime_dashboard.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
"env": {
|
|
"PYTHONUNBUFFERED": "1",
|
|
"COB_BTC_BUCKET_SIZE": "10",
|
|
"COB_ETH_BUCKET_SIZE": "1"
|
|
},
|
|
"preLaunchTask": "Kill Stale Processes"
|
|
},
|
|
{
|
|
"name": "🔥 Real-time RL COB Trader (1B Parameters)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "run_realtime_rl_cob_trader.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"
|
|
},
|
|
"preLaunchTask": "Kill Stale Processes"
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "🚀 Full Training Pipeline (RL + Monitor + TensorBoard)",
|
|
"configurations": [
|
|
"🚀 MASSIVE RL Training (504M Parameters)",
|
|
"🌙 Overnight Training Monitor (504M Model)",
|
|
"📈 TensorBoard Monitor (All Runs)"
|
|
],
|
|
"stopAll": true,
|
|
"presentation": {
|
|
"hidden": false,
|
|
"group": "Training",
|
|
"order": 1
|
|
}
|
|
},
|
|
{
|
|
"name": "💹 Live Trading System (Dashboard + Monitor)",
|
|
"configurations": [
|
|
"💹 Live Scalping Dashboard (500x Leverage)",
|
|
"🌙 Overnight Training Monitor (504M Model)"
|
|
],
|
|
"stopAll": true,
|
|
"presentation": {
|
|
"hidden": false,
|
|
"group": "Trading",
|
|
"order": 2
|
|
}
|
|
},
|
|
{
|
|
"name": "🧠 CNN Development Pipeline (Training + Analysis)",
|
|
"configurations": [
|
|
"🧠 Enhanced CNN Training with Backtesting",
|
|
"🧪 CNN Live Training with Analysis",
|
|
"📈 TensorBoard Monitor (All Runs)"
|
|
],
|
|
"stopAll": true,
|
|
"presentation": {
|
|
"hidden": false,
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
}
|