- New fmp_client.py — Postgres fmp_bulk fast path + live /stable/* fallback
- New fmp.py — FMP-backed public API matching y_finance shapes, plus
get_ticker_info() returning a yfinance-Ticker.info-shaped dict so
downstream .get(key) lookups work unchanged
- interface.py VENDOR_METHODS: fmp added as primary for every tool;
VENDOR_LIST now [fmp, yfinance, alpha_vantage]
- default_config.py: all four data_vendors categories -> fmp
- tier1/tier2/portfolio: drop direct yfinance imports; yf.Ticker(t).info
-> fmp.get_ticker_info(t); plain-function imports rerouted to .fmp
- y_finance.py: docstring flipped to fallback-only
- macro_data_tools.py deleted (orphaned 594-LOC @tool module — not
imported anywhere, agent_utils.py wires its four siblings but skipped
this one, so @tool versions never bound)
Zero live yf.Ticker / yf.download calls remain in the TradingAgents
execution graph.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Switch the default LLM in tradingagents/default_config.py from
nemotron-3-nano:30b-cloud (which was producing low-fidelity
structured output across services) to glm-5.1:cloud. Canonical
values live in .env which is gitignored.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Changed deep_think_llm and quick_think_llm from gpt-5.2/gpt-5-mini
to glm-5:cloud, backend_url to ollama.com/v1.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Replace FinnHub with Alpha Vantage API in README documentation
- Implement comprehensive Alpha Vantage modules:
- Stock data (daily OHLCV with date filtering)
- Technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands, ATR)
- Fundamental data (overview, balance sheet, cashflow, income statement)
- News and sentiment data with insider transactions
- Update news analyst tools to use ticker-based news search
- Integrate Alpha Vantage vendor methods into interface routing
- Maintain backward compatibility with existing vendor system
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>