ETH Up or Down 5m historical data

ETH Up or Down 5m is a Polymarket crypto series with markets recurring every 5 minutes. Marketlens has captured 42,076 markets since March 1, 2026, of which 42,074 resolved, with $2.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 eth-up-or-down-5m

Markets
42,076
Resolved
42,074
Traded volume
$2.3M
Avg volume / market
$87
Cadence
5 minutes
Coverage from
2026-03-01
Data through
2026-08-05
Category
Crypto

Resolution outcomes

Down: 21,081 (50.1%)Up: 20,993 (49.9%)

Outcomes across 42,074 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

  • Ethereum Up or Down - August 5, 9:15AM-9:20AM ET
  • Ethereum Up or Down - August 5, 9:10AM-9:15AM ET
  • Ethereum Up or Down - August 5, 9:05AM-9:10AM ET

Backtest this series

python
from marketlens import MarketLens client = MarketLens() result = client.backtest( MyStrategy(), "eth-up-or-down-5m", 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 ETH Up or Down 5m markets are in the archive?

42,076 markets from March 1, 2026 through August 5, 2026, of which 42,074 have resolved and 2 are active.

What data exists for each ETH Up or Down 5m 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 "eth-up-or-down-5m" through the API and Python SDK, or downloadable as Parquet.

How often do ETH Up or Down 5m markets resolve Down?

Of 42,074 resolved markets with a recorded outcome, 21,081 resolved Down (50.1%) and 20,993 resolved Up.

How much does a typical ETH Up or Down 5m market trade?

Average traded volume is $87 per market, $2.3M across the series.

Can I backtest strategies on ETH Up or Down 5m?

Yes. Pass the slug "eth-up-or-down-5m" 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: ETH Up or Down 15m, ETH Up or Down Daily, ETH Up or Down Hourly, Bitcoin Hit Price Monthly, BTC Multi Strikes Weekly, Ethereum Hit Price Monthly, or all crypto series.

Try it

Replay ETH Up or Down 5m 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