inquery-stock-history
Retrieve daily stock price history for specified symbols and date ranges using Korea Investment & Securities' REST API for accurate financial analysis and reporting.
Instructions
Get daily stock price history from Korea Investment & Securities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
start_date | Yes | ||
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"start_date": {
"title": "Start Date",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol",
"start_date",
"end_date"
],
"title": "inquery_stock_historyArguments",
"type": "object"
}