get-stock-bars
Retrieve historical stock bar data for specified symbols within a defined timeframe using the Alpaca MCP Server. Input symbols, start date, end date, and timeframe to access market data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | ||
start | Yes | ||
symbols | Yes | ||
timeframe | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"end": {
"type": "string"
},
"start": {
"type": "string"
},
"symbols": {
"items": {
"type": "string"
},
"type": "array"
},
"timeframe": {
"type": "string"
}
},
"required": [
"symbols",
"start",
"end",
"timeframe"
],
"type": "object"
}