Skip to main content

Low-Latency Binary Order Entry

For market makers and latency-sensitive strategies, Senticore exposes a binary order-entry mode inside the Market Maker API with lower overhead than JSON or FIX.

Restricted access

The binary mode is restricted to qualified institutional market-maker clients. Credential issuance requires onboarding and explicit risk acknowledgement.

Why binary

ConcernBinaryFIXHTTP JSON
Encoding overheadLowestMediumHighest
Parser CPU costLowestMediumHighest
Garbage collection pressureLowestMediumHighest
ToolingCustom clientStandardUniversal
Best forHFT and MMInstitutionalApps and retail

Protocol shape

Messages use a fixed-header plus variable-payload layout, little-endian encoded, framed by length prefix. Full message specifications are issued to qualified clients during onboarding.

Frame elementWidthPurpose
Length4 bytesTotal message length excluding header
Message type2 bytesTagged enum
Flags2 bytesReserved for feature negotiation
Sequence8 bytesMonotonic per session
Timestamp8 bytesClient send time
PayloadVariableType-specific payload

Supported messages

DirectionTypePurpose
Client to serverLogonSession establishment with signed challenge
Client to serverNewOrderPlace order
Client to serverCancelOrderCancel by client order id
Client to serverReplaceOrderAtomic cancel-replace
Client to serverBulkOrderQuote refresh for market makers
Server to clientAckAccepted into gateway path
Server to clientExecReportOrder state change or fill
Server to clientRejectPre-trade reject
BidirectionalHeartbeatLiveness

Performance characteristics

The binary path is designed for:

  • single-digit microsecond client-side serialization
  • TCP NODELAY
  • no application-level message buffering
  • deterministic gap recovery through sequence numbers
  • co-location or low-latency-zone deployment for sub-millisecond strategies

Requirements for access

Binary credentials are issued after:

  1. Institutional onboarding.
  2. Infrastructure and connectivity review.
  3. Volume or quoting commitment.
  4. Signed risk acknowledgement.

Next