Which free FIX engine, apart Quickfix ?

Created at 19 Feb 2021, 14:45
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