39 lines
1022 B
INI
39 lines
1022 B
INI
# TradingAgents Configuration
|
|
# Copy this file to config.ini and customize your settings
|
|
|
|
[llm]
|
|
# Provider: openai, anthropic, google, openrouter, ollama
|
|
provider = openai
|
|
backend_url = https://api.openai.com/v1
|
|
# Deep thinking model (for complex analysis, debates, final decisions)
|
|
deep_think_llm = o1-mini
|
|
# Quick thinking model (for simple tasks, data retrieval)
|
|
quick_think_llm = gpt-4o-mini
|
|
|
|
[analysis]
|
|
# Research Depth: 1 (shallow), 2 (medium), 3 (deep)
|
|
research_depth = 1
|
|
# Default analysts to use (comma-separated): market,news,social,fundamentals
|
|
default_analysts = market,news,social
|
|
|
|
[data]
|
|
# Global news limit (number of articles to fetch)
|
|
global_news_limit = 15
|
|
# Commodity news limit
|
|
commodity_news_limit = 50
|
|
|
|
[vendors]
|
|
# Data vendor preferences
|
|
stock = yfinance
|
|
indicators = yfinance
|
|
fundamentals = alpha_vantage
|
|
news = alpha_vantage
|
|
commodity = alpha_vantage
|
|
|
|
[storage]
|
|
# Directory for analysis results
|
|
results_dir = ./results
|
|
# Data cache directory
|
|
data_cache_dir = ./tradingagents/dataflows/data_cache
|
|
|