FAST Protocol | Python cover

Is there a good shell in Python to use FAST to nullify data coming from an -line stream. There is a Java implementation (OpenFAST), but it has some performance problems that cannot be used.

Thanks.

+4
source share
1 answer

You can find the Python shell for the FIX protocol here .

The Python wrapper for the FAST protocol (FIX Adapted for STreaming) does not seem to have been created.

I would suggest downloading C files to test the functions then look through the Python / C API docs and write a wrapper for the rest of the python community to enjoy!

+1
source

Source: https://habr.com/ru/post/1343285/


All Articles