forked from artemium/428-backtester
Ship SampleStrategy and Integral workflow scripts without proprietary V15 logic, Pine, or run results. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
354 B
Bash
Executable file
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}"
|