BotDeepSeek/dashboard.sh
2026-08-12 01:46:19 -07:00

6 lines
297 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# 生成可视化交易复盘看板(单文件 HTML无外部依赖并在浏览器打开
# 用法: ./dashboard.sh [--since YYYY-MM-DD] [--until YYYY-MM-DD]
DIR="$(cd "$(dirname "$0")" && pwd)"
exec "$DIR/.venv/bin/python" "$DIR/dashboard.py" -o "$DIR/dashboard.html" --open "$@"