get_stock_monthly_average
Calculate monthly average stock prices and daily closing prices for Taiwan-listed companies using their stock codes to track market performance.
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"
}