get_price_history
Retrieve historical stock price data for Taiwan-listed companies by specifying the stock code and time period. Ideal for analyzing trends and making informed investment decisions.
Instructions
Get historical price data for a specific stock.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | No | 1mo | |
stock_code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"default": "1mo",
"title": "Period",
"type": "string"
},
"stock_code": {
"title": "Stock Code",
"type": "string"
}
},
"required": [
"stock_code"
],
"title": "get_price_history_toolArguments",
"type": "object"
}