#!/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}"