CoolFace
Datasetpublic

usamaahmedsh/elliott-wave-market-data

Elliott Wave Market Data Comprehensive OHLCV market data for training Elliott Wave pattern recognition neural networks. Dataset Description This dataset contains historical OHLCV (Open, High, Low, Close, Volume) data across multiple asset classes and timeframes, specifically curated for Elliott Wave analysis and pattern recognition. Asset Classes Stocks: S&P 500 components and international equities Crypto: Top 50 cryptocurrencies by market cap… See the full description on the dataset page: https://huggingface.co/datasets/usamaahmedsh/elliott-wave-market-data.

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes189downloads
Dataset Card

Elliott Wave Market Data

Comprehensive OHLCV market data for training Elliott Wave pattern recognition neural networks.

Dataset Description

This dataset contains historical OHLCV (Open, High, Low, Close, Volume) data across multiple asset classes and timeframes, specifically curated for Elliott Wave analysis and pattern recognition.

Asset Classes

  • —Stocks: S&P 500 components and international equities
  • —Crypto: Top 50 cryptocurrencies by market cap
  • —ETFs: Sector ETFs, index ETFs, commodity ETFs
  • —Forex: Major and cross currency pairs
  • —Commodities: Precious metals, energy, agriculture futures
  • —Indices: Major global market indices

Timeframes

  • —1h: Hourly data (up to 2 years history)
  • —4h: 4-hour data (resampled from 1h)
  • —1d: Daily data (maximum available history)
  • —1wk: Weekly data (maximum available history)

Dataset Statistics

  • —Total Rows: 13,561,133
  • —Total Unique Tickers: 760
  • —Generated: 2026-02-27 15:29 UTC

By Category

Category1h Bars4h Bars1d Bars1wk BarsTickers
commodities158,78744,27196,55820,12615
crypto800,895200,364131,54418,83550
etfs406,220136,073431,41589,54080
forex432,687111,377147,71129,64625
indices87,34728,665159,48533,19815
international517,124168,580633,784129,92385
stocks2,466,894826,4224,351,747901,915490

Data Schema

Each Parquet file contains the following columns:

ColumnTypeDescription
datetimedatetime64Timestamp of the bar
openfloat64Opening price
highfloat64Highest price
lowfloat64Lowest price
closefloat64Closing price
volumefloat64Trading volume
tickerstringTicker symbol
intervalstringTimeframe interval

Usage

python
import pandas as pd
from datasets import load_dataset

# Load specific file
df = pd.read_parquet("hf://datasets/YOUR_USERNAME/elliott-wave-market-data/stocks/stocks_1d.parquet")

# Or load all data
dataset = load_dataset("YOUR_USERNAME/elliott-wave-market-data")

Data Sources

  • —Primary source: Yahoo Finance (via yfinance)
  • —All data is adjusted for splits and dividends

License

MIT License - Free for academic and commercial use.

Citation

If you use this dataset, please cite:

bibtex
@dataset{elliott_wave_market_data,
  title={Elliott Wave Market Data},
  author={Elliott Wave Analyzer},
  year={2025},
  publisher={HuggingFace}
}