retrieve_splits
Retrieve stock split data for a specific ticker to analyze historical corporate actions and their impact on share prices. Essential for quantitative trading research and financial analysis.
Instructions
Retrieves splits 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_splitsArguments",
"type": "object"
}