File size: 1,990 Bytes
6cb96d5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
---
license: mit
task_categories:
- tabular-classification
- time-series-forecasting
tags:
- finance
- trading
- bitcoin
- cryptocurrency
- technical-analysis
language:
- en
size_categories:
- 1K<n<10K
---
# π Multi-Model Trading Data
Bitcoin (BTC-USD) historical price data with technical indicators for ML/DL trading models.
## π Dataset Files
| File | Description | Rows | Columns |
| :--- | :--- | :--- | :--- |
| `btc_usd_historical.csv` | Raw OHLCV data | ~3,653 | 5 |
| `btc_usd_features.csv` | Processed with indicators | ~3,603 | 17 |
## π
Date Range
- **Start:** 2015-01-01
- **End:** 2025-01-01
- **Frequency:** Daily
## π Features in `btc_usd_features.csv`
### Raw OHLCV
- `open`, `high`, `low`, `close`, `volume`
### Technical Indicators
| Feature | Description |
| :--- | :--- |
| `rsi` | Relative Strength Index (14-period) |
| `macd` | MACD Line |
| `macd_signal` | MACD Signal Line |
| `bb_width` | Bollinger Band Width |
| `atr` | Average True Range |
| `dist_sma50` | Distance from 50-day SMA |
| `obv_pct` | On-Balance Volume % Change |
| `adx` | Average Directional Index |
| `stoch_rsi_k` | Stochastic RSI %K |
| `stoch_rsi_d` | Stochastic RSI %D |
### Target Variables
- `return` β Next-day return (%)
- `target` β Binary label (1 = price up, 0 = price down)
## π Usage
```python
from datasets import load_dataset
# Load dataset
dataset = load_dataset("AdityaaXD/Multi-Model-Trading-Data")
# Or with pandas
import pandas as pd
df = pd.read_csv("hf://datasets/AdityaaXD/Multi-Model-Trading-Data/btc_usd_features.csv")
```
## π Related
- **Models:** [AdityaaXD/Multi-Model-AI-Trading-Bot](https://huggingface.co/AdityaaXD/Multi-Model-AI-Trading-Bot)
## β οΈ Disclaimer
This dataset is for **educational and research purposes only**. Not financial advice.
## π Source
Data fetched from Yahoo Finance using `yfinance` library.
|