Fixter is a Node.js library to interact with the FIX protocol.
Pull requests and new tests are greatly welcomed.
Fixter is licensed under a BSD license. Do what you want with it.
When messages are received, they are emitted as events on the Initiator object. For example:
let initiator = new Initiator(options);
initiator.on('IOI', function(message) {
console.log('New IOI for ${message.Symbol}. Price: ${message.Price}');
});
To use SSL, set SSL
to true in your Initiator's options.