tickerbot_subscribe_signal
Automate monitoring of technical signals across US stocks and crypto. Trigger webhooks or Discord notifications when conditions like golden cross or RSI thresholds are met, for individual tickers or your entire universe.
Instructions
Register a webhook that fires when a signal turns true (booleans) or its value crosses a condition (numerics). Optional ticker restricts to one symbol; omit to watch the whole universe. Pass target_url for an https POST, or channel:"discord" + discord_url to post to Discord; omit for in-app.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Human-readable label. | |
| signal | Yes | Column name (e.g. golden_cross_today, rsi_14). | |
| ticker | No | Optional ticker to restrict the watch to one symbol. | |
| cadence | No | Evaluation cadence. Default realtime; hourly/nyse_open throttle. (`1m` accepted as a deprecated alias of realtime.) | |
| channel | No | Delivery channel: `webhook` (POST to target_url), `discord` (embed to discord_url), `mobile_push` (to a registered device), or `in_app` (dashboard only). Inferred from the URL you pass if omitted. | |
| universe | No | Optional universe slug. | |
| condition | No | Required for numerics: single bound like ">70" or "<=200". Ignored for booleans. | |
| device_id | No | Registered device id from the mobile app. Required when channel is "mobile_push". | |
| target_url | No | Optional https URL for the `webhook` channel; omit for in-app. | |
| discord_url | No | Discord incoming-webhook URL (https://discord.com/api/webhooks/…). Required when channel is "discord". |