suggestions

This commit is contained in:
Dobromir Popov
2025-02-12 01:38:05 +02:00
parent 33a5588539
commit c8b0f77d32
10 changed files with 109 additions and 10 deletions

31
crypto/gogo/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,31 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Train (Live Data)",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"args": ["--mode", "train"]
},
{
"name": "Backtest (Historical Data)",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"args": ["--mode", "backtest"]
},
{
"name": "Unit Tests",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/tests/test_data.py",
"console": "integratedTerminal",
"justMyCode": false
}
]
}

11
crypto/gogo/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true
}