Back to Home

Agent Trading Floor

June 2026 6 min read
AI Agents LLMs Python DuckDB Pipeline Orchestration
Agent Trading Floor - Pixel art trading floor with AI agents

Project Overview

Agent Trading Floor is an AI-powered trading analysis platform where a team of specialized agents evaluates financial markets and generates trading recommendations. Instead of a single model trying to do everything, the system orchestrates dedicated agents — news, research, macro analysis, bonds, simulation, and podcast monitoring — that each contribute their own perspective before a final decision is made.

The whole operation is visualized as a retro pixel-art trading floor: every pixel character walking the floor is a live AI agent — news, research, sentiment, time-series, strategy, mixer, judge — and you can watch their status and activity in real time at agenttradingfloor.com.

The Agent Pipeline

Analysis runs as a multi-phase pipeline. Each phase hands structured output to the next, and the platform exposes the task queue and current pipeline phase so you can see exactly where an asset is in its journey:

Real-Time Floor Visualization

The frontend renders the agents on an HTML canvas with deliberately pixelated, 8-bit styling. Agents move around the floor as they pick up tasks, and a side panel breaks down pipeline phases, recent activity, and per-agent timing. It turns what would normally be invisible backend orchestration into something you can actually watch — useful for debugging, and fun to look at.

Daily Picks & Reports

Technical Architecture

Disclaimer

Agent Trading Floor was built as an SDSU CS668 educational project. It is a research and learning exercise in multi-agent orchestration — not investment advice.

Back to Home