File size: 1,387 Bytes
5a19f89 c656c79 927f6bb c656c79 5a19f89 | 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 | ---
tags:
- cryptocurrency
- crypto
- market-data
- real-time
- data-hub
license: mit
dataset_info:
features:
- name: symbol
dtype: string
- name: interval
dtype: string
- name: timestamp
dtype: string
- name: open
dtype: float64
- name: high
dtype: float64
- name: low
dtype: float64
- name: close
dtype: float64
- name: volume
dtype: float64
- name: provider
dtype: string
- name: fetched_at
dtype: string
splits:
- name: train
num_bytes: 35400
num_examples: 300
download_size: 18375
dataset_size: 35400
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Really-amin/crypto-ohlc-data
Real-time cryptocurrency OHLC/candlestick data from multiple exchanges
## Data Source
This dataset is automatically updated from real cryptocurrency APIs:
- CoinGecko API (market data)
- Binance API (OHLC data)
## Update Frequency
Data is updated every 60 seconds with real-time information.
## Usage
```python
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("Really-amin/crypto-ohlc-data")
# Access data
df = dataset['train'].to_pandas()
print(df.head())
```
## Data Hub Architecture
```
External APIs → Data Hub → HuggingFace Datasets → Clients
```
All data is real - no mock or fake data.
## Last Updated
2025-12-06T04:05:18.739950Z
|