get-stock-alerts
Monitor stock price movements and receive alerts when a specified symbol crosses your set percentage threshold for tracking investment opportunities.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol (e.g., IBM, AAPL) | |
threshold | No | Percentage threshold for price movement alerts (default: 5) |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock symbol (e.g., IBM, AAPL)",
"type": "string"
},
"threshold": {
"description": "Percentage threshold for price movement alerts (default: 5)",
"type": "number"
}
},
"required": [
"symbol"
],
"type": "object"
}