get_batch_quotes
Fetch real-time stock quotes for multiple symbols in a single request through the Paper MCP Server, enabling efficient market data retrieval for AI-driven trading and analysis.
Instructions
Get real-time quotes for multiple symbols
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbols | Yes | Array of stock symbols |
Input Schema (JSON Schema)
{
"properties": {
"symbols": {
"description": "Array of stock symbols",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"symbols"
],
"type": "object"
}