12 lines
363 B
Bash
12 lines
363 B
Bash
#!/bin/bash
|
|
# Run performance test inside Docker container
|
|
# Usage: ./run_test.sh [days] [interval]
|
|
|
|
DAYS=${1:-7}
|
|
INTERVAL=${2:-1m}
|
|
|
|
echo "Running MA44 performance test: ${DAYS} days of ${INTERVAL} data"
|
|
echo "=================================================="
|
|
|
|
docker exec btc_collector python scripts/test_ma44_performance.py --days $DAYS --interval $INTERVAL
|