sogosonnet commited on
Commit
436281b
·
verified ·
1 Parent(s): 9377853

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - finance
9
+ - cryptocurrency
10
+ - candlestick-chart
11
+ - technical-analysis
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # Crypto-Chart-Dataset
17
+
18
+ Candlestick chart image dataset for cryptocurrency price prediction research.
19
+
20
+ ## Overview
21
+
22
+ | Item | Value |
23
+ |------|-------|
24
+ | **Tickers** | 15 (BTC, ETH, BNB, XRP, ADA, DOGE, LTC, LINK, XLM, TRX, ETC, XMR, NEO, EOS, IOTA) |
25
+ | **Total Images** | 29,080 |
26
+ | **Period** | 2015 – 2025 |
27
+ | **Image Size** | ~480×480 px (4×4 inch, 120 dpi) |
28
+ | **Labels** | 6-class forward return (±3%/±5%/±7%, adjusted for crypto volatility) |
29
+
30
+ ## Download
31
+
32
+ Download `crypto_images.zip` from the Files tab and extract:
33
+
34
+ ```bash
35
+ unzip crypto_images.zip
36
+ ```
37
+
38
+ ## Chart Specification
39
+
40
+ Same as [SP500-Chart-Dataset](https://huggingface.co/datasets/sogosonnet/SP500-Chart-Dataset):
41
+
42
+ - OHLCV candlestick (Charles style) + Volume bars
43
+ - MA5 (blue dotted), MA60 (red dashed), MA120 (green solid)
44
+ - Bollinger Bands (grey shaded area, α=0.15)
45
+ - Percentage-normalized prices (scale-invariant across tickers)
46
+
47
+ ## Label Definition
48
+
49
+ Thresholds adjusted for higher crypto volatility:
50
+
51
+ | Label | Return Range |
52
+ |-------|-------------|
53
+ | `down_7plus` | r < −7% |
54
+ | `down_5_7` | −7% ≤ r < −5% |
55
+ | `down_3_5` | −5% ≤ r < −3% |
56
+ | `up_3_5` | 3% < r ≤ 5% |
57
+ | `up_5_7` | 5% < r ≤ 7% |
58
+ | `up_7plus` | r > 7% |
59
+
60
+ > Returns in [−3%, +3%] are excluded as ambiguous.
61
+
62
+ ## Citation
63
+
64
+ ```bibtex
65
+ @misc{sp500chart2025,
66
+ title={SP500-Chart-Dataset},
67
+ author={Ahn, Jaehyun},
68
+ year={2025},
69
+ howpublished={\url{https://github.com/JaehyunAhn/SP500-Chart-Dataset}},
70
+ note={Yonsei University}
71
+ }
72
+ ```
73
+
74
+ ## License
75
+
76
+ CC BY 4.0