lookup_identifier
Find stock symbols, CIK, CUSIP, or ISIN by identifier type such as symbol, name, or exchange variant using financial data from Yahoo Finance.
Instructions
按标识类型查询股票代码、CIK、CUSIP 或 ISIN。
参数说明: identifier_type: str 可选值:symbol、name、cik、cusip、isin、exchange_variant query: str 对应的查询内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier_type | Yes | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"identifier_type": {
"title": "Identifier Type",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"identifier_type",
"query"
],
"title": "lookup_identifierArguments",
"type": "object"
}