Loading live trades…
Live on Kalshi · CFTC-Regulated Markets

The AI That Reads
Markets Before They Move

Aurora reads every Kalshi prediction market in real time and moves before the crowd does — powered by Grok AI with live web search, placing precise, edge-driven trades while you live your life.

Trades Analyzed
Win Rate
Open Positions
$14.99/mo
Full Access
Free Preview

Aurora's Current Featured Trade

Updated every 6 hours. Pro members see the full position board.

🔒 Pro members see all active trades, P&L analytics, and can run their own bot

Unlock Everything — $14.99/mo
Why Aurora

Built Different

🧠

Grok AI + Live Web Search

Aurora uses xAI's Grok model with real-time internet search to analyze market context — not stale training data — before every decision.

📊

Edge-Based Sizing

Every trade is calculated on expected value edge in cents. Aurora only enters when probability vs. price creates a clear mathematical advantage.

🛡️

Built-in Risk Management

Daily loss limits, max position size, max concurrent trades — Aurora stops itself before a bad day becomes a bad week.

🎯

Every Market Category

Politics, economics, climate, sports, tech, science — Aurora scans all Kalshi categories, not just a subset. More surface = more edge.

Your Own Bot Instance

Pro members can spin up a personal Aurora instance on our server using their own Kalshi + Grok API keys. Tune every parameter.

👁️

Real-Time Portal

Watch your bot trade live. See open positions, filled orders, P&L by trade, daily charts — all in your personal dashboard.

Process

How Aurora Trades

1

Scan

Every 30 min, Aurora pulls all open Kalshi markets — filtering by volume, time to close, and orderbook health.

2

Analyze

Grok AI researches the web in real time, then assigns a probability estimate and confidence level to each candidate.

3

Edge Check

Aurora calculates the edge in cents. If the edge exceeds the minimum threshold, the trade qualifies.

4

Execute

Limit orders placed via Kalshi's official CFTC-regulated API. Position size auto-calculated from your balance.

Pricing

Simple, Transparent Plans

Cancel any time from your account — no questions asked.

Free Forever
$0 / mo

See what Aurora is doing. Get a feel before committing.

1 featured Aurora trade (rotates every 6h)
Live win rate & public stats
Community access (Skool)
All Aurora trades & P&L
Your own trading bot
Get Started Free
Pro Feature

Your Own Aurora Bot

Pro members get a dedicated Aurora instance running on our servers, connected to their own Kalshi and Grok accounts. You control the capital, the risk, the trades.

What you need

Kalshi Account
Free to open at kalshi.com — must be in good standing. Takes ~5 min.
Kalshi API Key (RSA)
Generated in your Kalshi dashboard. We'll show you exactly how.
Grok API Key
From console.x.ai — free tier available, or pay-as-you-go.
Aurora Pro ($14.99/mo)
We host the bot, monitor uptime, and keep it updated.
How to get your API keys →

What you control

Min edge (¢) Tune 3–20¢
Max position size 1–10% of balance
Daily loss limit 5–25% of balance
Max open positions 1–20 concurrent
Cycle interval 15–60 min
⚠️ Your capital, your risk. Aurora is a software tool, not a financial advisor. Past performance does not guarantee future results.
🏛️

Join the JustBuildNGo Community

Connect with other Aurora traders, share strategies, get setup help, and stay current on what markets are moving. Part of the JustBuildNGo automation movement — turning AI into income.

Join the Community →
+ liveResp.total_equity_usd; } } catch {} } // Load featured trade async function loadFeatured() { const box = document.getElementById('featured-trade'); try { const r = await fetch('/api/trades/featured'); const t = await r.json(); if (!t) { box.innerHTML = '
No open trades right now. Check back soon.
'; return; } const pnlVal = (t.pnl_cents || 0) / 100; const pnlClass = pnlVal >= 0 ? 'positive' : 'negative'; const pnlStr = pnlVal >= 0 ? `+$${pnlVal.toFixed(2)}` : `-$${Math.abs(pnlVal).toFixed(2)}`; box.innerHTML = `
Aurora Live Trade
${t.ticker || '—'}
${t.market_title || ''}
${(t.side||'').toUpperCase()} ${t.result || 'pending'}
${t.price_cents ? '$'+(t.price_cents/100).toFixed(2) : '—'}
Entry Price
${t.probability != null ? t.probability + '%' : '—'}
AI Probability
${pnlStr}
P&L
${t.confidence || '—'}
Confidence
🔒 Pro members see all ${' '}active trades plus Aurora's full AI reasoning for each one. Upgrade →
`; } catch { box.innerHTML = '
Unable to load trade data.
'; } } // Build live ticker from stats async function loadTicker() { try { const r = await fetch('/api/trades/stats'); const d = await r.json(); const items = [ `
Aurora Status: ACTIVE
`, `
✓ Win Rate: ${d.win_rate_pct}%
`, `
Total Trades: ${d.total_trades}
`, `
Open Positions: ${d.open_trades}
`, `
Powered by Grok AI + Kalshi
`, `
Join free at mikesjourney.space
`, ]; const doubled = [...items, ...items].join(''); document.getElementById('ticker-inner').innerHTML = doubled; } catch {} } loadStats(); loadFeatured(); loadTicker();