Prediction Markets

Manifold Markets for Beginners: Free Practice for Forecasting

Manifold Markets lets you trade prediction markets with fake money. It's the best way to learn forecasting without financial risk, and it actually improves your real-world predictions.

A
AI Agents Hubยท2026-01-14ยท3 min readยท599 words

Builder of AI agents, crypto trading bots, and open-source automation tools. Sharing practical guides on how to build, deploy, and profit from AI and DeFi technology.

Before risking real money on Polymarket or Kalshi, you should spend time on Manifold Markets. It uses play money (called "mana"), but the forecasting skills you develop are completely real.

What is Manifold Markets?

Manifold is a free prediction market platform where anyone can:

  • Create markets on any question
  • Trade YES/NO shares with play money
  • Track your forecasting accuracy over time
  • Compete on accuracy leaderboards

It's been running since 2021 with hundreds of thousands of markets on everything from politics to AI progress to sports.

Why Play Money Markets Work for Practice

This surprises most people: play money forecasting is genuinely useful. Research from Philip Tetlock (author of Superforecasting) shows that prediction market experience โ€” even with play money โ€” calibrates probabilistic thinking.

The key is taking it seriously. Treat every market as if real money is at stake. Your brain learns the feedback loops: overconfident predictions get punished, well-reasoned ones get rewarded.

Getting Started (5 Minutes)

  1. Go to manifold.markets
  2. Sign in with Google
  3. You start with 500 mana ($5 equivalent) free
  4. Explore the homepage for active markets
  5. Place your first trade

What to Bet On

Start with questions where you have information advantage:

  • Your industry ("Will company X release feature Y?")
  • Your location ("Will [local event] happen?")
  • Your expertise ("Will AI reach [specific benchmark]?")

Avoid to start:

  • Political markets (huge variance, hard to be informed)
  • Sports (you're competing against expert sports bettors)

Tracking Your Calibration

The most important metric isn't profit โ€” it's calibration. Are your 70% predictions right 70% of the time?

# Manifold has an API to analyze your trading history
import requests

def get_manifold_calibration(username: str) -> dict:
    """Get your forecasting accuracy from Manifold API."""
    # Get your bets
    bets_r = requests.get(
        f"https://api.manifold.markets/v0/bets",
        params={"username": username, "limit": 100}
    )
    bets = bets_r.json()
    
    # Group by probability bucket
    buckets = {
        "0-30%": {"count": 0, "correct": 0},
        "31-50%": {"count": 0, "correct": 0},
        "51-70%": {"count": 0, "correct": 0},
        "71-90%": {"count": 0, "correct": 0},
        "90-100%": {"count": 0, "correct": 0},
    }
    
    for bet in bets:
        if not bet.get('isRedemption') and bet.get('outcome'):
            prob = bet.get('probAfter', 0.5)
            outcome = bet.get('outcome')  # 'YES' or 'NO'
            resolution = bet.get('contractResolution')  # 'YES' or 'NO' when resolved
            
            if resolution:
                # Categorize
                if prob < 0.30:
                    bucket = "0-30%"
                elif prob < 0.50:
                    bucket = "31-50%"
                elif prob < 0.70:
                    bucket = "51-70%"
                elif prob < 0.90:
                    bucket = "71-90%"
                else:
                    bucket = "90-100%"
                
                buckets[bucket]["count"] += 1
                if (outcome == "YES" and resolution == "YES") or (outcome == "NO" and resolution == "NO"):
                    buckets[bucket]["correct"] += 1
    
    return buckets

# Perfect calibration: each bucket's accuracy matches its probability label

The Skills That Transfer to Real Markets

After 3-6 months on Manifold, you'll develop:

Base rate thinking: Always ask "what's the historical frequency of this type of event?"

Updating on evidence: When new information arrives, how should you change your estimate?

Overconfidence detection: Manifold's leaderboard shows who's overconfident. Usually everyone who's new.

Market reading: When everyone else is at 30% and you think 50%, you need strong reasons. Learning to hold contrary views takes practice.

Turning Manifold Skills Into Polymarket Profits

The transition from play to real money:

  1. Spend 3 months on Manifold with a consistent positive P&L
  2. Find your strongest categories (where you consistently beat the market)
  3. Start with small amounts on Polymarket in those specific categories
  4. Scale up only on strategies with proven edge

Manifold is free, frictionless, and genuinely improves your forecasting. There's no good reason not to use it.

Related Articles