diff --git a/.gitignore b/.gitignore index 7b1a9f3..db4ae81 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,9 @@ htmlcov/ # Jupyter .ipynb_checkpoints/ +# Data files (download from Binance, see README) +data/ + # Runtime generated output (tracked baseline images are in output/) output/all_results.json output/evidence_dashboard.png diff --git a/README.md b/README.md index 73a3311..f349d1a 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,12 @@ python main.py --start 2020-01-01 --end 2025-12-31 全部数据来源于 Binance 公开 API,时间范围 2017-08 至 2026-02。 +> **数据未包含在仓库中**,请从 Binance 官方数据源下载后放入 `data/` 目录: +> +> - K 线数据下载页面: +> - 将 URL 中的 `1m` 替换为所需粒度(`3m`、`5m`、`15m`、`30m`、`1h`、`2h`、`4h`、`6h`、`8h`、`12h`、`1d`、`3d`、`1w`、`1mo`)即可下载对应时间粒度的数据 +> - 下载后合并为单个 CSV 文件,命名格式:`btcusdt_{interval}.csv`,放入 `data/` 目录 + ## 分析模块 | 模块 | 说明 |