- Topic:
execution - Stream: Private (
wss://api.ekiden.fi/ws/private)
Authenticate
Use authentication flow described in the Connect page.Subscribe
Events
Messages arrive withop: "event", topic: "execution", and data is an array of Execution.
Example:
- Numeric values are encoded as strings to preserve precision.
exec_timeis Unix milliseconds (encoded as a string).
Fields
| Field | Type | Notes |
|---|---|---|
| exec_id | string | Execution ID (UUID) |
| symbol | string | Symbol name |
| order_id | string | Order ID (UUID) |
| order_link_id | string or null | Client-provided link id, if set |
| side | string | Buy or Sell |
| sub_account_address | string | Sub-account address |
| order_price | string | Original order price |
| order_qty | string | Original order quantity |
| leaves_qty | string | Remaining quantity after this fill |
| create_type | string or null | Create source/type |
| order_type | string | Limit or Market |
| stop_order_type | string or null | Stop order type, if applicable |
| exec_price | string | Execution price |
| exec_qty | string | Execution quantity |
| exec_value | string | Executed value (price * qty) |
| exec_type | string | Execution type (e.g. Trade, Adl, …) |
| exec_time | string | Executed timestamp (ms) |
| is_maker | boolean | true maker, false taker |
| fee_rate | string | Trading fee rate |
| mark_price | string | Mark price at execution |
| index_price | string | Index price at execution |
| closed_size | string or null | Closed position size |
| seq | integer | Cross sequence |
Execution.