Multi Agent Trading System banner
bcefghj bcefghj

Multi Agent Trading System

Development community

Description

多Agent量化交易与投资决策系统 | 6-Agent并行+辩论+风控 | Python/Java/Go三语言实现 | 配套面试八股文+STAR法+简历模板 | 从零到面试全攻略

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Multi-Agent Trading System | 多Agent量化交易与投资决策系统

**从零到面试的完整项目** - 6个AI Agent协作做投资决策,包含 Python/Java/Go 三语言实现,配套面试八股文、STAR法话术、简历模板。

[![Python](https://img.shields.io/badge/Python-3.11+-blue.svg)](https://python.org) [![Java](https://img.shields.io/badge/Java-21-orange.svg)](https://openjdk.org) [![Go](https://img.shields.io/badge/Go-1.22-00ADD8.svg)](https://go.dev) [![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)


这个项目是什么?

一个**企业级多Agent量化交易系统**,模拟真实投资公司的决策流程:

你给它一个股票代码(比如 AAPL)
  → 3个分析师Agent同时工作(基本面 + 技术面 + 情绪面)
  → 牛方和熊方展开辩论(强制从多空角度思考)
  → 风控官审批(拥有一票否决权)
  → 通过才执行下单(模拟交易,不用真钱)

**适合谁?**

  • 准备面试的程序员(AI工程师 / 后端 / 量化方向)
  • 想学多Agent系统的开发者
  • 对量化交易感兴趣的技术人

目录


核心架构

系统架构图

┌─────────────────────────────────────────────────────────────────┐
│                     输入: 股票代码 (如 AAPL)                      │
└───────────────────────────┬─────────────────────────────────────┘
                            │
                  ┌─────────▼─────────┐
                  │   并行 Fan-out     │  ← 3个Agent同时工作,10秒完成
                  └──┬──────┬──────┬──┘
                     │      │      │
            ┌────────▼┐  ┌──▼───┐  ┌▼────────┐
            │基本面    │  │技术面│  │情绪面    │
            │Agent    │  │Agent │  │Agent    │
            │         │  │      │  │         │
            │ PE/PB   │  │ MACD │  │ 新闻NLP │
            │ ROE     │  │ RSI  │  │ 机构持仓│
            │ 营收增长 │  │ 布林带│  │ 恐贪指数│
            └────┬────┘  └──┬───┘  └───┬─────┘
                 │          │          │
                 └──────────┼──────────┘
                            │
                  ┌─────────▼─────────┐
                  │   辩论 Agent       │  ← 本项目最大创新
                  │                   │
                  │  🐂 Bull方: 找买入理由
                  │  🐻 Bear方: 找卖出理由