QuickFIX设置PreviouslyReported字段被忽略?

时间:2018-03-06 14:46:09

标签: quickfix

我在我的项目中使用QuickFIX C ++引擎。

我向对方发送TradeCaptureReport消息。此消息中有一个名为PreviouslyReported的字段。

我在消息中将此值设置为N但是当我检查发送的消息时,我看到它在结果消息中设置为Y.

QuickFIX是否设置此字段本身忽略我设置的值?

message.set(FIX::PreviouslyReported(FIX::PreviouslyReported_NO));

此致

1 个答案:

答案 0 :(得分:0)

它被定义为from operator import methodcaller df = pd.DataFrame({'a': range(11)}) def foo(df, col, method): return methodcaller(method)(df[col]) res_sum = foo(df, 'a', 'sum') # 55 res_avg = foo(df, 'a', 'mean') # 5.0 ,所以您必须使用:

boolean
相关问题