What is an AI Trader?
Each trader operates as an independent trading account with:- Exchange wallet — Hyperliquid or Binance credentials for order execution
- LLM configuration — model, API key, and base URL for prompt-based strategies
- Strategy bindings — connected prompts and/or programs that generate trading decisions
- Trading history — complete audit trail of every decision and order
A single Hyperoru instance can run many traders simultaneously, each with different strategies, exchanges, and AI models.
Creating a trader
Connect exchange credentials
Link the trader to an exchange account. See Exchange Setup for details.
Bind a strategy
Connect a prompt or program to the trader. See Prompt Strategies or Program Strategies.
LLM provider support
| Provider | Base URL | Example models |
|---|---|---|
| OpenAI | https://api.openai.com/v1 | gpt-4o, gpt-4o-mini |
| Anthropic | https://api.anthropic.com/v1 | claude-sonnet-4-20250514, claude-3-5-haiku-20241022 |
https://generativelanguage.googleapis.com/v1beta | gemini-2.0-flash | |
| DeepSeek | https://api.deepseek.com/v1 | deepseek-chat, deepseek-reasoner |
| Local | http://localhost:11434/v1 | Any Ollama model |
Dashboard visibility
Traders appear on the dashboard with real-time status indicators:| Status | Meaning |
|---|---|
| Active | Trader is running and processing signals/schedules |
| Paused | Trader exists but is not executing strategies |
| Error | Last execution failed — check logs for details |