forked from iterativv/NostalgiaForInfinity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (25 loc) · 826 Bytes
/
docker-compose.yml
File metadata and controls
25 lines (25 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
version: '3'
services:
backtesting:
build:
context: .
dockerfile: "./docker/Dockerfile.custom"
container_name: freqtrade-backtesting
volumes:
- "./user_data:/freqtrade/user_data"
- "./NostalgiaForInfinityNext.py:/freqtrade/NostalgiaForInfinityNext.py"
command: >
backtesting
--strategy-list NostalgiaForInfinityNext
--timerange ${TIMERANGE:-20210601-20210701}
--config user_data/pairlists.json
--max-open-trades ${MAX_OPEN_TRADES:-5}
--stake-amount ${STAKE_AMOUNT:-unlimited}
download-data:
image: freqtradeorg/freqtrade:develop
container_name: download-data
volumes:
- "./user_data:/freqtrade/user_data"
command: >
download-data --timerange 20201201-20210701 --timeframe 5m 1h --config user_data/pairlists.json