mirror of
https://github.com/aljazceru/hummingbot-dashboard.git
synced 2026-01-02 21:14:25 +01:00
(feat) add compose file and yml to run hummingbot candles downlaoder
This commit is contained in:
22
hummingbot_files/compose_files/data-downloader-compose.yml
Normal file
22
hummingbot_files/compose_files/data-downloader-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
version: "3.9"
|
||||
services:
|
||||
bot:
|
||||
container_name: data_downloader
|
||||
image: dardonacci/hummingbot:dev
|
||||
volumes:
|
||||
- "../../data/candles:/home/hummingbot/data"
|
||||
- "../conf:/home/hummingbot/conf"
|
||||
- "../conf/connectors:/home/hummingbot/conf/connectors"
|
||||
environment:
|
||||
- CONFIG_PASSWORD=a
|
||||
- CONFIG_FILE_NAME=download_candles.py
|
||||
env_file:
|
||||
- ../scripts_configs/data_downloader_config.yml
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: 5
|
||||
tty: true
|
||||
stdin_open: true
|
||||
network_mode: host
|
||||
@@ -0,0 +1,4 @@
|
||||
DAYS_TO_DOWNLOAD: 3
|
||||
EXCHANGE: binance_perpetual
|
||||
INTERVALS: 1m,3m,1h
|
||||
TRADING_PAIRS: BTC-USDT,ETH-USDT
|
||||
Reference in New Issue
Block a user