Commit
·
7de6165
1
Parent(s):
9349126
Add LICENSE file,
Browse filesadd README.md,
add 'days' and 'minutes' folder with initial dataset
This view is limited to 50 files because it contains too many changes.
See raw diff
- LICENSE +11 -0
- README.md +41 -0
- days/AAPL.days.valid.parquet +3 -0
- days/ADBE.days.valid.parquet +3 -0
- days/AMD.days.valid.parquet +3 -0
- days/AMGN.days.valid.parquet +3 -0
- days/AMZN.days.valid.parquet +3 -0
- days/AVGO.days.valid.parquet +3 -0
- days/CHTR.days.valid.parquet +3 -0
- days/CMCSA.days.valid.parquet +3 -0
- days/COST.days.valid.parquet +3 -0
- days/CSCO.days.valid.parquet +3 -0
- days/GOOG.days.valid.parquet +3 -0
- days/INTC.days.valid.parquet +3 -0
- days/INTU.days.valid.parquet +3 -0
- days/ISRG.days.valid.parquet +3 -0
- days/MRK.days.valid.parquet +3 -0
- days/MSFT.days.valid.parquet +3 -0
- days/NFLX.days.valid.parquet +3 -0
- days/NVDA.days.valid.parquet +3 -0
- days/PEP.days.valid.parquet +3 -0
- days/PYPL.days.valid.parquet +3 -0
- days/QCOM.days.valid.parquet +3 -0
- days/REGN.days.valid.parquet +3 -0
- days/SBUX.days.valid.parquet +3 -0
- days/SNAP.days.valid.parquet +3 -0
- days/TSLA.days.valid.parquet +3 -0
- days/TXN.days.valid.parquet +3 -0
- days/VST.days.valid.parquet +3 -0
- minutes/AAPL.minutes.valid.parquet +3 -0
- minutes/ADBE.minutes.valid.parquet +3 -0
- minutes/AMD.minutes.valid.parquet +3 -0
- minutes/AMGN.minutes.valid.parquet +3 -0
- minutes/AMZN.minutes.valid.parquet +3 -0
- minutes/AVGO.minutes.valid.parquet +3 -0
- minutes/CHTR.minutes.valid.parquet +3 -0
- minutes/CMCSA.minutes.valid.parquet +3 -0
- minutes/COST.minutes.valid.parquet +3 -0
- minutes/CSCO.minutes.valid.parquet +3 -0
- minutes/GOOG.minutes.valid.parquet +3 -0
- minutes/INTC.minutes.valid.parquet +3 -0
- minutes/INTU.minutes.valid.parquet +3 -0
- minutes/ISRG.minutes.valid.parquet +3 -0
- minutes/META.minutes.valid.parquet +3 -0
- minutes/MRK.minutes.valid.parquet +3 -0
- minutes/MSFT.minutes.valid.parquet +3 -0
- minutes/NFLX.minutes.valid.parquet +3 -0
- minutes/NVDA.minutes.valid.parquet +3 -0
- minutes/PEP.minutes.valid.parquet +3 -0
- minutes/PYPL.minutes.valid.parquet +3 -0
LICENSE
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Custom License - Non-Commercial Research Use Only
|
2 |
+
|
3 |
+
This dataset contains historical financial time series data collected via the yfinance Python library, which retrieves public market data from Yahoo Finance.
|
4 |
+
|
5 |
+
These data remain the property of their respective original sources and are provided here strictly for non-commercial research and educational purposes.
|
6 |
+
|
7 |
+
Redistribution of this dataset may be limited by the terms of the original data providers.
|
8 |
+
|
9 |
+
NO WARRANTY IS PROVIDED. USE AT YOUR OWN RISK.
|
10 |
+
|
11 |
+
For any intended use beyond private research, please consult the terms of Yahoo Finance and other data providers.
|
README.md
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Preliminary
|
2 |
+
|
3 |
+
## Preliminary Financial Time Series Dataset
|
4 |
+
|
5 |
+
> ⚠️ **Warning:** This dataset is preliminary and intended for development, testing, and feedback purposes only.
|
6 |
+
> A stable, production-ready version will be released later as a separate dataset.
|
7 |
+
|
8 |
+
## Overview
|
9 |
+
|
10 |
+
This dataset contains **parquet files** with time series data for various financial instruments, collected through an early-stage version of our data pipeline. The data is already usable, but the structure and naming conventions are **still subject to change**.
|
11 |
+
|
12 |
+
Each instrument currently has:
|
13 |
+
- One file with **daily candles** covering multiple years
|
14 |
+
- One file with **minute candles** covering a much shorter, but more detailed recent period
|
15 |
+
|
16 |
+
This dual-resolution format is intended to enable models that can reason across both long-term and short-term patterns.
|
17 |
+
|
18 |
+
## Purpose
|
19 |
+
|
20 |
+
This preliminary dataset exists to:
|
21 |
+
- Make early access to usable data possible
|
22 |
+
- Facilitate testing and iteration
|
23 |
+
- Gather feedback before finalizing a stable format
|
24 |
+
|
25 |
+
## Expected Changes
|
26 |
+
|
27 |
+
The internal structure of the parquet files will remain stable. However, the following may change:
|
28 |
+
- File naming conventions
|
29 |
+
- Organization into folders or shards (e.g., by year or month)
|
30 |
+
- Dataset split logic
|
31 |
+
|
32 |
+
The final version will be released separately to ensure compatibility and stability for users who rely on long-term consistency.
|
33 |
+
|
34 |
+
### License & Usage
|
35 |
+
|
36 |
+
This dataset is not licensed under a standard open data license.
|
37 |
+
|
38 |
+
See the `LICENSE` file for usage permissions. The dataset is intended for **solely for research and educational purposes**.
|
39 |
+
Data is aggregated from publicly available sources such as [Yahoo Finance](https://finance.yahoo.com) via `yfinance`.
|
40 |
+
|
41 |
+
Redistribution may be restricted. Please respect the terms of the original data providers.
|
days/AAPL.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:42c2c8e8f12bb127f151c99822d74eb3f81e56e338341f58f72df10a452e3c06
|
3 |
+
size 542381
|
days/ADBE.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4706fafbe1670be0e5a5c0733aff92fcd0df36ba48124a6a1bb5f6fa1adb3d46
|
3 |
+
size 427594
|
days/AMD.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e9a9bb2f2f6a5ae8f1f9756e8b11de94211a66a128d6020c953e36c342ff1edd
|
3 |
+
size 322440
|
days/AMGN.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b451983d830571fed9932fbc60959282fcc3e61857c5e4c5945eaecc390eeee8
|
3 |
+
size 491785
|
days/AMZN.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:69103d3f16ae18186a228da4538b2e26fb5e05ff06d8478c88c85cfbe1e2201d
|
3 |
+
size 300782
|
days/AVGO.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13688e043529a3e0f376fd1649a813a7ce258a3661d4a57752422d862b40d120
|
3 |
+
size 200460
|
days/CHTR.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a80554569f296037db63f620f1104f4aecc95f35d98d484c66df6d90ce2ba16b
|
3 |
+
size 160575
|
days/CMCSA.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c329f0021ec0f62613fbfc32a2590a8077c34d604439604f073f7c70329e8da9
|
3 |
+
size 505648
|
days/COST.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:af6acf57c686df9136c0cad1ca2a162e0f14acb2c60c3e2deea5669e2cb7ab23
|
3 |
+
size 436190
|
days/CSCO.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3cde83163252fb625ccec3a28b320f21465037ccd94657117b4b64196253d6af
|
3 |
+
size 441525
|
days/GOOG.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f1128a8dcd3b632d4fe2919bbd41f6d5abe56b7278cc55309f7e679cc915ba0
|
3 |
+
size 268750
|
days/INTC.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ae36a7cf2296ca3bc1f5b2fe89045658d8706d4d63b1971d0d9dfb71a6d9730d
|
3 |
+
size 536217
|
days/INTU.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a76b3f197b98fb38498a7c0e6c12392a3e1d1532c02077877a7f42485a47dc99
|
3 |
+
size 391233
|
days/ISRG.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d81cbae8d01188a49aae0520554dfbe5906ac39910dc8657de096ff2521b614
|
3 |
+
size 257869
|
days/MRK.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:271bf21f3a5be796c1a8fdadf5b32ad1e6377e04e2633a65ba3635c321bb2215
|
3 |
+
size 748700
|
days/MSFT.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac8dfdbb88873cd7a65c441ef0bff641bef0441e4f6498fb87b3d9e072a106d0
|
3 |
+
size 493738
|
days/NFLX.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f13c8b6feb91e2ffad456173019320764cdd641ed816e7cd4f677b39363662c8
|
3 |
+
size 246770
|
days/NVDA.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4ee8902a09b0b0811fe781a841c2013fffce0e9ecc17f2d2a298a7d300a054c8
|
3 |
+
size 336355
|
days/PEP.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b49956d5026d709374429b691d45bafdbac59751d9861cda5e7afd357ae541e
|
3 |
+
size 621241
|
days/PYPL.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:69a1622681c624dd42e7e4b3dcd2afa79d0bee1462213d10652989660e7149af
|
3 |
+
size 104847
|
days/QCOM.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ad4a73c3fdd473b47ca2de07936aa7f05d3d513c56d89c08d103c220d20cabb
|
3 |
+
size 417340
|
days/REGN.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:942cea870811c15810c47aa5b1445b38c49552399c0a125194aa639a589495ee
|
3 |
+
size 373462
|
days/SBUX.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:33d6d8012293fd0555c721e972b74d15ec7f90c20057f29d8ff22b9e3341ff2e
|
3 |
+
size 402288
|
days/SNAP.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:385701c616f40564e2241ae1559270c6af39457feb771a0a40347a4281ebdcb5
|
3 |
+
size 77794
|
days/TSLA.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3748e3de97df3b2e8e310703880cc2c13f7662d829c6620dcefa4203c20f52fd
|
3 |
+
size 161506
|
days/TXN.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d824aa96a6679043ae95eda7733908323e748275fcda817a4019fa62e59ac3f
|
3 |
+
size 645650
|
days/VST.days.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3f0373da39670ecb78def7698b65b059f14102b9cfa5eb18a9a50ba1c911a6b9
|
3 |
+
size 109095
|
minutes/AAPL.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7af8bfdf43eac94df3a95e23465180eef4cb741f2f0781ac2eeadd7e9d110878
|
3 |
+
size 59561
|
minutes/ADBE.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:767c655cd101df147d1262d745a832f774cf098ff06e924b8fca047496b31a45
|
3 |
+
size 61925
|
minutes/AMD.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:11b53582d1468de92cc513913ea60a10bbeb944a8e9022d5a38b623127617140
|
3 |
+
size 57971
|
minutes/AMGN.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:53928fa85ff4f30c717073f2ef5fef957f62da0989f02d194dcbebfea393ada8
|
3 |
+
size 58283
|
minutes/AMZN.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e9e1194a8d8441e798b1d0edd8cc56ee700182b72d57e5acdab2b0ee42aa3f08
|
3 |
+
size 62829
|
minutes/AVGO.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d23ef3753cdbbbc5f0c40d7f623cfb4a50100101524ec6c424878b66208cb6e9
|
3 |
+
size 61674
|
minutes/CHTR.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc24fd2cd1a8e849393e662902cc4cd63211952034d49dfd9e40ab9cb6aa467e
|
3 |
+
size 61457
|
minutes/CMCSA.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b7d87b288abd77ebc3e10544f840922d87ff6a4a43a117e34b47468f5eec5ec
|
3 |
+
size 47485
|
minutes/COST.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0b5b920544f91dd8a6f443850e9dd1a5649a345290865c15211f7c967c0527fc
|
3 |
+
size 62744
|
minutes/CSCO.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2c44421ea644a94449f57db15403c9d3bf52bb01e1966f3fbc59533748cbd8da
|
3 |
+
size 46695
|
minutes/GOOG.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f876729e5cbac7874b82f370c1446973124e8faea8a7fa2a8896d7751d83a42
|
3 |
+
size 59268
|
minutes/INTC.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0fc3ae0708bbeff2dfda2a7c5fb0863cacccb9b28f88f04ff9e4f6707109304
|
3 |
+
size 52589
|
minutes/INTU.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:62bab49a265db39890a8c00d174f3851df58242bf027b002a16118834b64c329
|
3 |
+
size 55038
|
minutes/ISRG.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5bf143493dd865c4c31ddaf9324507fee5aa31a0fe4696438e3f2282c9428b1a
|
3 |
+
size 58039
|
minutes/META.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6801a0d433fc4ee9c6004bc6845fcada42b07a2bb36da6dfe109d49a27cddd6c
|
3 |
+
size 70112
|
minutes/MRK.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0ba87f35c6a43432e0e54c197c36961d60901cc50371126b0bada2a47849d99
|
3 |
+
size 45854
|
minutes/MSFT.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d01b001c709c4aa7f6f3e43d8fcbfd413983e9a99b40997c3cb8b42709d67a4
|
3 |
+
size 63036
|
minutes/NFLX.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:163f5abb8c9c231934568afe0f8f9620adef995fe1d8a010d9f1469cc02bf601
|
3 |
+
size 69136
|
minutes/NVDA.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7db2991bd10e043fa7805bedf436758ba72f730783eca29c8ea71111dd8c071f
|
3 |
+
size 64063
|
minutes/PEP.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f0e1bf5415f165cf6b18aec7511967a57c0a8770c1d41e2a79a334438bcf4e5
|
3 |
+
size 53925
|
minutes/PYPL.minutes.valid.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dfb1a3d870e3fd1b456f40f4eea48db02cc0671eea912640f32ca17f174842d3
|
3 |
+
size 49737
|