Bitcoin all time high by ___?
A standalone Polymarket crypto event with 2 markets and $2.7M in lifetime traded volume. 2 markets are trading. Marketlens records every market's order book at full depth, coverage running since August 15, 2026.
Data as of 2026-08-16
Markets in this event
Bitcoin all time high by December 31, 2026?
closes 2027-01-01 · volume $1.6M · last price 4.5%
Bitcoin all time high by September 30, 2026?
closes 2026-10-01 · volume $1.1M · last price 1.1%
Query this event
from marketlens import MarketLens
client = MarketLens()
[event] = client.events.list(q="Bitcoin all time high by ___", take=1)
for market in client.events.markets(event.id, take=5):
print(market.question, market.outcomes[0].last_price)
# the order book behind any market, at any past moment
book = client.orderbook.get(market.id, at="2026-08-16T12:00:00Z")
print(book.midpoint, book.bid_depth, book.ask_depth)Common questions
What data does Marketlens have for "Bitcoin all time high by ___"?
2 markets with full depth L2 order book history recorded since August 15, 2026, market metadata with lifetime traded volume, and the winning outcome for each market once it resolves.
How much has "Bitcoin all time high by ___" traded on Polymarket?
$2.7M in cumulative traded volume across the event's markets. Per market volumes are listed in the table on this page.
How do I download "Bitcoin all time high by ___" data?
Query it through the REST API or the Python SDK (pip install marketlens): search events for "Bitcoin all time high by ___", list the event's markets, then pull each market's order book history. Bulk Parquet exports cover full markets for offline work, and the free tier includes 5M rows per day.
Related events: Clarity Act (H.R.3633) signed into law in 2026?, Will Satoshi move any Bitcoin in 2026?, Will Tempo launch a token by ___ ?, or the full event list.
Try it
Pull this event's books in one call
The free tier includes 5M rows per day with full API and full archive access, no card required.
$ pip install marketlens