Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Trading bot Backtesting CSVs
|
| 2 |
+
|
| 3 |
+
**Gunbot ⇄ Trading Bot backtests (pair-level candle & matched order data)**
|
| 4 |
+
Created with [Gunbot](https://www.gunbot.com) on Binance spot.
|
| 5 |
+
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
## Dataset structure
|
| 9 |
+
|
| 10 |
+
| column | type | description |
|
| 11 |
+
|-----------------|--------|------------------------------------------|
|
| 12 |
+
| ts | int64 | candle Unix ms timestamp |
|
| 13 |
+
| open/high/low/close | float | OHLC price values |
|
| 14 |
+
| volume | float | traded volume in base currency |
|
| 15 |
+
| order_type | str | `buy`, `sell`, or empty (no order) |
|
| 16 |
+
| order_rate | float | executed rate |
|
| 17 |
+
| order_amount | float | amount traded |
|
| 18 |
+
| order_id | int64 | exchange order id |
|
| 19 |
+
| pnl | float | PnL from that filled order |
|
| 20 |
+
| … static cols | … | fee_pct, duration_days, sharpe_ratio … |
|
| 21 |
+
|
| 22 |
+
Each backtest lives in its own CSV: `id.csv`.
|
| 23 |
+
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
## Intended uses
|
| 27 |
+
|
| 28 |
+
* Sequence-model research on candle ↔ order dynamics
|
| 29 |
+
* Synthetic-trade PnL prediction, execution-timing experiments
|
| 30 |
+
|
| 31 |
+
If you publish work that uses this dataset, please cite 💚.
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
+
## License
|
| 36 |
+
|
| 37 |
+
CC-BY-4.0 — free for academic & commercial use with attribution to **Gunbot**.
|
| 38 |
+
|