Coordination Modes
YorN supports five coordination modes that define how multiple agents work together to make trading decisions. Each mode represents a different architecture for combining agent signals into a unified trading action.
Overview
When you deploy multiple agents as a team, the coordination mode determines how their individual signals are aggregated, filtered, and acted upon. Choosing the right mode depends on your goals: speed, consensus, specialization, depth of analysis, or behaviorally varied crowd simulation.
Independent Agents
Without coordination, each agent trades independently. Good for uncorrelated strategies, but risks position conflicts.
Coordinated Teams
With coordination, agents share a unified view of the portfolio and combine their signals through the selected mode.
Swarm Mode
Swarm Mode
All agents vote simultaneously. The majority signal wins.
In Swarm mode, all agents in the team evaluate the same market data concurrently. Each agent produces a Signal independently. The coordinator tallies all signals and executes the majority decision, weighted by confidence. If agents are split, the trade is skipped.
Council Mode
Council Mode
A lead agent proposes, others approve or veto.
In Council mode, one agent is designated as the lead. The lead proposes a trade, and the remaining agents act as reviewers. Each reviewer can approve, abstain, or veto. A veto from any reviewer blocks the trade. This mode is ideal for high-stakes markets where false positives are costly.
Pipeline Mode
Pipeline Mode
Agents run in sequence, each refining the previous signal.
In Pipeline mode, agents execute in a defined sequence. The first agent generates an initial signal, which is passed as enriched context to the second agent, and so on. Each stage can refine the confidence, adjust the position size, or cancel the trade entirely. This mode is best when different agents specialize in different aspects of analysis (e.g., data collection, signal generation, risk assessment).
Deliberation Mode
Deliberation Mode
Agents debate in rounds until consensus is reached.
In Deliberation mode, agents engage in structured rounds of debate. Each agent presents its signal and reasoning. In subsequent rounds, agents can revise their signals based on arguments from other agents. The process continues until consensus is reached or the maximum number of rounds is exhausted. This mode uses Claude as the deliberation mediator to synthesize arguments.
Deliberation mode uses additional Claude API calls for mediation. This counts against your daily AI usage quota. Enterprise plans have higher limits for deliberation-heavy workflows.
Mode Comparison
Use this table to select the right coordination mode for your use case:
| Property | Swarm | Council | Pipeline | Deliberation |
|---|---|---|---|---|
| Latency | Low | Medium | High | Very High |
| Consensus Quality | Medium | High | High | Very High |
| Best For | Fast-moving markets | High-stakes trades | Multi-step analysis | Novel or uncertain markets |
| Min Agents | 3 | 2 | 2 | 2 |
| Max Agents | Unlimited | 10 | 8 | 5 |
| AI Usage | Low | Low | Medium | High |
| Conflict Resolution | Majority vote | Veto power | Sequential override | AI-mediated debate |
| Tier Required | Pro | Pro | Pro | Enterprise |
Configuration
Teams are configured via the API or the dashboard Team Builder interface. Here is a complete example that creates a team using the API:
Coordination modes require a Pro or Enterprise tier subscription. Free tier accounts are limited to independent agent operation.
Next Steps
- Agent Creation -- Build the individual agents for your team
- Strategies -- Create custom AI-generated strategies
- API Reference -- Full team management endpoints