--- pretty_name: Universe Daily Price language: - en license: other task_categories: - time-series-forecasting - tabular-regression tags: - finance - quantitative-trading - backtesting - algorithmic-trading - market-data - daily - ohlcv - time-series size_categories: - 10K 1e7) & (df["max_pct_change"] < 0.5)] print(liquid.groupby("repo_id").size()) ``` **Example Output:** ``` symbol AAPL repo_id paperswithbacktest/Stocks-Daily-Price liquidity 2.184261e+10 max_pct_change 0.518692 ``` ## Columns | Column Name | Description | | :--- | :--- | | **symbol** | The instrument symbol, as it appears in the price file. | | **repo_id** | The Hugging Face dataset that carries the daily prices for this symbol. | | **liquidity** | Latest close multiplied by latest volume, in quote currency. | | **max_pct_change** | Largest absolute daily percent change in closing price over the symbol's history. | ## What This Data Does Not Cover **The crypto rows over-count by two orders of magnitude.** The index lists 6,730 symbols against `Cryptocurrencies-Daily-Price`, and 88 of them are actually in that file. The other six files line up: 209 of 210 bonds, 166 of 171 currencies, 113 of 117 indices and all 63 commodities resolve to a series that exists. Check membership against the price file before treating a row here as tradable. **No dates.** This is a snapshot of the current universe, not a history of it. `liquidity` and `max_pct_change` describe the symbol as of the last refresh, so neither can be used point-in-time. ## Access Browsing the card and the schema is open to anyone. Downloading the files needs an approved request, tied to a subscription: [what each plan includes](https://paperswithbacktest.com/pricing). The same subscription covers the other datasets in this organisation. ## Elsewhere - [Dataset page and coverage charts](https://paperswithbacktest.com/datasets/universe-daily-price) - [The strategy catalogue](https://paperswithbacktest.com/strategies), 3,806 papers and 4,837 replicated strategies - [`pwb-toolbox`](https://github.com/paperswithbacktest/pwb-toolbox), the loader used in the snippet above - [`awesome-systematic-trading`](https://github.com/paperswithbacktest/awesome-systematic-trading), the replicated strategies with their measured Sharpe - [Every dataset in this organisation](https://huggingface.co/datasets/paperswithbacktest) Papers With Backtest publishes 32 datasets on the Hub and codes the papers that use them. Every strategy in the catalogue is run over its own full history before it is published, which is where the numbers above come from.