3be7886bfe
- yahooquery, ta 라이브러리 활용
12 lines
201 B
Python
12 lines
201 B
Python
from typing import TypedDict
|
|
|
|
class StockAnalysis(TypedDict):
|
|
query:str
|
|
ticker:str
|
|
company_name:str
|
|
new:list
|
|
financials:dict
|
|
technicals:dict
|
|
competitors:list
|
|
report:str
|