Initial commit: Freqtrade BTC 1h trading bot

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
jackyu66git
2026-05-07 14:38:00 +08:00
co-authored by Claude Opus 4.7
commit 88e3bf8584
6 changed files with 563 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
services:
freqtrade:
image: freqtradeorg/freqtrade:stable
container_name: btc_1h
restart: unless-stopped
volumes:
- ./config.json:/freqtrade/config.json:ro
- ./user_data:/freqtrade/user_data
ports:
- "127.0.0.1:8080:8080"
command: >
trade
--db-url sqlite:////freqtrade/user_data/tradesv3.sqlite
download-data:
image: freqtradeorg/freqtrade:stable
profiles: ["utils"]
volumes:
- ./config.json:/freqtrade/config.json:ro
- ./user_data:/freqtrade/user_data
command: >
download-data
--exchange binance
--pairs BTC/USDT
--timeframe 1h
--days 365