Torch-Trade/btcusdt_spot_1m_03_2023_to_03_2026
收藏Hugging Face2026-03-02 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/Torch-Trade/btcusdt_spot_1m_03_2023_to_03_2026
下载链接
链接失效反馈官方服务:
资源简介:
---
license: mit
task_categories:
- time-series-forecasting
- reinforcement-learning
tags:
- finance
- cryptocurrency
- bitcoin
- trading
- ohlcv
- binance
size_categories:
- 1M<n<10M
---
# BTCUSDT Spot 1-Minute OHLCV (Mar 2023 - Mar 2026)

## Overview
1-minute OHLCV candlestick data for the **BTC/USDT spot** pair on Binance, covering **March 1, 2023** to **February 28, 2026**.
- **Rows**: 1,578,240
- **Completeness**: 100.00%
## Sources
| Period | Source | Notes |
|--------|--------|-------|
| Full dataset | [Binance Data Collection](https://data.binance.vision/) | Monthly kline ZIPs |
| 2023-03-24 12:30-13:59 | [Bybit API](https://bybit-exchange.github.io/docs/v5/market/kline) | 90 bars filled from Bybit BTCUSDT spot (Binance was in maintenance) |
## Columns
| Column | Type | Description |
|--------|------|-------------|
| `timestamp` | `datetime64[ns]` | Candle open time (UTC) |
| `open` | `float64` | Opening price (USDT) |
| `high` | `float64` | Highest price in the candle |
| `low` | `float64` | Lowest price in the candle |
| `close` | `float64` | Closing price (USDT) |
| `volume` | `float64` | Trading volume (BTC) |
## Statistics
| Metric | Value |
|--------|-------|
| Start price | $23,143.73 |
| End price | $66,973.26 |
| Min price | $19,595.12 |
| Max price | $126,114.50 |
| Return | +189.4% |
## Data Quality
**No gaps** -- the dataset is 100% complete with no missing minutes.
### Volume anomaly in early March 2023
Daily volume before March 22, 2023 is approximately **6x higher** than subsequent months. This is due to Binance's [zero-fee BTC spot trading promotion](https://www.binance.com/en/support/announcement/updates-on-zero-fee-bitcoin-trading-busd-zero-maker-fee-promotion-be13a645cca643d28eab5b9b34f2dc36) which ended on March 22, 2023. The promotion encouraged wash trading that inflated reported volume. Volume normalizes after March 22. This affects volume-based features but not price data.
### Backfilled bars
90 bars on 2023-03-24 from 12:30 to 13:59 UTC were sourced from Bybit BTCUSDT spot instead of Binance. During this period, Binance was offline for scheduled maintenance (the original data contained flat zero-volume candles followed by an 80-minute gap). Bybit prices closely track Binance but may differ by a few dollars.
## Usage
```python
from datasets import load_dataset
import pandas as pd
ds = load_dataset("Torch-Trade/btcusdt_spot_1m_03_2023_to_03_2026")
df = ds["train"].to_pandas()
df["timestamp"] = pd.to_datetime(df["timestamp"])
print(df.shape) # (1578240, 6)
print(df.head())
```
## License
MIT -- price data sourced from Binance and Bybit public data repositories.
提供机构:
Torch-Trade



