get_stock_valuation_ratios
Calculate key stock valuation metrics, including P/E ratio, P/B ratio, and dividend yield, using its stock code for informed investment decisions.
Instructions
Obtain P/E ratio, dividend yield, and P/B ratio 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"
}