랭그래프 활용한 주식 정보 도출 프로젝트

- yahooquery, ta 라이브러리 활용
This commit is contained in:
2026-06-18 17:48:31 +09:00
parent 5f5edb1e6d
commit 3be7886bfe
20 changed files with 559 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from typing import TypedDict
class StockAnalysis(TypedDict):
query:str
ticker:str
company_name:str
new:list
financials:dict
technicals:dict
competitors:list
report:str