search_companies
Search for company information using a keyword with customizable parameters like result limit and exchange code. Retrieve detailed financial data from Yahoo Finance to analyze or track specific companies.
Instructions
根据关键字搜索公司信息。
参数说明: query: str 搜索关键字 limit: int 返回结果数量,默认 10 exchange: str 交易所代码,可选
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | ||
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"default": "",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_companiesArguments",
"type": "object"
}