初步完成项目,可以监控给出入场信号

This commit is contained in:
2026-07-14 00:37:22 +08:00
commit a1963e58ed
31 changed files with 3566 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
services:
trader:
build: .
restart: unless-stopped
env_file:
- .env
volumes:
- ./data:/app/data
- ./reports:/app/reports
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
dashboard:
build: .
restart: unless-stopped
command: ["python", "-m", "src.main", "dashboard", "--host", "0.0.0.0", "--port", "8518"]
env_file:
- .env
ports:
- "8518:8518"
volumes:
- ./data:/app/data
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"