- Added MLFilter class to load and evaluate LightGBM model for trading signals. - Introduced retraining mechanism to update the model daily based on new data. - Created feature engineering and label building utilities for model training. - Updated bot logic to incorporate ML filter for signal validation. - Added scripts for data fetching and model training. Made-with: Cursor
19 lines
394 B
YAML
19 lines
394 B
YAML
services:
|
|
cointrader:
|
|
image: 10.1.10.28:3000/gihyeon/cointrader:latest
|
|
container_name: cointrader
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- TZ=Asia/Seoul
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
- ./models:/app/models
|
|
- ./data:/app/data
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "5"
|