dataforge-labs commited on
Commit
be730d7
·
verified ·
1 Parent(s): 2834d1b

crypto-options-surface: 2026-08-29

Browse files
README.md ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ pretty_name: "Implied volatility surface for on-chain crypto options"
4
+ tags:
5
+ - options
6
+ - implied-volatility
7
+ - derivatives
8
+ - greeks
9
+ - cryptocurrency
10
+ - ethereum
11
+ - bitcoin
12
+ - solana
13
+ - time-series
14
+ - finance
15
+ task_categories:
16
+ - time-series-forecasting
17
+ size_categories:
18
+ - 1M<n<10M
19
+ ---
20
+
21
+ # Crypto options implied volatility surface
22
+
23
+ Every listed option on one venue, priced, with its greeks, sampled through the day.
24
+
25
+ An option quote is computed on demand and kept by nobody. The chain that existed at any past
26
+ moment is not recoverable from the venue or from the chain it settles on: only trades leave a
27
+ record, and most of these strikes never trade.
28
+
29
+ ## Contents
30
+
31
+ | name | one row is |
32
+ |---|---|
33
+ | `e22_options_surface` | one instrument at one moment: strike, expiry, mark, forward, and the full greek set |
34
+ | `e22_options_book` | top of book for a near-the-money ladder: bid, ask, their sizes, and both quoted in vol terms |
35
+
36
+ ## Reading it
37
+
38
+ `iv`, `delta`, `gamma`, `vega`, `theta` and `rho` are the venue's own values, published
39
+ alongside its mark price rather than recomputed here. That is deliberate: re-deriving implied
40
+ volatility needs a rate and dividend assumption, and a number the venue itself margins against
41
+ is the more useful one.
42
+
43
+ Each asset's chain is fetched in one request and every row from it shares a `sampled_ts`,
44
+ so grouping on `(asset, sampled_ts)` recovers one surface and adding `expiry` recovers one
45
+ smile. `round_ts` is shared by the assets collected in the same pass, which is what to
46
+ group on when comparing across assets at a moment.
47
+
48
+ `strike` and `expiry` are parsed from the instrument name, and both are null where the name
49
+ does not match the expected shape rather than being guessed. `expiry_ts` comes from the venue.
50
+
51
+ ## What the mark costs you
52
+
53
+ The surface carries the venue's mark. `e22_options_book` carries what was actually quoted:
54
+ `best_bid_iv` and `best_ask_iv` give the two sides in vol terms and `iv_spread` the distance
55
+ between them. Across one ladder that distance ran from 4.2 to 18.6 vol points, and the mark sat
56
+ inside the band every time, near the middle rather than at it.
57
+
58
+ The ladder is deliberate rather than exhaustive, because a book costs one request per
59
+ instrument. It takes the strikes nearest the forward across several expiries and skips the
60
+ expiring contract, which was measured to have no book at all. So `e22_options_book` covers a
61
+ slice of `e22_options_surface` and never all of it; the two join on `instrument_name` within a
62
+ round.
63
+
64
+ A one-sided book is a real state and is recorded as one, with the missing side null while
65
+ `error` stays empty. `error` is set only where the request itself failed.
66
+
67
+ ## Before you build on this
68
+
69
+ - One venue, and not the largest one. This is what a single order book quoted, not a
70
+ market-wide consensus. Anything inferred about crypto volatility generally needs a second
71
+ source.
72
+ - Every listed instrument appears, including deep out-of-the-money strikes that never trade.
73
+ A mark price is published for those too, so filter before treating the surface as tradeable.
74
+ - Put and call at the same strike and expiry carry the same implied volatility by construction.
75
+ Two rows agreeing is parity, not confirmation.
76
+ - Sampled at an interval, so a move that reverses between samples is invisible. `sampled_ts`
77
+ is ours, taken at observation, and carries our network distance to the venue.
78
+ - A fetch that fails writes one explicit error row for that asset with the measurements null.
79
+ Check `error` before reading an absent chain as a delisting.
80
+ - Coverage per asset differs and changes as the venue lists and expires instruments; count
81
+ distinct `expiry` per day rather than assuming a fixed ladder.
82
+
83
+ Partitions are parquet, one file per collection window, under `dataset/YYYY/MM/`. This repo carries a FIXED 7-day sample (2026-08-25 to 2026-08-31) so you can check schema, coverage and quality before asking for more. It does not advance, so there is nothing to gain by re-downloading it. The full history is held privately, available on request.
84
+
85
+ ```python
86
+ from huggingface_hub import snapshot_download
87
+ import pandas as pd, glob
88
+
89
+ path = snapshot_download("dataforge-labs/crypto-options-surface", repo_type="dataset",
90
+ allow_patterns="e22_options_surface/**")
91
+ df = pd.concat(map(pd.read_parquet,
92
+ glob.glob(f"{path}/e22_options_surface/**/*.parquet", recursive=True)))
93
+ ```
94
+
95
+ ## Coverage
96
+
97
+ `e0_run_manifest` lists every collection window with its poll counts and failure counts, and is
98
+ published in full rather than windowed. Gaps between windows are real, cannot be filled in
99
+ afterwards, and nothing here is interpolated.
100
+
101
+ ## License and contact
102
+
103
+ ODC-BY: use it freely, credit "DataForge (dataforge-labs)". Questions and requests for the full
104
+ history via the discussions tab.
e0_run_manifest/2026/08/2026-08-25T1524Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8710baa9ca52e46c115b7540d022f4e3c75adf30811b5ebc0ad04e4f238873bc
3
+ size 12116
e0_run_manifest/2026/08/2026-08-25T1657Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3209d2c41aee2e0d2512b86b0e6f87f2e7182632fd84ee87b2a778a7cb45046b
3
+ size 13070
e0_run_manifest/2026/08/2026-08-25T1851Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:399ae9c47bc9138eeb10bce20f20737eb1ecfbc6ed9a33bc09e673c75a6da5bb
3
+ size 13070
e0_run_manifest/2026/08/2026-08-26T0021Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7367bc9bb35ca7f862d972ca1fd20ec943a05ab9bb06c57df5f9e2e55055f893
3
+ size 13070
e0_run_manifest/2026/08/2026-08-26T0148Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:108f091a83318624355d38272b0f19369fa8f5cb4d537c727b59bd76fc920a03
3
+ size 13070
e0_run_manifest/2026/08/2026-08-26T1250Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81f2e7c42c06cd406b0a3f891da305edfdf4e045f5b3bebf7e26541e4304fca9
3
+ size 13070
e0_run_manifest/2026/08/2026-08-26T1845Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f8cbff0fd8253f663493e010f90597d8ae78a6e6f75fb8db6b6646aa9c0cbc3
3
+ size 13290
e0_run_manifest/2026/08/2026-08-26T1956Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cac6b54680034d179788b3eae4a163e5ba4d589c1ef2bc5ec40b652377157eff
3
+ size 13290
e0_run_manifest/2026/08/2026-08-27T0855Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfaf65adc298e975cccc8a04d9028452a2b14d6b0b874eb06c512813d1fe4033
3
+ size 13290
e0_run_manifest/2026/08/2026-08-27T1733Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa22ab7a813a3af7fbd2fd9bc6d2785e7e1dc2e0740eaf1763e63293498cb6ac
3
+ size 13290
e0_run_manifest/2026/08/2026-08-27T2212Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dcfb46e1b067c0af622622c6f4307ddcd14f4a700c776e48f35105281cc8761
3
+ size 13290
e0_run_manifest/2026/08/2026-08-28T0242Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a43c6ea394c05d208d0d4b5a242298a263e25b72e03d2c9851a0fe3929a44848
3
+ size 13290
e0_run_manifest/2026/08/2026-08-28T0838Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78e11e579d8cefabaab51dd3729f7f38e5ee72b87a9c355e3f5b2eab92b09e9d
3
+ size 13290
e0_run_manifest/2026/08/2026-08-28T1019Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d742cf8eaa526389d09fa5b5ece2b38045e4bded322a80f437a565b3977a1c58
3
+ size 13290
e0_run_manifest/2026/08/2026-08-28T1108Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c8e92eb2b6343aa2af25ca1252c814a4b900a4e3a50846562dfc87e64f4a96e
3
+ size 13290
e0_run_manifest/2026/08/2026-08-28T1830Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f388b21f357ad2caaf6c79926218035131d312fce0dd58d661c5e98aafb45293
3
+ size 13290
e0_run_manifest/2026/08/2026-08-28T2302Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d396115c59959de98aae1eb118c1a47ebe826b0936b1735f823e05e33e2a7f3d
3
+ size 13290
e0_run_manifest/2026/08/2026-08-29T0334Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2d4a9f375900511973a128d8e01a224cfa4ce79c26318bb0fde3a183f6f7aa6
3
+ size 13290
e0_run_manifest/2026/08/2026-08-29T0805Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b729b929f29b0a6b8a37fe99f52e8a629489ea057a74f503273e23858e39064
3
+ size 13290
e0_run_manifest/2026/08/2026-08-29T1237Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad1a86a7c75c825f2161878c51b19ad4e1187ba6e13635ee0d2f62ebe6e825f5
3
+ size 13290
e0_run_manifest/2026/08/2026-08-29T1708Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5823fd488af4a8f8affa5987773f037e2a46a611abd53bc0aab213ed9f8a5590
3
+ size 13290
e22_options_book/2026/08/2026-08-29T1708Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a54b34cb4b2d8db949034938081ac458f59044bea8c65c0d3da649fe98d4f18
3
+ size 28575
e22_options_surface/2026/08/2026-08-29T1708Z.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e338aa5f37eca3434f2713812d5e8146363e86a25dc796330435b40dccaca22
3
+ size 2121284