Documentation ¶
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type LinesOfText
- type LinesOfTextRepeatingGroup
- type News
- func (m News) GetHeadline() (v string, err quickfix.MessageRejectError)
- func (m News) GetLinesOfText() (LinesOfTextRepeatingGroup, quickfix.MessageRejectError)
- func (m News) GetNoRelatedSym() (NoRelatedSymRepeatingGroup, quickfix.MessageRejectError)
- func (m News) GetOrigTime() (v time.Time, err quickfix.MessageRejectError)
- func (m News) GetRawData() (v string, err quickfix.MessageRejectError)
- func (m News) GetRawDataLength() (v int, err quickfix.MessageRejectError)
- func (m News) GetURLLink() (v string, err quickfix.MessageRejectError)
- func (m News) GetUrgency() (v enum.Urgency, err quickfix.MessageRejectError)
- func (m News) HasHeadline() bool
- func (m News) HasLinesOfText() bool
- func (m News) HasNoRelatedSym() bool
- func (m News) HasOrigTime() bool
- func (m News) HasRawData() bool
- func (m News) HasRawDataLength() bool
- func (m News) HasURLLink() bool
- func (m News) HasUrgency() bool
- func (m News) SetHeadline(v string)
- func (m News) SetLinesOfText(f LinesOfTextRepeatingGroup)
- func (m News) SetNoRelatedSym(f NoRelatedSymRepeatingGroup)
- func (m News) SetOrigTime(v time.Time)
- func (m News) SetRawData(v string)
- func (m News) SetRawDataLength(v int)
- func (m News) SetURLLink(v string)
- func (m News) SetUrgency(v enum.Urgency)
- func (m News) ToMessage() *quickfix.Message
- type NoRelatedSym
- func (m NoRelatedSym) GetIDSource() (v enum.IDSource, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetIssuer() (v string, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetMaturityDay() (v int, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetOptAttribute() (v string, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetPutOrCall() (v enum.PutOrCall, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetRelatdSym() (v string, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetSecurityDesc() (v string, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetSecurityExchange() (v string, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetSecurityID() (v string, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError)
- func (m NoRelatedSym) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError)
- func (m NoRelatedSym) HasIDSource() bool
- func (m NoRelatedSym) HasIssuer() bool
- func (m NoRelatedSym) HasMaturityDay() bool
- func (m NoRelatedSym) HasMaturityMonthYear() bool
- func (m NoRelatedSym) HasOptAttribute() bool
- func (m NoRelatedSym) HasPutOrCall() bool
- func (m NoRelatedSym) HasRelatdSym() bool
- func (m NoRelatedSym) HasSecurityDesc() bool
- func (m NoRelatedSym) HasSecurityExchange() bool
- func (m NoRelatedSym) HasSecurityID() bool
- func (m NoRelatedSym) HasSecurityType() bool
- func (m NoRelatedSym) HasStrikePrice() bool
- func (m NoRelatedSym) HasSymbolSfx() bool
- func (m NoRelatedSym) SetIDSource(v enum.IDSource)
- func (m NoRelatedSym) SetIssuer(v string)
- func (m NoRelatedSym) SetMaturityDay(v int)
- func (m NoRelatedSym) SetMaturityMonthYear(v string)
- func (m NoRelatedSym) SetOptAttribute(v string)
- func (m NoRelatedSym) SetPutOrCall(v enum.PutOrCall)
- func (m NoRelatedSym) SetRelatdSym(v string)
- func (m NoRelatedSym) SetSecurityDesc(v string)
- func (m NoRelatedSym) SetSecurityExchange(v string)
- func (m NoRelatedSym) SetSecurityID(v string)
- func (m NoRelatedSym) SetSecurityType(v enum.SecurityType)
- func (m NoRelatedSym) SetStrikePrice(value decimal.Decimal, scale int32)
- func (m NoRelatedSym) SetSymbolSfx(v enum.SymbolSfx)
- type NoRelatedSymRepeatingGroup
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type LinesOfText ¶
LinesOfText is a repeating group element, Tag 33.
func (LinesOfText) GetText ¶
func (m LinesOfText) GetText() (v string, err quickfix.MessageRejectError)
GetText gets Text, Tag 58.
func (LinesOfText) HasText ¶
func (m LinesOfText) HasText() bool
HasText returns true if Text is present, Tag 58.
type LinesOfTextRepeatingGroup ¶
type LinesOfTextRepeatingGroup struct {
*quickfix.RepeatingGroup
}
LinesOfTextRepeatingGroup is a repeating group, Tag 33.
func NewLinesOfTextRepeatingGroup ¶
func NewLinesOfTextRepeatingGroup() LinesOfTextRepeatingGroup
NewLinesOfTextRepeatingGroup returns an initialized, LinesOfTextRepeatingGroup.
func (LinesOfTextRepeatingGroup) Add ¶
func (m LinesOfTextRepeatingGroup) Add() LinesOfText
Add create and append a new LinesOfText to this group.
func (LinesOfTextRepeatingGroup) Get ¶
func (m LinesOfTextRepeatingGroup) Get(i int) LinesOfText
Get returns the ith LinesOfText in the LinesOfTextRepeatinGroup.
type News ¶
News is the fix41 News type, MsgType = B.
func FromMessage ¶
FromMessage creates a News from a quickfix.Message instance.
func New ¶
func New(headline field.HeadlineField) (m News)
New returns a News initialized with the required fields for News.
func (News) GetHeadline ¶
func (m News) GetHeadline() (v string, err quickfix.MessageRejectError)
GetHeadline gets Headline, Tag 148.
func (News) GetLinesOfText ¶
func (m News) GetLinesOfText() (LinesOfTextRepeatingGroup, quickfix.MessageRejectError)
GetLinesOfText gets LinesOfText, Tag 33.
func (News) GetNoRelatedSym ¶
func (m News) GetNoRelatedSym() (NoRelatedSymRepeatingGroup, quickfix.MessageRejectError)
GetNoRelatedSym gets NoRelatedSym, Tag 146.
func (News) GetOrigTime ¶
func (m News) GetOrigTime() (v time.Time, err quickfix.MessageRejectError)
GetOrigTime gets OrigTime, Tag 42.
func (News) GetRawData ¶
func (m News) GetRawData() (v string, err quickfix.MessageRejectError)
GetRawData gets RawData, Tag 96.
func (News) GetRawDataLength ¶
func (m News) GetRawDataLength() (v int, err quickfix.MessageRejectError)
GetRawDataLength gets RawDataLength, Tag 95.
func (News) GetURLLink ¶
func (m News) GetURLLink() (v string, err quickfix.MessageRejectError)
GetURLLink gets URLLink, Tag 149.
func (News) GetUrgency ¶
func (m News) GetUrgency() (v enum.Urgency, err quickfix.MessageRejectError)
GetUrgency gets Urgency, Tag 61.
func (News) HasHeadline ¶
HasHeadline returns true if Headline is present, Tag 148.
func (News) HasLinesOfText ¶
HasLinesOfText returns true if LinesOfText is present, Tag 33.
func (News) HasNoRelatedSym ¶
HasNoRelatedSym returns true if NoRelatedSym is present, Tag 146.
func (News) HasOrigTime ¶
HasOrigTime returns true if OrigTime is present, Tag 42.
func (News) HasRawData ¶
HasRawData returns true if RawData is present, Tag 96.
func (News) HasRawDataLength ¶
HasRawDataLength returns true if RawDataLength is present, Tag 95.
func (News) HasURLLink ¶
HasURLLink returns true if URLLink is present, Tag 149.
func (News) HasUrgency ¶
HasUrgency returns true if Urgency is present, Tag 61.
func (News) SetLinesOfText ¶
func (m News) SetLinesOfText(f LinesOfTextRepeatingGroup)
SetLinesOfText sets LinesOfText, Tag 33.
func (News) SetNoRelatedSym ¶
func (m News) SetNoRelatedSym(f NoRelatedSymRepeatingGroup)
SetNoRelatedSym sets NoRelatedSym, Tag 146.
func (News) SetRawDataLength ¶
SetRawDataLength sets RawDataLength, Tag 95.
type NoRelatedSym ¶
NoRelatedSym is a repeating group element, Tag 146.
func (NoRelatedSym) GetIDSource ¶
func (m NoRelatedSym) GetIDSource() (v enum.IDSource, err quickfix.MessageRejectError)
GetIDSource gets IDSource, Tag 22.
func (NoRelatedSym) GetIssuer ¶
func (m NoRelatedSym) GetIssuer() (v string, err quickfix.MessageRejectError)
GetIssuer gets Issuer, Tag 106.
func (NoRelatedSym) GetMaturityDay ¶
func (m NoRelatedSym) GetMaturityDay() (v int, err quickfix.MessageRejectError)
GetMaturityDay gets MaturityDay, Tag 205.
func (NoRelatedSym) GetMaturityMonthYear ¶
func (m NoRelatedSym) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError)
GetMaturityMonthYear gets MaturityMonthYear, Tag 200.
func (NoRelatedSym) GetOptAttribute ¶
func (m NoRelatedSym) GetOptAttribute() (v string, err quickfix.MessageRejectError)
GetOptAttribute gets OptAttribute, Tag 206.
func (NoRelatedSym) GetPutOrCall ¶
func (m NoRelatedSym) GetPutOrCall() (v enum.PutOrCall, err quickfix.MessageRejectError)
GetPutOrCall gets PutOrCall, Tag 201.
func (NoRelatedSym) GetRelatdSym ¶
func (m NoRelatedSym) GetRelatdSym() (v string, err quickfix.MessageRejectError)
GetRelatdSym gets RelatdSym, Tag 46.
func (NoRelatedSym) GetSecurityDesc ¶
func (m NoRelatedSym) GetSecurityDesc() (v string, err quickfix.MessageRejectError)
GetSecurityDesc gets SecurityDesc, Tag 107.
func (NoRelatedSym) GetSecurityExchange ¶
func (m NoRelatedSym) GetSecurityExchange() (v string, err quickfix.MessageRejectError)
GetSecurityExchange gets SecurityExchange, Tag 207.
func (NoRelatedSym) GetSecurityID ¶
func (m NoRelatedSym) GetSecurityID() (v string, err quickfix.MessageRejectError)
GetSecurityID gets SecurityID, Tag 48.
func (NoRelatedSym) GetSecurityType ¶
func (m NoRelatedSym) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError)
GetSecurityType gets SecurityType, Tag 167.
func (NoRelatedSym) GetStrikePrice ¶
func (m NoRelatedSym) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError)
GetStrikePrice gets StrikePrice, Tag 202.
func (NoRelatedSym) GetSymbolSfx ¶
func (m NoRelatedSym) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError)
GetSymbolSfx gets SymbolSfx, Tag 65.
func (NoRelatedSym) HasIDSource ¶
func (m NoRelatedSym) HasIDSource() bool
HasIDSource returns true if IDSource is present, Tag 22.
func (NoRelatedSym) HasIssuer ¶
func (m NoRelatedSym) HasIssuer() bool
HasIssuer returns true if Issuer is present, Tag 106.
func (NoRelatedSym) HasMaturityDay ¶
func (m NoRelatedSym) HasMaturityDay() bool
HasMaturityDay returns true if MaturityDay is present, Tag 205.
func (NoRelatedSym) HasMaturityMonthYear ¶
func (m NoRelatedSym) HasMaturityMonthYear() bool
HasMaturityMonthYear returns true if MaturityMonthYear is present, Tag 200.
func (NoRelatedSym) HasOptAttribute ¶
func (m NoRelatedSym) HasOptAttribute() bool
HasOptAttribute returns true if OptAttribute is present, Tag 206.
func (NoRelatedSym) HasPutOrCall ¶
func (m NoRelatedSym) HasPutOrCall() bool
HasPutOrCall returns true if PutOrCall is present, Tag 201.
func (NoRelatedSym) HasRelatdSym ¶
func (m NoRelatedSym) HasRelatdSym() bool
HasRelatdSym returns true if RelatdSym is present, Tag 46.
func (NoRelatedSym) HasSecurityDesc ¶
func (m NoRelatedSym) HasSecurityDesc() bool
HasSecurityDesc returns true if SecurityDesc is present, Tag 107.
func (NoRelatedSym) HasSecurityExchange ¶
func (m NoRelatedSym) HasSecurityExchange() bool
HasSecurityExchange returns true if SecurityExchange is present, Tag 207.
func (NoRelatedSym) HasSecurityID ¶
func (m NoRelatedSym) HasSecurityID() bool
HasSecurityID returns true if SecurityID is present, Tag 48.
func (NoRelatedSym) HasSecurityType ¶
func (m NoRelatedSym) HasSecurityType() bool
HasSecurityType returns true if SecurityType is present, Tag 167.
func (NoRelatedSym) HasStrikePrice ¶
func (m NoRelatedSym) HasStrikePrice() bool
HasStrikePrice returns true if StrikePrice is present, Tag 202.
func (NoRelatedSym) HasSymbolSfx ¶
func (m NoRelatedSym) HasSymbolSfx() bool
HasSymbolSfx returns true if SymbolSfx is present, Tag 65.
func (NoRelatedSym) SetIDSource ¶
func (m NoRelatedSym) SetIDSource(v enum.IDSource)
SetIDSource sets IDSource, Tag 22.
func (NoRelatedSym) SetIssuer ¶
func (m NoRelatedSym) SetIssuer(v string)
SetIssuer sets Issuer, Tag 106.
func (NoRelatedSym) SetMaturityDay ¶
func (m NoRelatedSym) SetMaturityDay(v int)
SetMaturityDay sets MaturityDay, Tag 205.
func (NoRelatedSym) SetMaturityMonthYear ¶
func (m NoRelatedSym) SetMaturityMonthYear(v string)
SetMaturityMonthYear sets MaturityMonthYear, Tag 200.
func (NoRelatedSym) SetOptAttribute ¶
func (m NoRelatedSym) SetOptAttribute(v string)
SetOptAttribute sets OptAttribute, Tag 206.
func (NoRelatedSym) SetPutOrCall ¶
func (m NoRelatedSym) SetPutOrCall(v enum.PutOrCall)
SetPutOrCall sets PutOrCall, Tag 201.
func (NoRelatedSym) SetRelatdSym ¶
func (m NoRelatedSym) SetRelatdSym(v string)
SetRelatdSym sets RelatdSym, Tag 46.
func (NoRelatedSym) SetSecurityDesc ¶
func (m NoRelatedSym) SetSecurityDesc(v string)
SetSecurityDesc sets SecurityDesc, Tag 107.
func (NoRelatedSym) SetSecurityExchange ¶
func (m NoRelatedSym) SetSecurityExchange(v string)
SetSecurityExchange sets SecurityExchange, Tag 207.
func (NoRelatedSym) SetSecurityID ¶
func (m NoRelatedSym) SetSecurityID(v string)
SetSecurityID sets SecurityID, Tag 48.
func (NoRelatedSym) SetSecurityType ¶
func (m NoRelatedSym) SetSecurityType(v enum.SecurityType)
SetSecurityType sets SecurityType, Tag 167.
func (NoRelatedSym) SetStrikePrice ¶
func (m NoRelatedSym) SetStrikePrice(value decimal.Decimal, scale int32)
SetStrikePrice sets StrikePrice, Tag 202.
func (NoRelatedSym) SetSymbolSfx ¶
func (m NoRelatedSym) SetSymbolSfx(v enum.SymbolSfx)
SetSymbolSfx sets SymbolSfx, Tag 65.
type NoRelatedSymRepeatingGroup ¶
type NoRelatedSymRepeatingGroup struct {
*quickfix.RepeatingGroup
}
NoRelatedSymRepeatingGroup is a repeating group, Tag 146.
func NewNoRelatedSymRepeatingGroup ¶
func NewNoRelatedSymRepeatingGroup() NoRelatedSymRepeatingGroup
NewNoRelatedSymRepeatingGroup returns an initialized, NoRelatedSymRepeatingGroup.
func (NoRelatedSymRepeatingGroup) Add ¶
func (m NoRelatedSymRepeatingGroup) Add() NoRelatedSym
Add create and append a new NoRelatedSym to this group.
func (NoRelatedSymRepeatingGroup) Get ¶
func (m NoRelatedSymRepeatingGroup) Get(i int) NoRelatedSym
Get returns the ith NoRelatedSym in the NoRelatedSymRepeatinGroup.