main cleanup
This commit is contained in:
196
.vscode/launch.json
vendored
196
.vscode/launch.json
vendored
@@ -2,28 +2,10 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "📊 Enhanced Web Dashboard (Safe)",
|
||||
"name": "📊 Dashboard (Real-time + Training)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main_clean.py",
|
||||
"args": [
|
||||
"--port",
|
||||
"8051",
|
||||
"--no-training"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"ENABLE_REALTIME_CHARTS": "1"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
{
|
||||
"name": "📊 Enhanced Web Dashboard (Full)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main_clean.py",
|
||||
"program": "main_dashboard.py",
|
||||
"args": [
|
||||
"--port",
|
||||
"8051"
|
||||
@@ -37,26 +19,20 @@
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "📊 Clean Dashboard (Legacy)",
|
||||
"name": "🔬 Backtest Training (30 days)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "run_clean_dashboard.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"ENABLE_REALTIME_CHARTS": "1"
|
||||
},
|
||||
"linux": {
|
||||
"python": "${workspaceFolder}/venv/bin/python"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🚀 Main System",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main.py",
|
||||
"program": "main_backtest.py",
|
||||
"args": [
|
||||
"--start",
|
||||
"2024-01-01",
|
||||
"--end",
|
||||
"2024-01-31",
|
||||
"--symbol",
|
||||
"ETH/USDT"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
@@ -64,37 +40,45 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🔬 System Test & Validation",
|
||||
"name": "🎯 Unified Training (Realtime)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "main.py",
|
||||
"program": "training_runner.py",
|
||||
"args": [
|
||||
"--mode",
|
||||
"test"
|
||||
"realtime",
|
||||
"--duration",
|
||||
"4",
|
||||
"--symbol",
|
||||
"ETH/USDT"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"TEST_ALL_COMPONENTS": "1"
|
||||
"CUDA_VISIBLE_DEVICES": "0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🧪 CNN Live Training with Analysis",
|
||||
"name": "🎯 Unified Training (Backtest)",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "training/enhanced_cnn_trainer.py",
|
||||
"program": "training_runner.py",
|
||||
"args": [
|
||||
"--mode",
|
||||
"backtest",
|
||||
"--start-date",
|
||||
"2024-01-01",
|
||||
"--end-date",
|
||||
"2024-01-31",
|
||||
"--symbol",
|
||||
"ETH/USDT"
|
||||
],
|
||||
"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"
|
||||
"PYTHONUNBUFFERED": "1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🏗️ Python Debugger: Current File",
|
||||
@@ -122,7 +106,7 @@
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
{
|
||||
"name": "🔥 Real-time RL COB Trader (400M Parameters)",
|
||||
"name": "🔥 Real-time RL COB Trader",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "run_realtime_rl_cob_trader.py",
|
||||
@@ -154,130 +138,54 @@
|
||||
"preLaunchTask": "Kill Stale Processes"
|
||||
},
|
||||
{
|
||||
"name": " *🧹 Clean Trading Dashboard (Universal Data Stream)",
|
||||
"name": "🧪 Run Tests",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "run_clean_dashboard.py",
|
||||
"python": "${workspaceFolder}/venv/bin/python",
|
||||
"program": "run_tests.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"CUDA_VISIBLE_DEVICES": "0",
|
||||
"ENABLE_UNIVERSAL_DATA_STREAM": "1",
|
||||
"ENABLE_NN_DECISION_FUSION": "1",
|
||||
"ENABLE_COB_INTEGRATION": "1",
|
||||
"DASHBOARD_PORT": "8051"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes",
|
||||
"presentation": {
|
||||
"hidden": false,
|
||||
"group": "Universal Data Stream",
|
||||
"order": 1
|
||||
"PYTHONUNBUFFERED": "1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🎨 Templated Dashboard (MVC Architecture)",
|
||||
"name": "📊 TensorBoard Monitor",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "run_templated_dashboard.py",
|
||||
"program": "run_tensorboard.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": false,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"DASHBOARD_PORT": "8051"
|
||||
},
|
||||
"preLaunchTask": "Kill Stale Processes",
|
||||
"presentation": {
|
||||
"hidden": false,
|
||||
"group": "Universal Data Stream",
|
||||
"order": 2
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Containers: Python - General",
|
||||
"type": "docker",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "docker-run: debug",
|
||||
"python": {
|
||||
"pathMappings": [
|
||||
{
|
||||
"localRoot": "${workspaceFolder}",
|
||||
"remoteRoot": "/app"
|
||||
}
|
||||
],
|
||||
"projectType": "general"
|
||||
"PYTHONUNBUFFERED": "1"
|
||||
}
|
||||
}
|
||||
],
|
||||
"compounds": [
|
||||
{
|
||||
"name": "🚀 Full Training Pipeline (RL + Monitor + TensorBoard)",
|
||||
"name": "🚀 Full System (Dashboard + Training)",
|
||||
"configurations": [
|
||||
"🚀 MASSIVE RL Training (504M Parameters)",
|
||||
"🌙 Overnight Training Monitor (504M Model)",
|
||||
"📈 TensorBoard Monitor (All Runs)"
|
||||
"📊 Dashboard (Real-time + Training)",
|
||||
"📊 TensorBoard Monitor"
|
||||
],
|
||||
"stopAll": true,
|
||||
"presentation": {
|
||||
"hidden": false,
|
||||
"group": "Training",
|
||||
"group": "Main",
|
||||
"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
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "🔥 COB Dashboard + 400M RL Trading System",
|
||||
"name": "🔥 COB Trading System",
|
||||
"configurations": [
|
||||
"📈 COB Data Provider Dashboard",
|
||||
"🔥 Real-time RL COB Trader (400M Parameters)"
|
||||
"🔥 Real-time RL COB Trader"
|
||||
],
|
||||
"stopAll": true,
|
||||
"presentation": {
|
||||
"hidden": false,
|
||||
"group": "COB Trading",
|
||||
"order": 5
|
||||
"group": "COB",
|
||||
"order": 2
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user