BotDeepSeek/report.sh

6 lines
201 B
Bash
Executable File

#!/bin/bash
# 查看当天(或指定日期)的成交明细与盈亏
# 用法: ./report.sh [YYYY-MM-DD]
DIR="$(cd "$(dirname "$0")" && pwd)"
exec "$DIR/.venv/bin/python" "$DIR/daily_report.py" "$@"