市场数据请求 - FieldNotFound异常

时间:2011-08-12 11:53:08

标签: vb.net quickfix

在尝试订阅外汇代码的报价时,我经常遇到FieldNotFound异常。 虽然我添加了所有必需的标签以及更多。

(其中:MDReqID,SubscriptionRequestType,MarketDepth,NoMDEntryTypes,MDEntryType,NoRelatedSym,Symbol。如此处所指定:http://www.onixs.biz/tools/fixdictionary/4.2/msgType_V_86.html

这是我的代码:

Dim l_msg As New QuickFix42.MarketDataRequest(
 New MDReqID(System.Guid.NewGuid.ToString),
 New SubscriptionRequestType(SubscriptionRequestType.SNAPSHOT_PLUS_UPDATES),
 New MarketDepth(1))

l_msg.setField(New MDUpdateType(1))
l_msg.setField(New AggregatedBook(False))
l_msg.setField(New NoMDEntryTypes(2))
l_msg.setField(New MDEntryType("0"c))    
l_msg.setField(New NoRelatedSym(1))
l_msg.setField(New Symbol("EUR/USD"))

Session.sendToTarget(l_msg, SENDER_COMP_ID.Value, TARGET_COMP_ID.Value)

我在这里缺少什么?

1 个答案:

答案 0 :(得分:0)

发现问题:

toApp方法正在使用PossDupFlag检查重复项 如果它不存在,则抛出FieldNotFound异常。

解决方案是用一个检查PossDupFlag是否存在的条件包装它,或者在发送之前将该字段添加到消息中:

Public Sub toApp(p_msg As QuickFix.Message, Param1 As QuickFix.SessionID) Implements QuickFix.Application.toApp
        Try
            Dim l_possDupFlag As New QuickFix.PossDupFlag

            If p_msg.isSetField(l_possDupFlag) Then
                p_msg.getHeader().getField(l_possDupFlag)
                If (l_possDupFlag.getValue()) Then
                    Dim donotsendEx As New QuickFix.DoNotSend
                    Throw donotsendEx
                End If
            End If            

        Catch ex As QuickFix.FieldNotFound
            Log.WriteLine("toApp", ex.ToString)
        Catch ex As Exception
            Log.WriteLine("toApp", ex.ToString)
        End Try
    End Sub