price_shockers
Identify stocks with significant price movements in the Indian stock market to monitor volatility and spot potential trading opportunities.
Instructions
Price Shockers Endpoint: /price_shockers Method: GET Description: Get data for stocks that have experienced significant price changes in a short period of time. Example Request: http GET /price_shockers Example Response: ```json [ { \
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:56-61 (registration)The MCP server is initialized using FastMCP.from_openapi, which automatically generates tools from the OPENAPI_SPEC string. The 'price_shockers' tool is registered as part of this automatic generation process.
mcp = FastMCP.from_openapi( openapi_spec=openapi_dict, client=client, name="indian_stock_exchange_api2", version=__version__ )