new realt module

This commit is contained in:
Dobromir Popov
2025-03-25 12:48:58 +02:00
parent 9e81e86b1c
commit 114ced03b7
9 changed files with 1055 additions and 0 deletions

45
.vscode/launch.json vendored
View File

@ -103,6 +103,51 @@
"env": {
"PYTHONUNBUFFERED": "1"
}
},
{
"name": "NN Training Pipeline",
"type": "python",
"request": "launch",
"program": "-m",
"args": [
"NN.main",
"--mode",
"train",
"--symbol",
"BTC/USDT",
"--timeframes",
"1m", "5m", "1h", "4h",
"--epochs",
"100",
"--batch_size",
"64",
"--window_size",
"30",
"--output_size",
"3"
],
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PYTHONUNBUFFERED": "1",
"TF_CPP_MIN_LOG_LEVEL": "2"
},
"postDebugTask": "Start TensorBoard"
},
{
"name": "Realtime Charts with NN Inference",
"type": "python",
"request": "launch",
"program": "realtime.py",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PYTHONUNBUFFERED": "1",
"ENABLE_NN_MODELS": "1",
"NN_INFERENCE_INTERVAL": "60",
"NN_MODEL_TYPE": "cnn",
"NN_TIMEFRAME": "1h"
}
}
]
}