Get Started
Quickstart Guide
Go from zero to your first automated prediction market trade in under 5 minutes.
1
Configure your environment
Connect your Kalshi or Polymarket API keys in the settings dashboard. We use AES-256 encryption to keep your credentials secure.
Encrypted Endpoints
Verified Logic
// Settings > Accounts // Add Kalshi API Key ID & Private Key // Add Polymarket L2 Wallet Address
2
Create your first model
Use our TypeScript framework to define your trading logic. Start with a template or build from scratch using our indicator library.
Encrypted Endpoints
Verified Logic
export const model: ModelDefinition = {
id: 'my-first-strategy',
timeframe: '1h',
onBar: (ctx) => {
const close = ctx.series.close();
if (close > 0.5) return ctx.orders.buy(10);
}
};3
Run a backtest
Simulate your strategy against historical data. Analyze win rates, drawdowns, and execution slippage with millisecond precision.
Encrypted Endpoints
Verified Logic
// Click 'Run Backtest' // Select Market: 'Will BTC hit $100k?' // Range: Last 30 Days // Result: +12.4% P&L
4
Deploy live
Once satisfied with your backtest, deploy your strategy to our high-availability execution engine for real-time trading.
Encrypted Endpoints
Verified Logic
// Active Deployments // Status: Running // Execution: Live // Region: AWS-US-East-1
Ready to unleash your alpha?
Join the professional traders building the future of prediction market automation on Implyx.