Trigger Markets

Triggers when a Hyperliquid perpetual market mid price crosses your target. Uses Hyperliquid allMids WebSocket data.

At a Glance

FieldValue
Trigger IDhyperliquid-price-alert
CategoryMarkets
Tagshyperliquid, perps, price, trading, alert, websocket, real-time

Trigger Configuration

FieldTypeRequiredDescription
coinstringYesHyperliquid perpetual coin symbol (e.g., BTC, ETH, SOL)
targetPricenumberYesTarget mid price in USDC
operationstringYesComparison to evaluate against the live mid price
maxTriggersstringNoTrigger frequency

Trigger Result

FieldTypeRequiredDescription
triggeredAtstringYesTimestamp when the price condition was detected (UTC, RFC3339 format)
coinstringYesHyperliquid coin symbol
pricenumberYesCurrent Hyperliquid mid price
conditionobjectYes-

Workflow Root Example

json
{ "nodes": { "root": { "type": "hyperliquid-price-alert", "payload": { "coin": "example-coin", "targetPrice": 1, "operation": "cross-up" }, "children": [ "log_event" ] }, "log_event": { "type": "log", "payload": { "message": "Triggered at {{$trigger.triggeredAt}}" }, "children": [] } }}

Downstream nodes can use {{$trigger.triggeredAt}} and any result fields listed above. Event triggers usually expose the raw source payload under a field such as event, body, trade, or raw.

Ask a question... ⌘I