File size: 1,471 Bytes
60c79df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-4.0
pretty_name: Perp Data
tags:
- finance
- crypto
- defi
- trading
- parquet
- time-series
task_categories:
- tabular-regression
---

# Perp Data

Free, daily-updated perpetuals market data intended for quant research, backtesting, and market microstructure analysis.

This repository is initialized for **chain-derived perp DEX data**, starting with Hyperliquid. The public dataset must only contain records whose provenance is public chain/archive state, not venue REST API resale. The first production feed will publish Hyperliquid funding, trades, and open interest as partitioned Parquet, under an explicit `hyperliquid_chain/` provider partition.

## Status

Initialized. Data publication starts after the Hetzner chain-derived `hyperliquid_chain` sink is live.

## Planned Layout

```text
hyperliquid_chain/
  funding/date=YYYY-MM-DD/part-0000.parquet
  trades/date=YYYY-MM-DD/part-0000.parquet
  open_interest/date=YYYY-MM-DD/part-0000.parquet
_schema.json
_manifest.json
```

## Quickstart

```python
import pandas as pd

repo = "GregM/perp-data"
url = f"https://huggingface.co/datasets/{repo}/resolve/main/hyperliquid_chain/funding/date=YYYY-MM-DD/part-0000.parquet"
funding = pd.read_parquet(url)
print(funding.head())
```

## Provenance

Eligible public rows use one of these `source_kind` values:

- `on_chain_event`
- `chain_rpc`
- `hypercore_s3`

API-sourced internal research rows are intentionally excluded from this public dataset.