From b9666f6e097cb375cbabd256b721200f904e6671 Mon Sep 17 00:00:00 2001 From: Yijia-Xiao Date: Mon, 14 Sep 2026 22:38:19 +0000 Subject: [PATCH] docs: use a current date in the usage examples --- README.md | 6 +++--- main.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 505b69df4..66cc2c3b2 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ from tradingagents.default_config import DEFAULT_CONFIG ta = TradingAgentsGraph(debug=True, config=DEFAULT_CONFIG.copy()) # forward propagate -_, decision = ta.propagate("NVDA", "2026-01-15") +_, decision = ta.propagate("NVDA", "2026-09-01") print(decision) ``` @@ -228,7 +228,7 @@ config["quick_think_llm"] = "gpt-5.6-luna" # Model for quick tasks config["max_debate_rounds"] = 2 ta = TradingAgentsGraph(debug=True, config=config) -_, decision = ta.propagate("NVDA", "2026-01-15") +_, decision = ta.propagate("NVDA", "2026-09-01") print(decision) ``` @@ -259,7 +259,7 @@ tradingagents analyze --clear-checkpoints # reset before running config = DEFAULT_CONFIG.copy() config["checkpoint_enabled"] = True ta = TradingAgentsGraph(config=config) -_, decision = ta.propagate("NVDA", "2026-01-15") +_, decision = ta.propagate("NVDA", "2026-09-01") ``` ## Reproducibility diff --git a/main.py b/main.py index c9d3ab038..5d31209e4 100644 --- a/main.py +++ b/main.py @@ -12,7 +12,7 @@ config = DEFAULT_CONFIG.copy() ta = TradingAgentsGraph(debug=True, config=config) # forward propagate -_, decision = ta.propagate("NVDA", "2024-05-10") +_, decision = ta.propagate("NVDA", "2026-09-01") print(decision) # Memorize mistakes and reflect