Subscribe to Strategy Signal Alerts
arena_subscribe_signal_alertsNotify me when this signal flips? Fires when an existing Ampel-Config's signal flips (BUY ↔ SELL). Prerequisite: the user must have created that ampel-config in the web UI (/dashboard/ampel) — pass its UUID here; this tool cannot create one. Optional signal_types filter narrows to BUY-only or SELL-only. For the current signal state without subscribing, call arena_get_signal_status. Creates a standing subscription; it does not return a value now — collect fired updates with arena_check_subscription_updates (polling) or receive them by webhook, and end it with arena_cancel_subscription. For the CURRENT value instead of a change notification, call the matching read tool. [API Pro tier and up — max 3 active subscriptions for Pro, 20 for Power]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expires_at | No | ISO-8601 timestamp after which the subscription auto-deactivates. Omit to keep it active until cancelled. | |
| webhook_url | No | HTTPS endpoint we POST to. Required when delivery_method=webhook, ignored otherwise. | |
| signal_types | No | Optional filter. Default: both BUY and SELL fire. | |
| ampel_config_id | Yes | UUID einer existierenden ampel_configs-Row im gleichen User-Account. | |
| delivery_method | No | How updates reach you: 'polling' (default — collect via arena_check_subscription_updates) or 'webhook' (we POST to your URL). |