Polymarket App is a professional desktop terminal for the world’s largest prediction market. This is not just a "web-wrapper," but a high-performance application built on Rust/Tauri, combining a trading terminal, AI analytics, and liquidity automation tools.
- Native Speed: Direct communication with Polygon nodes via IPC. Zero-lag order book updates.
- Security: Your keys are stored in your OS's encrypted enclave (Keychain/Windows Vault), not in browser cookies.
- Multitasking: "Picture-in-Picture" mode to track critical markets on top of all windows.
- Advanced Charts: Integration with TradingView SDK for technical analysis of probabilities.
An integrated agent powered by local models (or APIs) that:
- Monitors market correlations (e.g., if BTC drops, it evaluates the "Yes" odds for an ETF approval bet).
- Panic Sell: Automatically exits positions during sharp negative sentiment spikes on social media.
The "Shadow Trading" system:
- Leaderboard Filtering: Filter by ROI, volume, and trade frequency.
- Smart Mirroring: Follow top traders with automatic entry price adjustments (you won't buy "Yes" at 0.80 if the whale bought at 0.70).
Turn your balance into passive income:
- Auto-LP: The app automatically places Bid/Ask orders to provide liquidity and collect fees.
- Spread Hunter: Identifies markets with wide spreads and low volatility for safe farming.
To install the application, you do not need to clone the repository. Simply go to the Releases section and download the installer for your OS:
| OS | Format | Link |
|---|---|---|
| Windows | .exe |
Download Poly_App_x64.exe |
| macOS (Intel/ARM) | .dmg |
Download Poly_App_macos.dmg |
Note: On first launch, macOS may require permission in "System Settings > Privacy & Security" as the app is signed with an independent community certificate.
Ctrl + B— Quick Buy for the selected outcome.Ctrl + S— Quick Sell.Ctrl + F— Switch to the Farming panel.Space— Instant cancellation of all active orders on the current market.
The app uses a settings.json file (accessible via GUI), but power users can configure the logic directly:
{
"trading_agent": {
"auto_approve": true,
"max_slippage": "0.5%",
"ai_logic": "aggressive",
"news_triggers": ["Reuters", "X_Breaking", "Elections_Live"]
},
"farming": {
"rebalance_threshold": 0.05,
"target_yield_apy": "25%+"
}
}
The project is fully open-source. We encourage auditors to review the ptp-signer-module, which is responsible for transaction signing.
- No Private Key Storage: The app never sends your private keys to any server.
- Sandboxed Environment: Trading bots run in an isolated environment without access to your personal files.