--- license: mit task_categories: - time-series-forecasting tags: - polymarket - prediction-markets - orderbook - btc - eth - trading - chainlink - binance size_categories: - 1M target_price` (price went up) - **NO wins** if `oracle_price <= target_price` (price went down or flat) The `target_price` is the oracle price at market open. ## Usage ```python import pandas as pd # Read a single shard df = pd.read_parquet("shard_0001.parquet") # Read all shards import glob dfs = [pd.read_parquet(f) for f in sorted(glob.glob("shard_*.parquet"))] df = pd.concat(dfs, ignore_index=True) # Filter BTC only (oracle_price > $50,000) btc = df[df["oracle_price"] > 5_000_000] # Get YES side only yes_side = df[df["outcome_up"] == 1.0] ``` ## Use Cases - Backtesting prediction market trading strategies - Orderbook microstructure analysis - Price discovery dynamics in binary options - Oracle vs spot price divergence studies ## Collection Details - **Source**: Polymarket CLOB (Central Limit Order Book) - **Oracle**: Chainlink price feeds on Arbitrum - **Spot**: Binance BTC/USDT and ETH/USDT - **Shard rotation**: Every 30 minutes - **Update frequency**: ~1 second per market side - **Collection start**: February 2026