sami-sweng / fixparser

FIX5.0SP2 parser.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fixparser

This is the ECMAScript 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.

Build Status NPM Version Code Climate Test Coverage

Quick start

Install with npm install fixparser.

Parse a FIX message:

import FIXParser from 'fixparser';
const fixParser = new FIXParser();
console.log(fixParser.parse('8=FIX.4.2|9=51|35=0|34=703|49=ABC|52=20100130-10:53:40.830|56=XYZ|10=249|'));

Create a FIX message:

import FIXParser, {
    Field,
    Fields,
    Messages,
    Side,
    OrderTypes,
    HandlInst,
    TimeInForce,
    EncryptMethod
} from 'fixparser';
const fixParser = new FIXParser();
const order = 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('|'));

Connect over TCP socket (as client):

import FIXParser from 'fixparser';
const fixParser = new FIXParser();
fixParser.connect({ host: 'localhost', port: 9878, sender: 'BANZAI', target: 'EXEC', fixVersion: 'FIX.4.4' });
fixParser.on('open', () => {
    // Connection is open... 
});
fixParser.on('message', (message) => {
    // Received FIX message
});
fixParser.on('close', () => {
    // Disconnected...
});

FIX Server:

import FIXServer from 'fixparser/server';
const fixServer = new FIXServer();
fixServer.createServer('localhost', 9878);
fixServer.on('message', (message) => {
    console.log('server received message', message.description, message.string);
});

FIXParser demo

FIXParser demo page

Features

  • Parse and create FIX messages
  • Connect over TCP socket as client or server
  • Fast, single-digit microsecond performance
  • Modern, written in ES6/ES2015/ES2016/ES2017
  • Validation (checksum and message length), includes 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/browser';)

Performance

┌─────────────────────────────────┬───────────────┬──────────────┬──────────────┐
│ FIX Messages                    │ Messages/sec  │ Microseconds │ Milliseconds │
│ 200,000 iterations (same msg)   │ 152,091 msg/s │ 6.5750 μs    │ 0.0066 ms    │
│ 200,000 iterations (same msg)   │ 161,551 msg/s │ 6.1900 μs    │ 0.0062 ms    │
│ 200,000 iterations (random msg) │ 92,721 msg/s  │ 10.7850 μs   │ 0.0108 ms    │
│ 200,000 iterations (same msg)   │ 160,256 msg/s │ 6.2400 μs    │ 0.0062 ms    │
│ 200,000 iterations (random msg) │ 92,980 msg/s  │ 10.7550 μs   │ 0.0108 ms    │
│ 200,000 iterations (same msg)   │ 158,983 msg/s │ 6.2900 μs    │ 0.0063 ms    │
│ 200,000 iterations (random msg) │ 93,721 msg/s  │ 10.6700 μs   │ 0.0107 ms    │
│ 200,000 iterations (same msg)   │ 162,338 msg/s │ 6.1600 μs    │ 0.0062 ms    │
│ 200,000 iterations (same msg)   │ 162,206 msg/s │ 6.1650 μs    │ 0.0062 ms    │
│ 200,000 iterations (same msg)   │ 162,470 msg/s │ 6.1550 μs    │ 0.0062 ms    │
└─────────────────────────────────┴───────────────┴──────────────┴──────────────┘

1.7 GHz Intel Core i7 (8 GB 1600 MHz DDR3), 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).

Authors

Victor Norgren

Copyright and license

Copyright © 2018 logotype

Author: Victor Norgren

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

FIX5.0SP2 parser.


Languages

Language:JavaScript 99.8%Language:HTML 0.1%Language:CSS 0.1%