Could someone please suggest fast and free FAST decoder to be used from c#? quickfast is probably fastest free decoder on the market but it's too slow to use from .NET because by default a lot of calls between "management" and "unmanagement" code have to be made.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I found Faster FAST Decoder, not free though. |
||||
|
|
|
SIAC and CME ,ISE provide FAST decoders, written in Java, C++ c#. Now if you want less than 100 microseconds you will need to tune the code, rewrite in c etc. There are alot of c routines availeable in the OPRA and Arca decoders, to help along the way. The HFT folks of course use multi-core so they can handle the separate streams at the same time. Then the code is important, no mallocs etc. |
|||
|
|
|
i'm implemented fast decoding on c++ using quickfast. results can be delivered to c# using shared memory or zeromq. it seems currently it's the fastest way if you don't want to write decoder yourself. |
|||
|
|