All market data
Ethereum1-houreth-updown-1hr

Ethereum Up/Down 1-hour: resolution statistics

Every resolved eth-updown-1hr market in the PolyTest archive — 734 markets from Aug 5, 2026 to Sep 5, 2026. Recomputed daily.

How often does it resolve Up?

Up 51.50%
Down 48.50%
50%

Up rate

51.50%

378 of 734

95% interval

47.88–55.10%

Wilson score

Deviation from 50%

+1.50pp

Within noise

This is a coin flip. The 95% interval (47.8855.10%) contains 50%, so the observed +1.50pp deviation is indistinguishable from sampling noise. Any strategy premised on a directional resolution bias in this series has nothing to stand on.

Resolutions by hour of day

A common hypothesis is that outcomes cluster around session opens or macro releases. Splitting 734 markets across 24 hourly buckets leaves roughly 31 observations each — enough to see a large effect, not enough to trust a small one.

0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

Deviation from a 50/50 split by UTC hour. Green above the line = more Up resolutions, red below = more Down. Hover a bar for the sample size.

Streaks and liquidity

Longest Up streak

8

consecutive markets

Longest Down streak

8

consecutive markets

Median volume

$3K

per market

Total volume

$2.4M

across the archive

Streaks look meaningful and are not. A fair coin flipped 734 times produces a longest run of about 10 purely by chance. The observed runs of 8 and 8 are what randomness looks like at this sample size — which is exactly why “it’s due for a reversal” loses money.

Method

  • Source: PolyTest’s own archive of Polymarket eth-updown-1hr markets. Only markets with a recorded resolution are counted; unresolved and voided markets are excluded.
  • Confidence intervals use the Wilson score method, which stays well-behaved at small sample sizes where the normal approximation overstates precision.
  • Hours are UTC and bucketed by each market’s start time.
  • Figures are recomputed daily. The archive grows continuously, so numbers move as new markets resolve.

Reproduce this yourself

Every number above comes from the same public API you can query. Resolved markets are retained — Polymarket’s own API returns 404 for a settled market’s book and an empty array for its price history.

import os, requests
from collections import Counter

BASE = "https://api.polytest.io/api/v1"
H = {"X-API-Key": os.environ["POLYTEST_KEY"]}

outcomes, offset = Counter(), 0
while True:
    page = requests.get(f"{BASE}/markets", headers=H, params={
        "coin": "eth", "market_type": "1hr",
        "limit": 100, "offset": offset,
    }).json()["markets"]
    if not page:
        break
    outcomes.update(m["winner"] for m in page if m.get("winner"))
    offset += 100

total = outcomes["Up"] + outcomes["Down"]
print(f"Up {100 * outcomes['Up'] / total:.2f}%  (n={total})")

Frequently asked questions

Do Polymarket Ethereum 1-hour Up/Down markets resolve Up or Down more often?
Across 734 resolved eth-updown-1hr markets in PolyTest's archive, 51.50% resolved Up and 48.50% resolved Down. The 95% Wilson confidence interval on the Up rate is 47.88% to 55.10%, which contains 50%, so the split is statistically indistinguishable from a coin flip.
Is there a tradeable edge in Ethereum 1-hour Up/Down resolution bias?
Almost certainly not from the base rate alone. The observed split is within sampling noise of 50%. A base rate is public information, so it is in the price before you can act on it. Any real edge has to come from microstructure — spread, depth and order flow — not from which side wins more often.
How many eth-updown-1hr markets are in the dataset?
734 resolved markets, covering Aug 5, 2026 to Sep 5, 2026. PolyTest records point-in-time order book snapshots for each one and retains them after resolution, which Polymarket's own API does not.
What was the longest run of consecutive Up or Down resolutions?
The longest Up streak was 8 consecutive markets and the longest Down streak was 8. For reference, a fair coin flipped 734 times produces a longest run of roughly 10 by chance, so streaks of this length are expected rather than evidence of a pattern.

The order books behind these outcomes

Knowing which side won tells you the answer, not the path. PolyTest keeps point-in-time snapshots with 8 levels of book depth for every market above, so you can test what your order would actually have filled at.

Other markets