Defining custom FIX protocol messages and custom fields involves extending the standard FIX protocol with your own message types and fields. These customizations are often necessary to support specific business requirements that are not covered by the standard FIX specification.
Here’s a detailed guide on how to define both custom messages and fields in the FIX protocol:
1. Defining Custom FIX Protocol Fields
Steps to Define Custom Fields:
-
Choose a Custom Tag Number:
- The FIX protocol assigns tag numbers to fields, with the range 5000 and above typically being used for custom or proprietary fields.
- Ensure that the tag number you choose does not conflict with the standard FIX field tags (i.e., 1–4999).
-
Define the Field Name and Description:
- Field Name: A descriptive name for the field (e.g.,
CustomOrderID
,TraderNote
). - Tag Number: The number associated with the custom field (e.g., 5500).
- Data Type: Specify the data type of the field (e.g., String, Integer, Date).
- Field Description: Clearly describe the purpose of the field.
- Field Name: A descriptive name for the field (e.g.,
-
Example Custom Field Definition:
- Tag: 5500
- Name:
CustomOrderID
- Type: String
- Description: A unique identifier for the custom order used internally by the trading system.
Example of Custom Field in a FIX Message:
8=FIX.4.2|9=74|35=D|49=SenderCompID|56=TargetCompID|34=123|5500=OrderABC123|10=154|
Here, the custom field 5500
(CustomOrderID) is sent with the value OrderABC123
.
2. Defining Custom FIX Protocol Messages
Steps to Define Custom Messages:
-
Define a New Message Type:
- Each FIX message consists of a set of fields (tags) and has a Message Type identified by a specific
MsgType
. To create a custom message, you need to assign a newMsgType
identifier. - Custom message types are typically assigned tag numbers in the range of
Z
toAZ
or from the extended custom tag range (e.g.,U1
,U2
).
- Each FIX message consists of a set of fields (tags) and has a Message Type identified by a specific
-
Create a Message Definition:
- MsgType: This is the unique identifier for your custom message.
- Fields: Define the tags and fields that make up your custom message. These can include both standard and custom fields.
- Sequence and Structure: Define the order in which fields will appear in the message.
-
Define the Message Description and Usage:
- Message Name: A meaningful name for the custom message (e.g.,
CustomOrderMessage
). - Purpose: Describe the purpose of the custom message.
- Tags/Fields: List the tags and their corresponding fields used in the message.
- Message Name: A meaningful name for the custom message (e.g.,
Example Custom Message Definition:
- MsgType:
U1
(custom message type) - Message Name:
CustomOrderMessage
- Tags/Fields:
35=U1
(indicating the custom message type)5500=OrderABC123
(custom field for order ID)53=1
(standard FIX field for order side, e.g., buy/sell)54=1
(standard FIX field for quantity)38=1000
(standard FIX field for quantity of the order)
3. Example of Custom FIX Message Using Custom Fields:
Here’s an example of how you might send a custom message with a custom field in a FIX message:
8=FIX.4.2|9=105|35=U1|49=SenderCompID|56=TargetCompID|34=123|5500=OrderABC123|53=1|54=1|38=1000|10=154|
Explanation:
- 35=U1: This indicates a custom message type (
U1
). - 5500=OrderABC123: This is the custom field
CustomOrderID
with the valueOrderABC123
. - 53=1: This is the standard
Side
field, where1
might mean a buy order. - 54=1: This represents the quantity field, here with a value of 1000.
- 38=1000: This is the standard
Quantity
field in FIX, indicating the size of the order.
4. Implementation and Configuration
After defining your custom messages and fields, you will need to:
-
Update FIX Engine Configuration:
- Ensure that the FIX engine or parser you are using understands your custom tags and message types.
- This could mean updating the FIX engine’s configuration files to include the new message types and custom fields.
-
Custom Message Parsing Logic:
- You may need to write custom parsers or message handlers to interpret your custom messages and fields. Ensure that both encoding and decoding functions support your custom message structure.
-
Communication with Counterparties:
- When using custom fields and messages, ensure that both your side and your counterparties agree on the structure, tags, and message types. This avoids potential issues in message interpretation.
- Document the custom message types and field definitions and share them with anyone who needs to communicate with your system via FIX.
5. Example of Full Process:
1. Define Custom Field:
- Tag:
5500
- Name:
CustomOrderID
- Type:
String
- Description: Internal unique identifier for orders.
2. Define Custom Message:
- MsgType:
U1
- Name:
CustomOrderMessage
- Fields:
5500=OrderABC123
53=1
(Buy)54=1
(Quantity)38=1000
3. Send Message:
8=FIX.4.2|9=105|35=U1|49=SenderCompID|56=TargetCompID|34=123|5500=OrderABC123|53=1|54=1|38=1000|10=154|
By following these steps, you can successfully define and implement custom FIX protocol fields and messages that are specific to your application’s needs.