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>
16 lines
359 B
Bash
Executable file
16 lines
359 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
# shellcheck disable=SC1091
|
|
source "$(dirname "$0")/_env.sh"
|
|
|
|
TIMERANGE="${TIMERANGE:-20240701-}"
|
|
STRATEGY="${STRATEGY:-SampleStrategy}"
|
|
|
|
freqtrade backtesting \
|
|
--config user_data/config.json \
|
|
--strategy "${STRATEGY}" \
|
|
--timeframe 15m \
|
|
--timerange "${TIMERANGE}" \
|
|
--breakdown day \
|
|
--cache none \
|
|
"$@"
|