retrieve_dividends
Retrieve dividend data for a specific stock ticker to support financial analysis and investment decisions. Provides access to dividend information for quantitative trading research.
Instructions
Retrieves dividends for the given ticker.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "retrieve_dividendsArguments",
"type": "object"
}