xXTrade

I Built a 3D Multiplayer Trading Floor — With AI Agents Doing the Heavy Lifting

Published June 13, 2026 · by Vince, solo founder, Switzerland

Every trading app looks the same: a chart, an order ticket, a positions table. Functional, joyless, identical. Meanwhile the most iconic image in all of finance — the NYSE floor, the pit, the bell, people shouting at screens — exists nowhere you can actually go. So I built it. A GTA-feel trading floor that runs in your browser: walk around as an avatar, see other real traders walking around too, talk to whoever's near you over voice chat, watch the wall of live market screens, and place real trades on real on-chain markets without leaving the world.

I'm a solo founder. There is no graphics team, no netcode team, no animation department. What there is, is Claude — Anthropic's coding agent — running in my terminal. This post is an honest accounting of how that worked: what the AI built, what I built, where it was magic, and where it confidently shipped bugs that took a day to find.

The idea

xXTrade is a frontend for Hyperliquid, a decentralized exchange with fully on-chain order books. The "normal" app exists and works. The floor started as a question: since the trading backend is just an API a browser can sign requests against, what's stopping the frontend from being a place instead of a page? Nothing, it turns out, except a few thousand hours of engineering I didn't have. The premise that made it feasible: agentic coding had gotten good enough that one person plus an AI could plausibly do the work of a small game studio, if the person supplied direction and taste and the AI supplied volume.

The stack

What Claude actually built

I want to be precise here, because "AI built my app" usually means either "AI autocompleted some functions" or is marketing. Neither applies. These are systems where the agent did the genuinely hard engineering:

The lighting pipeline

The difference between "programmer art demo" and "place that feels real" is almost entirely lighting. Claude implemented shadow-mapped key lights, ambient occlusion, bloom, image-based lighting from the hall environment, and a color-grade pass — iterating against screenshots I captured with a small headless rig, so each round of feedback was "here are six renders, the balcony reads flat, the parquet specular is too hot." It would read the render code, hypothesize, patch, and we'd re-shoot. That loop — agent writes graphics code, human judges images — turned out to be the single most productive pattern of the whole project.

Mocap-retargeted NPC walks

Procedural walk cycles look like procedural walk cycles. The fix was retargeting real motion-capture data (the CMU mocap database — research-grade captures of real humans walking) onto the floor's avatar skeletons. Retargeting is fiddly, mathematical, joint-mapping work that I would never have attempted solo. Claude wrote the retargeting pipeline, plus the layers on top: per-NPC gait individuality, head-gaze toward nearby players, foot-aware steering. The crowd doesn't loop one animation; people on the floor walk like people.

Multiplayer interpolation

Raw network snapshots at relay rates look like teleporting mannequins. Claude implemented snapshot interpolation — buffering remote players' states and rendering them a beat in the past, smoothly interpolated — the same technique real multiplayer games use. Other humans now glide around the floor convincingly even on bad connections.

And a hundred smaller things

Device screens that detect their own display plane geometrically. NPCs with jobs (there is a cashier; there is a service desk). Crowd-life systems. A deep link (?floor) so you can send someone straight in. Each of these was a session of "here's what I want, here's the constraint" followed by the agent doing an afternoon of work in minutes.

What the human did

Direction, taste, and verification — which sounds smaller than it is.

If you forced me to put a number on it: by code volume, the large majority is agent-written. By decisions, it's the other way around. Both halves were necessary; neither was sufficient. The honest framing isn't "AI built this" or "AI assisted" — it's that the agent was the engineering team and I was the studio head of a studio of one.

What surprised me

Walk the floor yourself

The floor is live, in the browser, no install: app.xxtrade.xyz/floor. Walk in, look at the screens, find another trader and say hi — exploring costs nothing, and trading from inside is entirely optional (and, obligatory note, risky — see our perps explainer before touching leverage). If you're curious what one person plus an AI agent can ship in 2026, this is my best evidence.

FAQ

What is the xXTrade trading floor?

A 3D multiplayer NYSE-style floor in the browser: walk as an avatar, see real traders, talk over proximity voice, watch live market screens, and place real on-chain trades from inside the world.

What was it built with?

Three.js rendering, a Railway presence relay for multiplayer, WebRTC proximity voice with a Cloudflare TURN fallback, and Hyperliquid's on-chain order books for real trading — with Claude, Anthropic's coding agent, writing large parts of the engineering.

Did AI really write the code?

Most of it by volume — lighting pipeline, mocap retargeting, netcode interpolation included. The human side was direction, taste, architecture bets, and real-world testing. Both were necessary.

Can I try it?

Yes — app.xxtrade.xyz/floor, free to walk around, no install.

This article is a build story, not financial advice. Trading on the floor involves real leveraged derivatives and substantial risk of loss — exploring the 3D world itself is free and risk-free.