QuantAgent is an open-source multi-agent trading analysis system that coordinates four specialized LLM agents to analyze market data and produce LONG/SHORT trade decisions. It supports OpenAI, Anthropic (Claude), and Qwen as LLM backends, and provides both a web interface and a Python API.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Y-Research-SBU/QuantAgent/llms.txt
Use this file to discover all available pages before exploring further.
Quick Start
Run your first market analysis in under 5 minutes
Installation
Set up the environment and install dependencies
Multi-Agent Architecture
Understand how the four agents collaborate
Programmatic Usage
Integrate QuantAgent directly into your Python code
How it works
QuantAgent orchestrates four specialized agents in sequence using LangGraph:Indicator Agent
Computes RSI, MACD, Stochastic Oscillator, Williams %R, and Rate of Change from OHLCV data using TA-Lib, then summarizes momentum and oscillator signals.
Pattern Agent
Generates a candlestick chart image and passes it to a vision-capable LLM that identifies chart formations such as flags, triangles, and head-and-shoulders patterns.
Trend Agent
Fits support and resistance trendlines to recent price action and produces a channel analysis with directional bias.
Explore the docs
Web interface guide
Use the Flask UI to analyze assets without writing code
LLM providers
Configure OpenAI, Anthropic, or Qwen as your backend
Configuration reference
Full list of configuration parameters
TradingGraph API
Complete Python API reference
QuantAgent requires a vision-capable LLM (e.g., GPT-4o, Claude Haiku, or Qwen VL) because the Pattern and Trend agents analyze chart images. Text-only models will not work for those agents.