We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d61498c + ef518cd commit e010619Copy full SHA for e010619
.vscode/launch.json
@@ -0,0 +1,20 @@
1
+{
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+
8
+ {
9
+ "name": "Launch bbgo",
10
+ "type": "go",
11
+ "request": "launch",
12
+ "mode": "auto",
13
+ "program": "${workspaceFolder}/cmd/bbgo",
14
+ "cwd": "${workspaceFolder}",
15
+ "env": {},
16
+ "args": ["backtest", "--debug"],
17
+ "showLog": true
18
+ }
19
+ ]
20
+}
0 commit comments