get_ma_data
Retrieve mergers and acquisitions data from Yahoo Finance. Specify action type, company name, page number, and results limit to search or fetch the latest updates.
Instructions
获取并购相关数据。
参数说明: action_type: str latest 或 search name: str 搜索模式下的公司名称 page: int 页码,默认 0 limit: int 返回数量,默认 100
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action_type | Yes | ||
limit | No | ||
name | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"action_type": {
"title": "Action Type",
"type": "string"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"name": {
"default": "",
"title": "Name",
"type": "string"
},
"page": {
"default": 0,
"title": "Page",
"type": "integer"
}
},
"required": [
"action_type"
],
"title": "get_ma_dataArguments",
"type": "object"
}