agentsclimarketplace

Tradingagents skill

Skill alphaparkinc/tradingagents-skill

GenPark skill: Multi-Agent LLM Financial Trading Framework utilizing TradingAgents.

Install
npx -y skills add alphaparkinc/tradingagents-skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Multi-Agent LLM Financial Trading Framework utilizing an Analyst Team, Researcher Team, Trader, and Portfolio Manager for comprehensive market analysis and strategy execution.

SKILL.md

4.1 KB, as published. Nobody here has run it

TradingAgents Financial Framework Skill

This skill incorporates the TradingAgents multi-agent trading framework into the GenPark ecosystem. It provides the capability to simulate a complete trading firm using specialized LLM-powered agents.

Core Capabilities

The framework decomposes complex trading tasks into specialized roles, enabling a robust and scalable approach to market analysis and decision-making.

1. Analyst Team

Generates insights from multiple market perspectives.

  • Fundamentals Analyst: Evaluates company financials, performance metrics, intrinsic values, and potential red flags.
  • Sentiment Analyst: Analyzes social media and public sentiment using sentiment scoring to gauge short-term market mood.
  • News Analyst: Monitors global news and macroeconomic indicators to interpret the impact of events.
  • Technical Analyst: Utilizes technical indicators (MACD, RSI, etc.) to detect patterns and forecast price movements.

2. Researcher Team

Comprises bullish and bearish researchers who critically assess the Analyst Team's insights. Through structured debates, they balance potential gains against inherent risks to refine the analysis.

3. Trader Agent

Composes comprehensive reports from analysts and researchers to make informed trading decisions. It determines the optimal timing and magnitude of trades based on market insights.

4. Risk & Portfolio Management

  • Risk Management: Continuously evaluates portfolio risk, assessing market volatility, liquidity, and strategy adjustments.
  • Portfolio Manager: Reviews the risk assessment reports and approves or rejects transaction proposals. Approved orders are sent to a simulated exchange for execution.

System Architecture

  • Framework Engine: Built on LangGraph to ensure flexibility and modularity.
  • State Management:
    • Decision Log: Persistently records trading decisions. On subsequent runs for a ticker, it fetches realized returns (raw and alpha vs. SPY), generates reflections, and injects past lessons into the Portfolio Manager's prompt.
    • Checkpoint Resume: Utilizes SQLite to save state after each node, allowing crashed or interrupted runs to resume seamlessly from the last successful step.

LLM Provider Configuration

TradingAgents supports a wide array of LLMs. Set the appropriate API keys in the environment or configuration:

  • Supported Providers: OpenAI (GPT), Google (Gemini), Anthropic (Claude), xAI (Grok), DeepSeek, Qwen (DashScope), GLM (Zhipu), OpenRouter.
  • Local Models: Supported via Ollama.
  • Enterprise Integrations: Azure OpenAI, AWS Bedrock.

Example Configuration Snippet

from tradingagents.graph.trading_graph import TradingAgentsGraph
from tradingagents.default_config import DEFAULT_CONFIG

config = DEFAULT_CONFIG.copy()
config["llm_provider"] = "openai"
config["deep_think_llm"] = "gpt-5.4" # Model for complex reasoning
config["quick_think_llm"] = "gpt-5.4-mini" # Model for quick tasks
config["max_debate_rounds"] = 2

ta = TradingAgentsGraph(debug=True, config=config)
_, decision = ta.propagate("NVDA", "2026-01-15")

Instructions for Use

  1. Initialize the TradingAgents environment and install dependencies.
  2. Select the target asset tickers and analysis dates.
  3. Configure your preferred LLM provider for deep_think_llm and quick_think_llm.
  4. Run the analysis and monitor the dynamic multi-agent debate.
  5. Review the final Portfolio Manager decision and the generated decision logs for ongoing reflection.

[!WARNING] Trading performance may vary based on chosen backbone language models, model temperature, trading periods, data quality, and non-deterministic factors. This framework is designed for research purposes and is not intended as financial, investment, or trading advice.

Gives 0 of the 12 instructions most context ai engineering skills give

Counted across 1,193 of the 1,976 authors here whose files we hold, read 2026-08-06

  • dispatch a fresh implementer subagent per taskin 48 of 1193, across 19 files
  • dispatch final reviewer after all tasksin 37 of 1193, across 11 files
  • provide full task text to the subagentin 31 of 1193, across 10 files
  • review spec compliance before code qualityin 27 of 1193, across 10 files
  • make the hook script executablein 26 of 1193, across 8 files
  • re-snapshot after navigation or DOM changesin 25 of 1193, across 17 files
  • answer subagent questions before proceedingin 22 of 1193, across 7 files
  • mark task complete in TodoWrite after approvalin 22 of 1193, across 6 files
  • merge hook into existing settingsin 21 of 1193, across 3 files
  • read files before editing themin 21 of 1193, across 9 files
  • ask if installation is global or projectin 20 of 1193, across 2 files
  • copy the hook script to target locationin 20 of 1193, across 2 files

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.