Update dataset card for first-trigger data contract
Browse files
README.md
CHANGED
|
@@ -1,18 +1,17 @@
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
-
- kalshi
|
| 4 |
-
- trigger-strategy
|
| 5 |
-
- numpy
|
| 6 |
-
- analyzer-data
|
| 7 |
---
|
| 8 |
-
|
| 9 |
# tsv1 trigger-strategy analyzer data
|
| 10 |
|
| 11 |
-
Public
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
-
```
|
| 16 |
preprocessed/<asset>/manifest.json
|
| 17 |
preprocessed/<asset>/window_event_start.npy
|
| 18 |
preprocessed/<asset>/window_outcome.npy
|
|
@@ -21,6 +20,11 @@ preprocessed/<asset>/event_price_1e4.npy
|
|
| 21 |
preprocessed/<asset>/event_count_centi.npy
|
| 22 |
preprocessed/<asset>/day_ord.npy
|
| 23 |
preprocessed/<asset>/day_window_start.npy
|
|
|
|
| 24 |
```
|
| 25 |
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
tags:
|
| 3 |
+
- kalshi
|
| 4 |
+
- trigger-strategy
|
| 5 |
+
- numpy
|
| 6 |
+
- analyzer-data
|
| 7 |
---
|
|
|
|
| 8 |
# tsv1 trigger-strategy analyzer data
|
| 9 |
|
| 10 |
+
Public preprocessed data for trigger-strategy analysis.
|
| 11 |
|
| 12 |
+
Each supported asset uses this layout:
|
| 13 |
|
| 14 |
+
```
|
| 15 |
preprocessed/<asset>/manifest.json
|
| 16 |
preprocessed/<asset>/window_event_start.npy
|
| 17 |
preprocessed/<asset>/window_outcome.npy
|
|
|
|
| 20 |
preprocessed/<asset>/event_count_centi.npy
|
| 21 |
preprocessed/<asset>/day_ord.npy
|
| 22 |
preprocessed/<asset>/day_window_start.npy
|
| 23 |
+
preprocessed/<asset>/first_trigger.npy
|
| 24 |
```
|
| 25 |
|
| 26 |
+
`manifest.json` records the asset, included days, window and event counts, the SHA-256 hash of each NumPy file, the first-trigger schema version, and the explicit buy-price axis.
|
| 27 |
+
|
| 28 |
+
For schema version 1, `first_trigger.npy` has type `uint32` and shape `[139, windows]`. Each value is the offset of the first event in that window whose price is at least the applicable buy price. `UINT32_MAX` means that the window is empty or has no matching event.
|
| 29 |
+
|
| 30 |
+
Consumers must pin an immutable dataset revision and verify every file against the manifest before use.
|