Documentation ¶
Overview ¶
Package news msg type = B.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetEncodedHeadline(v string)
- func (m *Message) SetEncodedHeadlineLen(v int)
- func (m *Message) SetHeadline(v string)
- func (m *Message) SetNoLegs(v []NoLegs)
- func (m *Message) SetNoLinesOfText(v []NoLinesOfText)
- func (m *Message) SetNoRelatedSym(v []NoRelatedSym)
- func (m *Message) SetNoRoutingIDs(v []NoRoutingIDs)
- func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
- func (m *Message) SetOrigTime(v time.Time)
- func (m *Message) SetRawData(v string)
- func (m *Message) SetRawDataLength(v int)
- func (m *Message) SetURLLink(v string)
- func (m *Message) SetUrgency(v string)
- type NoLegs
- type NoLinesOfText
- type NoRelatedSym
- type NoRoutingIDs
- type NoUnderlyings
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"B"` fix44.Header //OrigTime is a non-required field for News. OrigTime *time.Time `fix:"42"` //Urgency is a non-required field for News. Urgency *string `fix:"61"` //Headline is a required field for News. Headline string `fix:"148"` //EncodedHeadlineLen is a non-required field for News. EncodedHeadlineLen *int `fix:"358"` //EncodedHeadline is a non-required field for News. EncodedHeadline *string `fix:"359"` //NoRoutingIDs is a non-required field for News. NoRoutingIDs []NoRoutingIDs `fix:"215,omitempty"` //NoRelatedSym is a non-required field for News. NoRelatedSym []NoRelatedSym `fix:"146,omitempty"` //NoLegs is a non-required field for News. NoLegs []NoLegs `fix:"555,omitempty"` //NoUnderlyings is a non-required field for News. NoUnderlyings []NoUnderlyings `fix:"711,omitempty"` //NoLinesOfText is a required field for News. NoLinesOfText []NoLinesOfText `fix:"33"` //URLLink is a non-required field for News. URLLink *string `fix:"149"` //RawDataLength is a non-required field for News. RawDataLength *int `fix:"95"` //RawData is a non-required field for News. RawData *string `fix:"96"` fix44.Trailer }
Message is a News FIX Message
func New ¶ added in v0.2.0
func New(headline string, nolinesoftext []NoLinesOfText) *Message
New returns an initialized News instance
func (*Message) SetEncodedHeadline ¶ added in v0.2.0
func (*Message) SetEncodedHeadlineLen ¶ added in v0.2.0
func (*Message) SetHeadline ¶ added in v0.2.0
func (*Message) SetNoLinesOfText ¶ added in v0.2.0
func (m *Message) SetNoLinesOfText(v []NoLinesOfText)
func (*Message) SetNoRelatedSym ¶ added in v0.2.0
func (m *Message) SetNoRelatedSym(v []NoRelatedSym)
func (*Message) SetNoRoutingIDs ¶ added in v0.2.0
func (m *Message) SetNoRoutingIDs(v []NoRoutingIDs)
func (*Message) SetNoUnderlyings ¶ added in v0.2.0
func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
func (*Message) SetOrigTime ¶ added in v0.2.0
func (*Message) SetRawData ¶ added in v0.2.0
func (*Message) SetRawDataLength ¶ added in v0.2.0
func (*Message) SetURLLink ¶ added in v0.2.0
func (*Message) SetUrgency ¶ added in v0.2.0
type NoLegs ¶
type NoLegs struct { //InstrumentLeg is a non-required component for NoLegs. InstrumentLeg *instrumentleg.InstrumentLeg }
NoLegs is a repeating group in News
func NewNoLegs ¶ added in v0.2.0
func NewNoLegs() *NoLegs
NewNoLegs returns an initialized NoLegs instance
func (*NoLegs) SetInstrumentLeg ¶ added in v0.2.0
func (m *NoLegs) SetInstrumentLeg(v instrumentleg.InstrumentLeg)
type NoLinesOfText ¶
type NoLinesOfText struct { //Text is a required field for NoLinesOfText. Text string `fix:"58"` //EncodedTextLen is a non-required field for NoLinesOfText. EncodedTextLen *int `fix:"354"` //EncodedText is a non-required field for NoLinesOfText. EncodedText *string `fix:"355"` }
NoLinesOfText is a repeating group in News
func NewNoLinesOfText ¶ added in v0.2.0
func NewNoLinesOfText(text string) *NoLinesOfText
NewNoLinesOfText returns an initialized NoLinesOfText instance
func (*NoLinesOfText) SetEncodedText ¶ added in v0.2.0
func (m *NoLinesOfText) SetEncodedText(v string)
func (*NoLinesOfText) SetEncodedTextLen ¶ added in v0.2.0
func (m *NoLinesOfText) SetEncodedTextLen(v int)
func (*NoLinesOfText) SetText ¶ added in v0.2.0
func (m *NoLinesOfText) SetText(v string)
type NoRelatedSym ¶
type NoRelatedSym struct { //Instrument is a non-required component for NoRelatedSym. Instrument *instrument.Instrument }
NoRelatedSym is a repeating group in News
func NewNoRelatedSym ¶ added in v0.2.0
func NewNoRelatedSym() *NoRelatedSym
NewNoRelatedSym returns an initialized NoRelatedSym instance
func (*NoRelatedSym) SetInstrument ¶ added in v0.2.0
func (m *NoRelatedSym) SetInstrument(v instrument.Instrument)
type NoRoutingIDs ¶
type NoRoutingIDs struct { //RoutingType is a non-required field for NoRoutingIDs. RoutingType *int `fix:"216"` //RoutingID is a non-required field for NoRoutingIDs. RoutingID *string `fix:"217"` }
NoRoutingIDs is a repeating group in News
func NewNoRoutingIDs ¶ added in v0.2.0
func NewNoRoutingIDs() *NoRoutingIDs
NewNoRoutingIDs returns an initialized NoRoutingIDs instance
func (*NoRoutingIDs) SetRoutingID ¶ added in v0.2.0
func (m *NoRoutingIDs) SetRoutingID(v string)
func (*NoRoutingIDs) SetRoutingType ¶ added in v0.2.0
func (m *NoRoutingIDs) SetRoutingType(v int)
type NoUnderlyings ¶
type NoUnderlyings struct { //UnderlyingInstrument is a non-required component for NoUnderlyings. UnderlyingInstrument *underlyinginstrument.UnderlyingInstrument }
NoUnderlyings is a repeating group in News
func NewNoUnderlyings ¶ added in v0.2.0
func NewNoUnderlyings() *NoUnderlyings
NewNoUnderlyings returns an initialized NoUnderlyings instance
func (*NoUnderlyings) SetUnderlyingInstrument ¶ added in v0.2.0
func (m *NoUnderlyings) SetUnderlyingInstrument(v underlyinginstrument.UnderlyingInstrument)
Click to show internal directories.
Click to hide internal directories.