fixparser
TypeScript icon, indicating that this package has built-in type declarations

5.8.7 • Public • Published

fixparser

FIXParser Demo Pipeline Coverage npm version Downloads

This is the TypeScript framework for working with FIX protocol messages. Compliant with FIX 5.0 SP2.

The Financial Information eXchange (FIX) protocol is an electronic communications protocol initiated in 1992 for international real-time exchange of information related to the securities transactions and markets.

Versions

Feature FIXParser FIXParser Enterprise
Parse FIX messages
Create FIX messages  
Encode FIX messages  
Remote connections  
FIX Server  

Features

  • Parse and create FIX messages
  • Connect over TCP/WebSocket, FIX-over-TLS as client or server
  • FIX Session support (Logon, Logout, Heartbeat, etc)
  • Fast, single-digit microsecond performance
  • Modern, written in Typescript
  • Validation (checksum and body length), includes per-field FIX specification in parsed message
  • Supports various separators/start of headers (e.g. 0x01, ^ and |)
  • Clean and lightweight code
  • Supports both node.js and browser environments (import { FIXParser } from 'fixparser/FIXParserBrowser';)

FIXParser Enterprise

The FIXParser Enterprise version can be purchased at fixparser.io. A license is valid for 1 year, includes updates and enables all functionality of the fixparser library.

Quick start

Install with npm install fixparser.

Parse a FIX message:

import { FIXParser } from 'fixparser';
const fixParser: FIXParser = new FIXParser();
const messages: Message[] = fixParser.parse('8=FIX.4.2|9=51|35=0|34=703|49=ABC|52=20100130-10:53:40.830|56=XYZ|10=249|');
{
  "fixVersion": "FIX.4.2",
  "description": "Heartbeat",
  "messageType": "0",
  "messageSequence": 703,
  "data": [
    {
      "tag": 8,
      "value": "FIX.4.2",
      "name": "BeginString",
      "description": "Identifies beginning of new message and protocol version. ALWAYS FIRST FIELD IN MESSAGE. (Always unencrypted)\nValid values:\nFIXT.1.1",
      "type": {
        "name": "String",
        "description": "Alpha-numeric free format strings, can include any character or punctuation except the delimiter. All String fields are case sensitive (i.e. morstatt != Morstatt).",
        "added": "FIX.4.2"
      },
      "category": null,
      "section": null,
      "enumeration": null,
      "validated": false
    },
    ... // Rest of tags...
  ],
  "messageContents": [
    {
      "componentID": 1,
      "tagText": "StandardHeader",
      "indent": 0,
      "position": 1,
      "reqd": 1,
      "description": "MsgType = 0",
      "added": "FIX.2.7",
      ... // Rest of spec...
    }
  ],
  "bodyLengthValid": true,
  "checksumValid": true,
  "checksumValue": "249",
  "checksumExpected": "249",
  "bodyLengthValue": 51,
  "bodyLengthExpected": 51
}

Parse a FIX message as JSON, including repeating groups:

import { FIXParser } from 'fixparser';
const fixParser: FIXParser = new FIXParser();
const messages: Message[] = fixParser.parse('8=FIX.4.4|9=142|35=V|34=1|49=SENDER|56=TARGET|52=20090323-15:40:29|264=0|265=0|262=1|263=1|268=5|269=0|269=1|269=b|269=c|269=B|146=5|55=1|55=2|55=3|55=4|55=5|10=062|');
console.log(message[0].toFIXJSON());
{
  "Header": {
    "BeginString": "FIX.4.4",
    "MsgType": "V",
    "BodyLength": 142,
    "MsgSeqNum": 1,
    "SenderCompID": "SENDER",
    "TargetCompID": "TARGET",
    "SendingTime": "20090323-15:40:29"
  },
  "Body": {
    "MDReqID": "1",
    "MDUpdateType": 0,
    "MarketDepth": 0,
    "NoMDEntries": [
      { "MDEntryType": "Bid" },
      { "MDEntryType": "Offer" },
      { "MDEntryType": "b" },
      { "MDEntryType": "c" },
      { "MDEntryType": "TradeVolume" }
    ],
    "NoRelatedSym": [
      { "Symbol": "1" },
      { "Symbol": "2" },
      { "Symbol": "3" },
      { "Symbol": "4" },
      { "Symbol": "5" }
    ],
    "SubscriptionRequestType": "1"
  },
  "Trailer": { "CheckSum": "062" }
}

FIXParser Enterprise Create a FIX message:

import {
    FIXParser,
    Field,
    Fields,
    Message,
    Messages,
    Side,
    OrderTypes,
    HandlInst,
    TimeInForce,
    EncryptMethod,
    LicenseManager
} from 'fixparser';

// NOTE: This feature requires a FIXParser Enterprise license
void LicenseManager.setLicenseKey('<your license here>');

const fixParser: FIXParser = new FIXParser();
const order: Message = fixParser.createMessage(
    new Field(Fields.MsgType, Messages.NewOrderSingle),
    new Field(Fields.MsgSeqNum, fixParser.getNextTargetMsgSeqNum()),
    new Field(Fields.SenderCompID, 'SENDER'),
    new Field(Fields.SendingTime, fixParser.getTimestamp()),
    new Field(Fields.TargetCompID, 'TARGET'),
    new Field(Fields.ClOrdID, '11223344'),
    new Field(Fields.HandlInst, HandlInst.AutomatedExecutionNoIntervention),
    new Field(Fields.OrderQty, '123'),
    new Field(Fields.TransactTime, fixParser.getTimestamp()),
    new Field(Fields.OrdType, OrderTypes.Market),
    new Field(Fields.Side, Side.Buy),
    new Field(Fields.Symbol, '123.HK'),
    new Field(Fields.TimeInForce, TimeInForce.Day)
);
console.log(order.encode('|'));
// 8=FIX.5.0SP2|9=129|35=D|34=1|49=SENDER|52=20221123-23:04:59.132|56=TARGET|11=11223344|21=1|38=123|60=20221123-23:04:59.132|40=1|54=1|55=123.HK|59=0|10=061|

FIXParser Enterprise Connect over TCP socket (as client):

import { FIXParser, LicenseManager } from 'fixparser';

// NOTE: This feature requires a FIXParser Enterprise license
void LicenseManager.setLicenseKey('<your license here>');
const fixParser: FIXParser = new FIXParser();
fixParser.connect({
    host: 'localhost',
    port: 9878,
    protocol: 'tcp',
    sender: 'BANZAI',
    target: 'EXEC',
    fixVersion: 'FIX.4.4',
    logging: true,
    onReady: () => { /* Client is ready to connect */ },
    onOpen: () => { /* Connection is now open */ },
    onMessage: (message: Message) => { /* Received a FIX message */ },
    onError: (error?: Error) => { /* Some error occurred */ },
    onClose: () => { /* Disconnected from remote */ },
});

FIXParser Enterprise FIX Server:

import { FIXServer, LicenseManager }  from 'fixparser/server';

// NOTE: This feature requires a FIXParser Enterprise license
void LicenseManager.setLicenseKey('<your license here>');

const fixServer: FIXServer = new FIXServer();
fixServer.createServer({
    host: 'localhost',
    port: 9878,
    protocol: 'tcp',
    sender: 'SERVER',
    target: 'CLIENT',
    onReady: () => { /* Server is ready */ },
    onOpen: () => { /* Received connection */ },
    onMessage: (message: Message) => { /* Received a FIX message */ },
    onError: (error?: Error) => { /* Some error occurred */ },
    onClose: () => { /* Client disconnected */ },
});

Performance

┌─────────────────────────────────┬───────────────┬──────────────┬──────────────┐
│ FIX Messages                    │ Messages/sec  │ Microseconds │ Milliseconds │
│ 200,000 iterations (same msg)   │ 338,409 msg/s │ 2.9550 μs    │ 0.0030 ms    │
│ 200,000 iterations (same msg)   │ 346,620 msg/s │ 2.8850 μs    │ 0.0029 ms    │
│ 200,000 iterations (random msg) │ 202,020 msg/s │ 4.9500 μs    │ 0.0050 ms    │
│ 200,000 iterations (same msg)   │ 331,675 msg/s │ 3.0150 μs    │ 0.0030 ms    │
│ 200,000 iterations (random msg) │ 202,840 msg/s │ 4.9300 μs    │ 0.0049 ms    │
│ 200,000 iterations (same msg)   │ 332,226 msg/s │ 3.0100 μs    │ 0.0030 ms    │
│ 200,000 iterations (random msg) │ 203,252 msg/s │ 4.9200 μs    │ 0.0049 ms    │
│ 200,000 iterations (same msg)   │ 332,226 msg/s │ 3.0100 μs    │ 0.0030 ms    │
│ 200,000 iterations (same msg)   │ 331,675 msg/s │ 3.0150 μs    │ 0.0030 ms    │
│ 200,000 iterations (same msg)   │ 332,226 msg/s │ 3.0100 μs    │ 0.0030 ms    │
└─────────────────────────────────┴───────────────┴──────────────┴──────────────┘

MacBook Pro, Apple M1 Max (64 GB), node 20.6.1, run with npm run perf.

Message format

The general format of a FIX message is a standard header followed by the message body fields and terminated with a standard trailer.

Each message is constructed of a stream of = fields with a field delimiter between fields in the stream. Tags are of data type TagNum. All tags must have a value specified. Optional fields without values should simply not be specified in the FIX message. A Reject message is the appropriate response to a tag with no value. Except where noted, fields within a message can be defined in any sequence (Relative position of a field within a message is inconsequential.) The exceptions to this rule are:

  • General message format is composed of the standard header followed by the body followed by the standard trailer.
  • The first three fields in the standard header are BeginString (tag #8) followed by BodyLength (tag #9) followed by MsgType (tag #35).
  • The last field in the standard trailer is the CheckSum (tag #10).
  • Fields within repeating data groups must be specified in the order that the fields are specified in the message definition within the FIX specification document. The NoXXX field where XXX is the field being counted specifies the number of repeating group instances that must immediately precede the repeating group contents.
  • A tag number (field) should only appear in a message once. If it appears more than once in the message it should be considered an error with the specification document. The error should be pointed out to the FIX Global Technical Committee.

In addition, certain fields of the data type MultipleCharValue can contain multiple individual values separated by a space within the "value" portion of that field followed by a single "SOH" character (e.g. "18=2 9 C" represents 3 individual values: '2', '9', and 'C'). Fields of the data type MultipleStringValue can contain multiple values that consists of string values separated by a space within the "value" portion of that field followed by a single "SOH" character (e.g. "277=AA I AJ" represents 3 values: 'AA', 'I', 'AJ').

It is also possible for a field to be contained in both the clear text portion and the encrypted data sections of the same message. This is normally used for validation and verification. For example, sending the SenderCompID in the encrypted data section can be used as a rudimentary validation technique. In the cases where the clear text data differs from the encrypted data, the encrypted data should be considered more reliable. (A security warning should be generated).

Copyright

fixparser.io

Dependents (2)

Package Sidebar

Install

npm i fixparser

Weekly Downloads

1,178

Version

5.8.7

License

LICENSE.md

Unpacked Size

128 MB

Total Files

82

Last publish

Collaborators

  • logotype