Hyperliquid Trade
Triggers whenever a public trade occurs on a specific Hyperliquid perpetual market. Optionally filter by side, size, or notional value.
Trigger Other
Triggers whenever a public trade occurs on a specific Hyperliquid perpetual market. Optionally filter by side, size, or notional value.
At a Glance
| Field | Value |
|---|---|
| Trigger ID | hyperliquid-trade |
| Category | Other |
| Tags | hyperliquid, perps, trade, market-monitoring, websocket, real-time |
Trigger Configuration
| Field | Type | Required | Description |
|---|---|---|---|
coin | string | Yes | Hyperliquid perpetual coin symbol (e.g., BTC, ETH, SOL) |
side | string | No | Optional trade side filter. If omitted, both sides trigger. |
minSize | number | No | Optional minimum traded base size |
minNotional | number | No | Optional minimum trade notional in USDC |
Trigger Result
| Field | Type | Required | Description |
|---|---|---|---|
triggeredAt | string | Yes | Timestamp when the trade was detected (UTC, RFC3339 format) |
coin | string | Yes | Hyperliquid coin symbol |
trade | object | Yes | - |
Workflow Root Example
json{ "nodes": { "root": { "type": "hyperliquid-trade", "payload": { "coin": "example-coin" }, "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.
