get_stock_monthly_average
Calculate monthly average and daily closing stock prices for a company using its stock code, integrated with the TWSE MCP Server.
Instructions
Obtain daily closing price and monthly average price for a listed company stock based on its stock code.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"title": "Code",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}