All market data
Solana15-minutesol-updown-15m

Solana Up/Down 15-minute: resolution statistics

Every resolved sol-updown-15m market in the PolyTest archive — 2,887 markets from Aug 5, 2026 to Sep 5, 2026. Recomputed daily.

How often does it resolve Up?

Up 49.88%
Down 50.12%
50%

Up rate

49.88%

1,440 of 2,887

95% interval

48.06–51.70%

Wilson score

Deviation from 50%

-0.12pp

Within noise

This is a coin flip. The 95% interval (48.0651.70%) contains 50%, so the observed -0.12pp 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 2,887 markets across 24 hourly buckets leaves roughly 120 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

9

consecutive markets

Longest Down streak

10

consecutive markets

Median volume

$1K

per market

Total volume

$4.1M

across the archive

Streaks look meaningful and are not. A fair coin flipped 2,887 times produces a longest run of about 12 purely by chance. The observed runs of 9 and 10 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 sol-updown-15m 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": "sol", "market_type": "15m",
        "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 Solana 15-minute Up/Down markets resolve Up or Down more often?
Across 2,887 resolved sol-updown-15m markets in PolyTest's archive, 49.88% resolved Up and 50.12% resolved Down. The 95% Wilson confidence interval on the Up rate is 48.06% to 51.70%, which contains 50%, so the split is statistically indistinguishable from a coin flip.
Is there a tradeable edge in Solana 15-minute 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 sol-updown-15m markets are in the dataset?
2,887 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 9 consecutive markets and the longest Down streak was 10. For reference, a fair coin flipped 2,887 times produces a longest run of roughly 12 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