Freqtrade system service

#!/bin/bash # Start Strategy 1

/path/to/freqtrade/bin/freqtrade trade --config /path/to/strategy1_config.json -strategy strat1.py &

echo "Started Strategy 1"

# Start Strategy 2

/path/to/freqtrade/bin/freqtrade trade --config /path/to/strategy2_config.json -strategy strat2.py &

echo "Started Strategy 2"

# Add more strategies if needed...

echo "All strategies started"

chmod +x start_strategies.sh

./start_strategies.sh

  

📝 📜 ⏱️ ⬆️