getHistoricalIndustryPE
Track historical price-to-earnings (P/E) ratios for specific industries to analyze valuation trends over time. Input industry, date range, and exchange to gain insights into market sentiment evolution.
Instructions
Access historical price-to-earnings (P/E) ratios by industry using the Historical Industry P/E API. Track valuation trends across various industries to understand how market sentiment and valuations have evolved over time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | Exchange (e.g., NASDAQ) | |
from | No | Start date (YYYY-MM-DD) | |
industry | Yes | Industry (e.g., Biotechnology) | |
to | No | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exchange": {
"description": "Exchange (e.g., NASDAQ)",
"type": "string"
},
"from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"industry": {
"description": "Industry (e.g., Biotechnology)",
"type": "string"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"industry"
],
"type": "object"
}