get_income_statements(ticker: str, period: str = "annual", limit: int = 10) | 获取公司损益表,可选择年度、季度或过去十二个月(ttm)期间 |
get_balance_sheets(ticker: str, period: str = "annual", limit: int = 10) | 获取公司资产负债表,可选择期间 |
get_cash_flow_statements(ticker: str, period: str = "annual", limit: int = 10) | 获取公司现金流量表 |
get_company_info(ticker: str) | 获取公司信息,包括业务描述、行业和细分行业 |
get_crypto_prices(symbol: str, interval: str = "1d", limit: int = 100) | 获取加密货币价格,可配置时间间隔 |
get_earnings(ticker: str, limit: int = 10) | 获取收益报告,包含每股收益(EPS)预估、实际值和收入数据 |
get_financial_metrics(ticker: str) | 获取公司的关键财务指标和比率 |
get_insider_trades(ticker: str, limit: int = 50) | 获取内部人士买卖活动数据 |
get_institutional_ownership(ticker: str) | 获取机构投资者及其持仓信息 |
get_news(ticker: Optional[str] = None, limit: int = 50) | 获取市场新闻,可选择按公司筛选 |
get_stock_prices(ticker: str, interval: str = "1d", limit: int = 100) | 获取历史股价,可配置时间间隔 |
search_tickers(query: str, limit: int = 10) | 根据查询字符串搜索股票代码 |
get_sec_filings(ticker: str, form_type: Optional[str] = None, limit: int = 50) | 获取 SEC 备案文件,可选择按文件类型过滤(10-K、10-Q 等) |
get_segmented_financials(ticker: str, period: str = "annual", limit: int = 10) | 获取按产品类别和地理区域划分的细分财务数据 |