mirror of
https://github.com/HKUDS/AI-Trader
synced 2026-04-21 21:47:54 +00:00
13 lines
342 B
Bash
13 lines
342 B
Bash
#!/bin/bash
|
||
|
||
# 获取项目根目录(scripts/ 的父目录)
|
||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
PROJECT_ROOT="$( cd "$SCRIPT_DIR/.." && pwd )"
|
||
|
||
cd "$PROJECT_ROOT"
|
||
|
||
echo "🤖 Now starting the cryptocurrencies trading agent..."
|
||
|
||
python main.py configs/default_crypto_config.json
|
||
|
||
echo "✅ AI-Trader 已停止"
|