File size: 923 Bytes
b57ae81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
readme_content = """
# Cryptocurrency Trading Dataset

## Dataset Description

### Overview
This dataset contains historical cryptocurrency trading data from Kraken, specifically for BTC/USD pairs.

### Features
- timestamp: UTC timestamp of the trade
- price: Executed trade price
- volume: Trade volume
- bid: Best bid at time of trade
- ask: Best ask at time of trade
- side: Trade side (buy/sell)

### Data Splits
- Training: 70% of data
- Validation: 15% of data
- Test: 15% of data

### Data Source
Data collected from Kraken cryptocurrency exchange via their public API.

### Intended Use
This dataset is designed for:
- Training cryptocurrency trading models
- Market analysis and research
- Backtesting trading strategies

### Limitations
- Data only includes BTC/USD pairs
- Historical data may not reflect future market conditions
"""

# Write README
with open("README.md", "w") as f:
    f.write(readme_content)