Files
gogo2/.vscode/launch.json
2025-06-18 13:51:08 +03:00

126 lines
3.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"
}
}
],
"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
}
}
]
}