Supported Trading Venues
Robonet currently supports trading on Hyperliquid (perpetual futures) and Polymarket (prediction markets). Support for additional exchanges and DEXs is planned for future releases.
Decentralized Exchanges (DEXs)
Hyperliquid Perpetual
Status: Fully Supported (Mainnet + Testnet)
Type: Decentralized perpetual futures exchange
Asset Types:
- Perpetual futures contracts (perpetuals)
- Leverage trading (configurable leverage up to platform limits)
- USDC-denominated positions
Supported Pairs: Hyperliquid offers a wide range of perpetual futures pairs. Use the get_all_symbols MCP tool to see the current list of available trading pairs.
Deployment Types:
- EOA (Externally Owned Account): Trade directly with your wallet
- Limitation: Maximum 1 active deployment per user
- No minimum capital requirement
- Hyperliquid Vault: Create a vault for your strategy
- Minimum: 200 USDC
- Unlimited deployments per user
- Hyperliquid Vault creation handled automatically via MCP or chat interface
Network Support:
- Mainnet: Production trading with real funds
- Testnet: Paper trading for testing strategies without risk
Special Requirements:
- USDC balance for trading capital (on Hyperliquid)
- Robonet credits for platform usage (purchased with USDC on Base network)
- Wallet delegation for server-side signing (handled via Privy authentication)
Features:
- Low fees
- Fast execution
- On-chain orderbook
- No KYC required
- Self-custodial (EOA mode) or vault-based trading
Data Availability:
- Historical candle data available for backtesting
- Multiple timeframes: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 12h, 1d
- Default backtest period: 6 months (configurable)
Prediction Markets
Polymarket
Status: Fully Supported (Polygon Mainnet)
Type: Decentralized prediction market (CLOB-based)
Asset Types:
- YES/NO binary outcome tokens
- USDC.e denominated positions on Polygon (6 decimals)
Market Types:
- Rolling series — Recurring crypto markets (e.g., "BTC up or down in 15m") that auto-transition between rounds
- Single markets — One-time event markets with a fixed resolution date
Network: Polygon (Chain ID 137)
Deployment Type:
- Polymarket Vault: ERC-4626 tokenized vault on Polygon with Gnosis Safe
- One active deployment per user
- Minimum: 10 POL for gas + 10 USDC.e for trading
- Other users can deposit into your vault
- Performance fees configurable (1–20%)
- Configurable capacity limits
Special Requirements:
- Privy wallet delegation (same as Hyperliquid)
- 10 POL minimum in wallet for vault contract deployment gas
- USDC.e on Polygon for trading capital
- Robonet credits for platform usage
Features:
- Automated rolling market transitions
- On-chain vault accounting (ERC-4626)
- Keeper-managed position reporting and withdrawals
- Gasless Gnosis Safe deployment via Polymarket relayer
- Full backtesting support (single market and rolling series)
Strategy Base Class: PolymarketStrategy — uses should_buy_yes(), should_buy_no(), go_yes(), go_no() instead of long/short methods.
Data Availability:
- Historical YES/NO token price data for backtesting
- Multiple timeframes: 1m, 5m, 15m, 30m, 1h, 4h
- Rolling and single market data
- Use
get_data_availabilitywithdata_type="polymarket"to check available markets
Further Reading:
- Polymarket Deployments — Full deployment guide
- Polymarket Strategies — Strategy development
- Polymarket Overview — Comprehensive guide
Centralized Exchanges (CEXs)
Status: Not Currently Supported
Robonet does not currently support centralized exchanges like Binance, Bybit, OKX, Coinbase, or others. All trading is done on Hyperliquid Perpetual.
Support for CEXs may be added in future releases based on user demand.
Coming Soon
The Robonet team is evaluating additional trading venues for future support:
Under Consideration
- Additional DEX perpetual futures platforms
- Spot trading on DEXs (Uniswap, etc.)
- Selected centralized exchanges
Request Support for a Venue
If you'd like to see support for a specific exchange or DEX, please share your feedback:
- Join the Discord community
- Contact us directly
Comparison Table
| Venue | Type | Asset Types | Status | Deployment Types | Min Capital |
|---|---|---|---|---|---|
| Hyperliquid Perpetual | DEX | Perpetuals | Supported | EOA, Hyperliquid Vault | 0 (EOA), 200 USDC (Hyperliquid Vault) |
| Polymarket | Prediction Market | YES/NO Tokens | Supported | Polymarket Vault (ERC4626) | 10 POL + 10 USDC.e |
| Binance | CEX | Spot, Futures | Not Supported | - | - |
| Bybit | CEX | Spot, Futures | Not Supported | - | - |
| OKX | CEX | Spot, Futures | Not Supported | - | - |
| Uniswap | DEX | Spot | Not Supported | - | - |
| GMX | DEX | Perpetuals | Not Supported | - | - |
| dYdX | DEX | Perpetuals | Not Supported | - | - |
Technical Details
Exchange Identifiers
When using the MCP server or working with strategy configurations, use these exact exchange identifiers:
- Mainnet:
"Hyperliquid Perpetual" - Testnet:
"Hyperliquid Perpetual Testnet"
Example (MCP tool usage):
"Which symbols are available for Hyperliquid Perpetual?"Example (Strategy config YAML):
strategy:
execution_exchange: "Hyperliquid Perpetual"
symbol: "BTC-USDC"
timeframe: "5m"Symbol Format
Hyperliquid uses the format: BASE-QUOTE
Examples:
BTC-USDCETH-USDCSOL-USDCAVAX-USDC
Get Available Symbols
Use the get_all_symbols MCP tool to retrieve the current list of supported trading pairs:
- Via chat: "Show me all available trading pairs"
- Via MCP client: Call the
get_all_symbolstool with optionalexchangefilter
Related Documentation
- MCP Tools Reference - See
get_all_symbolstool for listing available pairs - Wallet Integration - Setup wallet for Hyperliquid and Polygon trading
- Deployment Guide - Deploy strategies to Hyperliquid (EOA or Hyperliquid Vault)
- Polymarket Deployments - Deploy strategies to Polymarket
- Polymarket Strategies - Build strategies for prediction markets
- Strategy Creation - Build strategies for Hyperliquid
- Backtesting - Test strategies with historical data