428-backtester/scripts/download_data.sh
Artemii Peretiachenko 99de26e7f0 Add private Freqtrade scaffold for partner backtesting.
Ship SampleStrategy and Integral workflow scripts without proprietary V15 logic, Pine, or run results.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-02 23:55:44 +02:00

15 lines
354 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
# shellcheck disable=SC1091
source "$(dirname "$0")/_env.sh"
TIMERANGE="${TIMERANGE:-20240701-}"
PAIRS="${PAIRS:-BTC/USDT:USDT}"
freqtrade download-data \
--config user_data/config.json \
--exchange binance \
--trading-mode futures \
--pairs ${PAIRS} \
--timeframes 15m 6h \
--timerange "${TIMERANGE}"