Which free FIX engine, apart Quickfix ?

Created at 19 Feb 2021, 14:45
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
ER

ertul

Joined 19.02.2021

Which free FIX engine, apart Quickfix ?
19 Feb 2021, 14:45


For C++.

Quickfix 1.15 (latest) does not manage TargetSubID header in message. The source has to be modified and recompiled.

Is there another free FIX engine recommended for cTrader ?


@ertul
Replies

FrederickvanLingen
13 May 2021, 18:34

RE: Which free FIX engine for C++, apart Quickfix ?

emmanuel.schaer said:

For C++.

Quickfix 1.15 (latest) does not manage TargetSubID header in message. The source has to be modified and recompiled.

Is there another free FIX engine recommended for cTrader ?

Hi emmanuel, 

 

I solved that issue with the following command:

 header = message.getHeader()

header.setField(fix.TargetSubID("QUOTE"))

Hope this helps.


@FrederickvanLingen