Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
quickfast is probably fastest free decoder on the market . I seriously doubt that. Cannot compare something without the dedicated funding of millions and hundreds of developers working on it. – DumbCoder Oct 19 '12 at 16:10
Why do you say that it is too slow? Slow compared to what? Are you sure it's quickfast and not your code at fault? Many FIX engines in .NET are slow because their developers tried to optimize what didn't need optimizing, or made assumptions about what is slow. – Panagiotis Kanavos Dec 12 '12 at 13:58
@PanagiotisKanavos in HFT more than 20 microseconds per one message is too slow – javapowered Dec 14 '12 at 23:10

3 Answers

I found Faster FAST Decoder, not free though.

share|improve this answer

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.

share|improve this answer
up vote 0 down vote accepted

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.