[SYS]: LOADING KALSHI_PLAYBOOK...> $17 · PDF · INSTANT_DOWNLOAD
← YETI_GAMES.LLC[PDF] $17
[PDF_DOWNLOAD] // $17 // CFTC_REGULATED_MARKETS

FIND YOUR EDGE
ON KALSHI —
WITH AI DOING
THE RESEARCH

A step-by-step playbook for trading prediction markets using Claude AI. Includes a real live trade, documented thesis, and a 5-step repeatable system.

// INSTANT PDF DOWNLOAD · NO SUBSCRIPTION
$10.08
REAL TRADE
38.9%
ROI TARGET
5-STEP
SYSTEM
CFTC
REGULATED
> WHAT'S_INSIDE
01
THE 5-STEP AI WORKFLOW

Scan → Critique → Score → Execute → Manage. A repeatable system you run before every trade.

02
FULL WORKED EXAMPLE

Real trade placed May 7, 2026. Full thesis documented. 38.9% ROI target. Every decision explained.

03
IMPLIED PROBABILITY & EDGE

How to read Kalshi prices, calculate your edge, and know when the market is wrong.

04
MACOS SETUP GUIDE

Fixes the PEM key and environment errors that block most beginners before they even place a trade.

05
SIZING RULES

How much to bet. When to pass. Position sizing that keeps you in the game long-term.

06
BEGINNER MISTAKES

The 5 most common errors new Kalshi traders make — and exactly how to avoid each one.

> WHY_IT_WORKS
Not theory — every step executed live with real money
AI does research in minutes: ADP, jobless claims, CPI leading indicators
Kalshi is CFTC-regulated — legal, real payouts, not crypto
The content market for Kalshi is nearly empty — this guide doesn't exist yet
Works even if you've never traded prediction markets before
[CLAUDE_KALSHI_PLAYBOOK] // PDF
$17
Most trading courses: $200–$500
// INSTANT DOWNLOAD · PDF FORMAT · 30-DAY MONEY-BACK GUARANTEE
// PRO EDITION COMING AT $47–67 — BUY NOW TO LOCK UPGRADE PRICE
> WHO_THIS_IS_FOR
Complete beginners who want a proven system, not guesswork
Anyone curious about prediction markets but unsure where to start
Traders who want to add AI-assisted research to their process
> EARLY_READERS
// TESTIMONIAL SLOT 1 — COMING SOON
// TESTIMONIAL SLOT 2 — COMING SOON
// TESTIMONIAL SLOT 3 — COMING SOON
SAMPLE // INSIDE THE PLAYBOOK

Kalshi CLI Setup on macOS

The docs don't cover paper trading setup. Here's what the playbook does — the exact errors, the exact fixes.

kalshi-python CLIClaude CodemacOS TerminalOpenSSLKalshi Demo API
STEP 1 — CREDENTIAL SETUP
mkdir -p ~/.kalshi
touch ~/.kalshi/.env
chmod 700 ~/.kalshi

# Add to ~/.zshrc:
export KALSHI_ACCESS_KEY="your-uuid-here"
export KALSHI_PRIVATE_KEY_PATH="/Users/you/.kalshi/private_key.pem"
export KALSHI_ENVIRONMENT="demo"

Note:KALSHI_ACCESS_KEY must be the UUID — not the key's display name. They look similar. Only the UUID works.

STEP 2 — FIX THE INVALIDBYTE ERROR

Copy-pasting your private key from a browser on macOS corrupts it with hidden characters. The CLI throws:

ValueError: InvalidData(InvalidByte(4, 95))

Fix with OpenSSL:

openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt \
  -in ~/.kalshi/private_key.pem \
  -out ~/.kalshi/private_key_fixed.pem

mv ~/.kalshi/private_key_fixed.pem ~/.kalshi/private_key.pem
chmod 600 ~/.kalshi/private_key.pem
STEP 3 — FIX THE NOT_FOUND ERROR (DEMO MODE)

Some CLI builds are hardcoded to production. Demo credentials return NOT_FOUND. Patch cli.py to read your env var:

import os
KALSHI_ENV = os.getenv("KALSHI_ENVIRONMENT", "prod").lower()
if KALSHI_ENV == "demo":
    BASE_URL = "https://external-api.demo.kalshi.co"
else:
    BASE_URL = "https://api.elections.kalshi.com"

Add aliases to ~/.zshrc:

alias kalshi-demo='export KALSHI_ENVIRONMENT=demo && echo "→ DEMO"'
alias kalshi-prod='export KALSHI_ENVIRONMENT=prod && echo "→ PRODUCTION"'
WINDOWS SETUP

Windows users: install Python 3.9+, Git, and Node.js first. Then clone both repos and set env vars via PowerShell:

# Set credentials (PowerShell — run once)
[System.Environment]::SetEnvironmentVariable("KALSHI_ACCESS_KEY", "your-uuid", "User")
[System.Environment]::SetEnvironmentVariable("KALSHI_PRIVATE_KEY_PATH", "$HOME\.kalshi\private_key.pem", "User")
[System.Environment]::SetEnvironmentVariable("KALSHI_ENVIRONMENT", "demo", "User")

# Clone the CLI and plugin
git clone https://github.com/austron24/kalshi-cli
git clone https://github.com/austron24/kalshi-trader-plugin

# Install dependencies
cd kalshi-cli && pip install -r requirements.txt
cd ../kalshi-trader-plugin && claude mcp install .

InvalidByte on Windows? Install OpenSSL from slproweb.com and run the same PKCS8 conversion — same error, same fix, different shell syntax. Full Windows appendix inside the playbook.

// PLAYBOOK CONTINUES: positions bug fix · Windows full appendix · the 5-step workflow · full worked trade

Also covers the “No open positions” bug (Kalshi changed position to position_fp), full Windows troubleshooting table, the 5-step AI workflow, and every command from our live May 7 trade.

> FAQ

READY TO STOP GUESSING?

Get the playbook. Run the system. Trade with an edge.

// © 2026 YETI_GAMES.LLC — ALL_RIGHTS_RESERVED