Datasets:
Refresh dataset card and static metadata
Browse files
README.md
CHANGED
|
@@ -41,6 +41,14 @@ configs:
|
|
| 41 |
|
| 42 |
Free, daily-updated perpetuals market data intended for quant research, backtesting, and market microstructure analysis.
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
```python
|
| 45 |
import pandas as pd
|
| 46 |
|
|
@@ -51,13 +59,13 @@ trades = pd.read_parquet(URL.format(DATE=DATE)) # first shard; see _manifest.js
|
|
| 51 |
print(trades.head())
|
| 52 |
```
|
| 53 |
|
| 54 |
-
This repository is
|
| 55 |
|
| 56 |
## Status
|
| 57 |
|
| 58 |
-
|
| 59 |
|
| 60 |
-
##
|
| 61 |
|
| 62 |
```text
|
| 63 |
hyperliquid_chain/
|
|
@@ -118,6 +126,10 @@ Eligible public rows use one of these `source_kind` values:
|
|
| 118 |
|
| 119 |
API-sourced internal research rows are intentionally excluded from this public dataset.
|
| 120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
## Agent Prompt Snippet
|
| 122 |
|
| 123 |
```text
|
|
|
|
| 41 |
|
| 42 |
Free, daily-updated perpetuals market data intended for quant research, backtesting, and market microstructure analysis.
|
| 43 |
|
| 44 |
+
## Current Scope
|
| 45 |
+
|
| 46 |
+
- **Coverage:** Hyperliquid chain/archive-derived perp rows published as partitioned Parquet.
|
| 47 |
+
- **Datasets:** funding, trades, markets, open interest, and liquidations.
|
| 48 |
+
- **Cadence:** append-only daily partitions from the Chainticks Hetzner sink.
|
| 49 |
+
- **Timestamps:** UTC ISO-8601 strings. Missing values are Arrow nulls.
|
| 50 |
+
- **Best for:** agent-readable market context, strategy replay, feature engineering, and public benchmark slices.
|
| 51 |
+
|
| 52 |
```python
|
| 53 |
import pandas as pd
|
| 54 |
|
|
|
|
| 59 |
print(trades.head())
|
| 60 |
```
|
| 61 |
|
| 62 |
+
This repository is 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 publishes Hyperliquid funding, trades, markets, open interest, and liquidations as partitioned Parquet under an explicit `hyperliquid_chain/` provider partition.
|
| 63 |
|
| 64 |
## Status
|
| 65 |
|
| 66 |
+
Live. Read `LATEST_DATE.txt` for the newest published UTC partition, and `_manifest.json` for available files, row counts, and time ranges.
|
| 67 |
|
| 68 |
+
## Layout
|
| 69 |
|
| 70 |
```text
|
| 71 |
hyperliquid_chain/
|
|
|
|
| 126 |
|
| 127 |
API-sourced internal research rows are intentionally excluded from this public dataset.
|
| 128 |
|
| 129 |
+
## Known Limitations
|
| 130 |
+
|
| 131 |
+
This is public-source market data for research and analytics. It is not a trading API, and it should not be treated as complete venue truth without checking the manifest, data freshness, and source provenance for the partition being used. Large trade dates may be sharded across many `part-*.parquet` files.
|
| 132 |
+
|
| 133 |
## Agent Prompt Snippet
|
| 134 |
|
| 135 |
```text
|