Forwards an order to a maker for execution. The WS connection providing market data updates for the corresponding stream is used to send the event.
{
"event": "add", // event type, required
"instrument": <string>, // instrument name, required
"clientOrderId": <UUID>, // client order id, required
"price": <uint64>, // order limit price, optional
"size": <int64>, // order size, required
"side": <string>, // order side, required; can be "bid" or "ask"
"type": <enum>, // order type, required; e.g., "limitFOK", "limitIOC"
"clientId": <uint32> // FM id of an order owning client (taker), required
}
The FM sends the taker order to the Maker via the connection corresponding to the assigned stream.