Ethereum Hit Price Daily historical data

Ethereum Hit Price Daily is a Polymarket crypto series with markets recurring daily. Marketlens has captured 1,971 markets since March 9, 2026, of which 1,957 resolved, with $1.3M in traded volume. Every market's order book is stored in full: periodic L2 snapshots plus every individual price change with a millisecond timestamp, alongside trades, candles, and the final resolution outcome.

Data as of 2026-08-05 · series slug ethereum-hit-price-daily

Markets
1,971
Resolved
1,957
Traded volume
$1.3M
Avg volume / market
$1.1K
Cadence
daily
Coverage from
2026-03-09
Data through
2026-08-05
Category
Crypto

Resolution outcomes

No: 1,747 (89.3%)Yes: 210 (10.7%)

Outcomes across 1,957 resolved markets with a recorded winning outcome. Settlement in the archive is by winning outcome, not by final traded price.

Recent markets in this series

  • Will Ethereum reach $1,950 on August 4?
  • Will Ethereum reach $1,900 on August 4?
  • Will Ethereum dip to $1,850 on August 4?

Backtest this series

python
from marketlens import MarketLens client = MarketLens() result = client.backtest( MyStrategy(), "ethereum-hit-price-daily", after="2026-07-29", before="2026-08-06", initial_cash=1_000, ) result.show() # inspect the run in the dashboard

Available datasets

Order book snapshots and deltasfull L2 depth, millisecond price changes
Tradesindividual fills with side and size
CandlesOHLC at multiple resolutions
Bulk Parquet exportsfull markets for offline research
Backtestingtick level replay with realistic fills

Common questions

How many Ethereum Hit Price Daily markets are in the archive?

1,971 markets from March 9, 2026 through August 5, 2026, of which 1,957 have resolved and 14 are active.

What data exists for each Ethereum Hit Price Daily market?

Full L2 order book history (snapshots plus every price change at millisecond resolution), individual trades, OHLC candles, and the resolution outcome. All of it is queryable by the series slug "ethereum-hit-price-daily" through the API and Python SDK, or downloadable as Parquet.

How often do Ethereum Hit Price Daily markets resolve No?

Of 1,957 resolved markets with a recorded outcome, 1,747 resolved No (89.3%) and 210 resolved Yes.

How much does a typical Ethereum Hit Price Daily market trade?

Average traded volume is $1.1K per market, $1.3M across the series.

Can I backtest strategies on Ethereum Hit Price Daily?

Yes. Pass the slug "ethereum-hit-price-daily" to client.backtest() in the Python SDK. Execution mode replays every market's order book tick by tick and fills simulated orders against real historical depth with queue priority, latency, and fee modelling; Alpha mode replays one bar per market for slower signals over long windows.

Related series: Ethereum Hit Price Monthly, Ethereum Hit Price Weekly, Bitcoin Hit Price Monthly, BTC Multi Strikes Weekly, Bitcoin Hit Price Weekly, BTC Up or Down 5m, or all crypto series.

Try it

Replay Ethereum Hit Price Daily tick by tick

The free tier includes 5M events per day with full API and full archive access, no card required.

bash
$ pip install marketlens