FinRobot — AI Agent Platform for Finance
AI4Finance Foundation's multi-agent platform for financial tasks — market forecasting, report generation, portfolio management, and earnings analysis.
FinRobot — AI Agent Platform for Finance
FinRobot is an open-source AI agent framework purpose-built for financial applications. It provides a multi-layer architecture: a Smart Scheduler orchestrates specialised financial agents (market forecasters, report generators, earnings analysts, risk managers) that share a common toolset — data connectors, LLM adapters, and quantitative utilities.
Key Features
- Pre-built financial agents: CIOAgent, PortfolioManagerAgent, ForecasterAgent, ReportWriterAgent
- Integrates with AutoGen, LangChain, and custom agent loops
- Data connectors: Yahoo Finance, SEC EDGAR, FRED, Bloomberg (via SDK)
- LLM backends: OpenAI, Anthropic, local models via Ollama
- Automated 10-K / 10-Q narrative analysis and financial report generation
Quick Start
from finrobot.agents import ForecasterAgent
from finrobot.data_source import YFinanceData
data = YFinanceData().fetch("NVDA", start="2023-01-01", end="2024-12-31")
agent = ForecasterAgent(llm="gpt-4o", horizon_days=30)
forecast = agent.run(data)
print(forecast.summary)
npx ai-supply add finrobot-ai-finance-agent
Curated mirror of the open-source FinRobot (Apache-2.0). Get it from the source.
Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.
Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).
The same gate an agent runs before installing (POST /api/v1/trust/finrobot-ai-finance-agent/check). Click a policy:
Consume FinRobot — AI Agent Platform for Finance programmatically. Authenticate with an API key or session — see Authorize an agent.
# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/finrobot-ai-finance-agent
# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/finrobot-ai-finance-agent/check \
-H "Content-Type: application/json" \
-d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'
# CLI
npx ai-supply add finrobot-ai-finance-agent
# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/finrobot-ai-finance-agent/install \
-H "Authorization: Bearer $AIM_KEY"
# MCP tool
install_listing({ "slug": "finrobot-ai-finance-agent" })OpenAPI spec →Curated mirror — latest upstream source. See the repository for tagged releases.