AlphaTrading is a multi-agent AI trading framework designed to bridge advanced off-chain quantitative analysis with verifiable on-chain execution. Built from first principles, it moves beyond simple single-prompt wrappers by introducing a collaborative "AI Syndicate" architecture. The system leverages LangGraph to orchestrate a multi-stage workflow. Specialized AI analysts (Market, News, and Quant) process cross-domain data signals, which feed into a rigorous Bull/Bear research debate. This ensures every strategy is deeply stress-tested before a Trader agent generates a preliminary TradeIntent. A critical technical differentiator of this framework is the strict decoupling of AI reasoning from financial execution. To ensure capital safety, a deterministic Risk Engine intercepts all AI-generated proposals. It enforces hard constraints—such as maximum position sizing and single-order limits—before any action is finalized. Furthermore, the system maintains a continuous learning loop, utilizing ChromaDB for semantic memory and SQLite for robust portfolio state tracking. To solve the "trust black box" inherent in autonomous AI, the framework natively integrates with the ERC-8004 standard. The agent registers a verifiable on-chain identity, signs trade intents using EIP-712, and interacts with a smart contract RiskRouter. By waiting for asynchronous on-chain feedback to update its virtual ledger, the agent creates a transparent, immutable track record, building a measurable reputation based entirely on objective, risk-adjusted performance.
Category tags:"This is a solid demo. The orchestration between the Market, News, and Quant analysts creates a really logical flow—it’s rare to see a hackathon project that actually attempts a "Bull/Bear" debate to filter out AI hallucinations before execution. A few things that stood out: Security: The use of a deterministic Risk Engine to gatekeep the AI's trade intents is a smart move. It’s the right way to handle capital safety. Transparency: Integrating ERC-8004 and EIP-712 for on-chain identity is a great touch. It moves the project from a "black box" script to a verifiable framework. Stack: Great job leveraging LangGraph for the multi-agent workflow; the sequential decision chain in the demo looks very clean. For a next step, I'd love to see how the system handles "regret analysis"—essentially having the agents look back at failed trades to adjust their debate logic for the next round. Overall, AlphaTrading feels like a very mature architecture for a prototype. Well done!"
Vasu Raj Jain
Senior Software Engineer
"1. Application of Technology: 5 / 5 Justification: Very high execution. Using LangGraph for complex multi-agent orchestration, ChromaDB for semantic memory retrieval of past decisions, and asynchronous tracking via a virtual_ledger.py that waits for on-chain feedback to confirm PnL is a fantastically engineered stack. 2. Presentation: 4.5 / 5 Justification: Excellent. The web-dashboard directory has a Vercel-based React app that visualizes the LangGraph workflows, and the documentation clearly highlights the hard decoupling between "AI Reasoning" and "Financial Execution," which is the exact pitch judges want to hear. 3. Business Value: 4.5 / 5 Justification: Very high. Introducing an internal "Bull/Bear Research Debate" where one agent has to actively defend its trade against adversarial logic prior to hitting the risk engine is exactly how trading desks operate. A crypto fund would absolutely use a debate-layer memory module like this. 4. Originality: 4 / 5 Justification: Multi-agent systems are the norm in this hackathon, but using ChromaDB to give the system "Memory" of its past trade arguments and outcomes so it can iteratively learn (RAG for trading) is a nice twist on the standard architecture! ⚖️ Pros & Cons Pros: LangGraph Orchestration: By using actual cyclical agent state graphs rather than simple linear chains, the system allows for genuine debates (Bull vs. Bear) and reflection loops before passing to execution. Semantic Memory: Utilizing ChromaDB means the agent can "remember" a similar market shock event from three months ago, retrieve how it acted, and use that past outcome to influence its current debate. ERC-8004 Compliance: Full integration with the on-chain specification, allowing it to build a verifiable, tamper-proof track record of its generated TradeIntents. Cons: Over-reliance on LLMs: Depending on an LLM for "Quant" analysis across live data streams can sometimes lead to math hallucinations compared to executing strict Python/Numpy equations for statistical arbitrage. Execution Latency: A deep LangGraph workflow containing multiple rounds of Bull/Bear debating, RAG (Memory) lookups, and Risk Engine vetting means that from the moment a signal is triggered to the moment a trade executes, significant time (seconds to minutes) could pass, meaning it can only really be used for slow macro trades."
Sanem Avcil