is_market_open
Determine if the market is open for a specific stock symbol using the Paper MCP Server. Ideal for traders and AI assistants to verify market status and make informed decisions.
Instructions
Check if market is open for a symbol
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}