37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
# Copy this file to `config/scheduled_analysis.toml` and adjust the values for your runner.
|
|
|
|
[run]
|
|
tickers = ["NVDA", "MSFT", "TSLA"]
|
|
analysts = ["market", "social", "news", "fundamentals"]
|
|
output_language = "Korean"
|
|
trade_date_mode = "latest_available"
|
|
timezone = "Asia/Seoul"
|
|
max_debate_rounds = 1
|
|
max_risk_discuss_rounds = 1
|
|
latest_market_data_lookback_days = 14
|
|
continue_on_ticker_error = true
|
|
|
|
[llm]
|
|
provider = "codex"
|
|
# TradingAgents' current Codex provider path uses the frontier model id `gpt-5.4`
|
|
# for Codex 5.4 sessions.
|
|
quick_model = "gpt-5.4"
|
|
deep_model = "gpt-5.4"
|
|
codex_reasoning_effort = "medium"
|
|
codex_summary = "none"
|
|
codex_personality = "none"
|
|
codex_request_timeout = 180.0
|
|
codex_max_retries = 2
|
|
codex_cleanup_threads = true
|
|
|
|
[storage]
|
|
# For stable run history on a self-hosted runner, prefer a persistent path outside the repo checkout.
|
|
# Example on Windows: "C:/TradingAgentsData/archive"
|
|
archive_dir = "./.runtime/tradingagents-archive"
|
|
site_dir = "./site"
|
|
|
|
[site]
|
|
title = "TradingAgents Daily Reports"
|
|
subtitle = "Self-hosted Codex automation for scheduled multi-ticker analysis"
|
|
max_runs_on_homepage = 30
|