jspurefix icon indicating copy to clipboard operation
jspurefix copied to clipboard

native typescript FIX engine

Results 31 jspurefix issues
Sort by recently updated
recently updated
newest added

While using the library, I noticed it is impossible to pass native Node.JS TLS options to the underlying TLS implementation. I added these as additional options to the existing `ITlsOptions`...

When the remote closes the socket during a running session, the following kicks in (`FixSession`): ``` rx.on('done', () => { logger.info('rx done received') this.done() }) ``` This will trigger session...

While integrating jspurefix in an app, I realized there is no way to pass a custom logger. Also, there is no way to pass session options without storing them in...

"request" and "request-promise-native" have been deprecated. Any plans to drop/replace them?

@TimelordUK I am trying to pass raw FIX messages from client to server. Is there a function or pattern that will take a string like `8=FIX.4.49=9035=A34=19749=TRADER52=20220927-15:38:19.00056=OMS98=0108=3010=181` and send this exact...

The logon message for FIX 4.3 is missing user name and password fields. It is not possible to logon without these fields. https://github.com/TimelordUK/jspurefix/blob/master/src/types/FIX4.3/repo/logon.ts I will be happy to create a...

There should be an extra . in the BeginString in the examples etc e.g. 8=FIX.4.x rather than 8=FIX4.x etc otherwise lots of headaches ;-)

Hellow there! i am unable to connect with server and below are my connection detail and guide me with a simple examples thanks. DEFAULT] BeginString=FIX.4.4 StartTime=18:00:00 EndTime=06:00:00 EndDay=Saturday StartDay=Sunday ConnectionType=initiator...

Hi, I'm using jspurefix to communicate with our client's FIX OMS. When sending application messages, the client requires optional tags **DeliverToCompID** and **SenderSubID** to be provided in the standard header,...

Hello. We are using this lib on a production product and we found ourselves in a quite situation with Heartbeat and TestRequest messages. We built only the **client** and we...