Skip to main content
Simple agents provide baseline strategies for prediction markets, from random predictions to betting on markets with determinable outcomes.

Available Agents

Coinflip Agent

Makes random 50/50 predictions on markets

Coinflip Highest Liquidity

Random predictions targeting high liquidity markets

Known Outcome Agent

Identifies and bets on markets with determinable outcomes

Invalid Agent

Specialized agent for identifying invalid markets

Coinflip Agent

The simplest possible agent that makes random binary predictions. Useful as a baseline for comparing other agents’ performance.

Usage

Implementation

Key Features:
  • No market filtering - bets on everything
  • 50/50 random predictions
  • Minimal computational cost
  • Serves as performance baseline

Coinflip Highest Liquidity Agent

Variant of the coinflip agent that targets high liquidity markets and trades less frequently.

Usage

Configuration

Key Features:
  • Sorts markets by highest liquidity
  • Bets on 2 markets per run
  • Re-trades same markets every 14 days
  • Better price execution due to high liquidity

Known Outcome Agent

Sophisticated agent that uses GPT-4 to identify markets where the outcome is already determinable (e.g., “Will X happen by date Y?” when Y has already passed).

Usage

Implementation

Key Features:
  • Uses GPT-4 to determine if outcome is already known
  • Full Kelly betting strategy with 60% max price impact
  • Skips saturated markets (>95% probability)
  • Requires minimum $5 liquidity
  • High confidence (1.0) predictions when outcome is known

Market Verification

The agent filters markets based on:

Invalid Agent

Identifies and potentially bets on invalid markets (markets that should be resolved as invalid due to ambiguity, errors, or other issues).

Usage

Use Cases:
  • Identifying ambiguous market questions
  • Markets with incorrect resolution criteria
  • Duplicate or spam markets
  • Markets that violate platform rules

Performance Comparison

Expected performance characteristics: *Known Outcome agent should be profitable if markets are mispriced.

Best Practices

When to Use Simple Agents

  • Testing: Validate infrastructure with coinflip agent
  • Baseline: Compare advanced agent performance against coinflip
  • Arbitrage: Use known outcome agent to find mispriced markets
  • Market Quality: Use invalid agent to identify problematic markets

Configuration Tips

Next Steps

Research Agents

Explore agents with web research capabilities

Prophet Agents

Learn about LLM-powered prediction agents