mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-06-16 21:06:15 +03:00
Clear the deferred full-repo lint backlog so the whole tree passes the strict ruff select (E,W,F,I,B,UP,C4,SIM). Mechanical fixes dominate: import sorting, pep585/604 annotations, dropped dead imports, and whitespace. The few semantic changes are behavior-preserving: declare __all__ on the agent_utils and alpha_vantage re-export hubs; expand 'from x import *' to explicit names; use immutable tuple defaults instead of mutable list defaults; contextlib.suppress for try/except/pass; and narrow an over-broad assertRaises.
15 lines
419 B
Python
15 lines
419 B
Python
import time
|
|
|
|
from tradingagents.dataflows.y_finance import (
|
|
get_stock_stats_indicators_window,
|
|
)
|
|
|
|
print("Testing optimized implementation with 30-day lookback:")
|
|
start_time = time.time()
|
|
result = get_stock_stats_indicators_window("AAPL", "macd", "2024-11-01", 30)
|
|
end_time = time.time()
|
|
|
|
print(f"Execution time: {end_time - start_time:.2f} seconds")
|
|
print(f"Result length: {len(result)} characters")
|
|
print(result)
|