Documentation ¶
Overview ¶
Package securitylist msg type = y.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetLastFragment(v bool)
- func (m *Message) SetNoRelatedSym(v []NoRelatedSym)
- func (m *Message) SetSecurityReqID(v string)
- func (m *Message) SetSecurityRequestResult(v int)
- func (m *Message) SetSecurityResponseID(v string)
- func (m *Message) SetTotNoRelatedSym(v int)
- type NoLegs
- func (m *NoLegs) SetInstrumentLeg(v instrumentleg.InstrumentLeg)
- func (m *NoLegs) SetLegBenchmarkCurveData(v legbenchmarkcurvedata.LegBenchmarkCurveData)
- func (m *NoLegs) SetLegSettlType(v string)
- func (m *NoLegs) SetLegStipulations(v legstipulations.LegStipulations)
- func (m *NoLegs) SetLegSwapType(v int)
- type NoRelatedSym
- func (m *NoRelatedSym) SetCurrency(v string)
- func (m *NoRelatedSym) SetEncodedText(v string)
- func (m *NoRelatedSym) SetEncodedTextLen(v int)
- func (m *NoRelatedSym) SetExpirationCycle(v int)
- func (m *NoRelatedSym) SetFinancingDetails(v financingdetails.FinancingDetails)
- func (m *NoRelatedSym) SetInstrument(v instrument.Instrument)
- func (m *NoRelatedSym) SetInstrumentExtension(v instrumentextension.InstrumentExtension)
- func (m *NoRelatedSym) SetMinTradeVol(v float64)
- func (m *NoRelatedSym) SetNoLegs(v []NoLegs)
- func (m *NoRelatedSym) SetNoUnderlyings(v []NoUnderlyings)
- func (m *NoRelatedSym) SetRoundLot(v float64)
- func (m *NoRelatedSym) SetSpreadOrBenchmarkCurveData(v spreadorbenchmarkcurvedata.SpreadOrBenchmarkCurveData)
- func (m *NoRelatedSym) SetStipulations(v stipulations.Stipulations)
- func (m *NoRelatedSym) SetText(v string)
- func (m *NoRelatedSym) SetTradingSessionID(v string)
- func (m *NoRelatedSym) SetTradingSessionSubID(v string)
- func (m *NoRelatedSym) SetYieldData(v yielddata.YieldData)
- type NoUnderlyings
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"y"` fix44.Header //SecurityReqID is a required field for SecurityList. SecurityReqID string `fix:"320"` //SecurityResponseID is a required field for SecurityList. SecurityResponseID string `fix:"322"` //SecurityRequestResult is a required field for SecurityList. SecurityRequestResult int `fix:"560"` //TotNoRelatedSym is a non-required field for SecurityList. TotNoRelatedSym *int `fix:"393"` //LastFragment is a non-required field for SecurityList. LastFragment *bool `fix:"893"` //NoRelatedSym is a non-required field for SecurityList. NoRelatedSym []NoRelatedSym `fix:"146,omitempty"` fix44.Trailer }
Message is a SecurityList FIX Message
func (*Message) SetLastFragment ¶ added in v0.2.0
func (*Message) SetNoRelatedSym ¶ added in v0.2.0
func (m *Message) SetNoRelatedSym(v []NoRelatedSym)
func (*Message) SetSecurityReqID ¶ added in v0.2.0
func (*Message) SetSecurityRequestResult ¶ added in v0.2.0
func (*Message) SetSecurityResponseID ¶ added in v0.2.0
func (*Message) SetTotNoRelatedSym ¶ added in v0.2.0
type NoLegs ¶
type NoLegs struct { //InstrumentLeg is a non-required component for NoLegs. InstrumentLeg *instrumentleg.InstrumentLeg //LegSwapType is a non-required field for NoLegs. LegSwapType *int `fix:"690"` //LegSettlType is a non-required field for NoLegs. LegSettlType *string `fix:"587"` //LegStipulations is a non-required component for NoLegs. LegStipulations *legstipulations.LegStipulations //LegBenchmarkCurveData is a non-required component for NoLegs. LegBenchmarkCurveData *legbenchmarkcurvedata.LegBenchmarkCurveData }
NoLegs is a repeating group in NoRelatedSym
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)
func (*NoLegs) SetLegBenchmarkCurveData ¶ added in v0.2.0
func (m *NoLegs) SetLegBenchmarkCurveData(v legbenchmarkcurvedata.LegBenchmarkCurveData)
func (*NoLegs) SetLegSettlType ¶ added in v0.2.0
func (*NoLegs) SetLegStipulations ¶ added in v0.2.0
func (m *NoLegs) SetLegStipulations(v legstipulations.LegStipulations)
func (*NoLegs) SetLegSwapType ¶ added in v0.2.0
type NoRelatedSym ¶
type NoRelatedSym struct { //Instrument is a non-required component for NoRelatedSym. Instrument *instrument.Instrument //InstrumentExtension is a non-required component for NoRelatedSym. InstrumentExtension *instrumentextension.InstrumentExtension //FinancingDetails is a non-required component for NoRelatedSym. FinancingDetails *financingdetails.FinancingDetails //NoUnderlyings is a non-required field for NoRelatedSym. NoUnderlyings []NoUnderlyings `fix:"711,omitempty"` //Currency is a non-required field for NoRelatedSym. Currency *string `fix:"15"` //Stipulations is a non-required component for NoRelatedSym. Stipulations *stipulations.Stipulations //NoLegs is a non-required field for NoRelatedSym. NoLegs []NoLegs `fix:"555,omitempty"` //SpreadOrBenchmarkCurveData is a non-required component for NoRelatedSym. SpreadOrBenchmarkCurveData *spreadorbenchmarkcurvedata.SpreadOrBenchmarkCurveData //YieldData is a non-required component for NoRelatedSym. YieldData *yielddata.YieldData //RoundLot is a non-required field for NoRelatedSym. RoundLot *float64 `fix:"561"` //MinTradeVol is a non-required field for NoRelatedSym. MinTradeVol *float64 `fix:"562"` //TradingSessionID is a non-required field for NoRelatedSym. TradingSessionID *string `fix:"336"` //TradingSessionSubID is a non-required field for NoRelatedSym. TradingSessionSubID *string `fix:"625"` //ExpirationCycle is a non-required field for NoRelatedSym. ExpirationCycle *int `fix:"827"` //Text is a non-required field for NoRelatedSym. Text *string `fix:"58"` //EncodedTextLen is a non-required field for NoRelatedSym. EncodedTextLen *int `fix:"354"` //EncodedText is a non-required field for NoRelatedSym. EncodedText *string `fix:"355"` }
NoRelatedSym is a repeating group in SecurityList
func NewNoRelatedSym ¶ added in v0.2.0
func NewNoRelatedSym() *NoRelatedSym
NewNoRelatedSym returns an initialized NoRelatedSym instance
func (*NoRelatedSym) SetCurrency ¶ added in v0.2.0
func (m *NoRelatedSym) SetCurrency(v string)
func (*NoRelatedSym) SetEncodedText ¶ added in v0.2.0
func (m *NoRelatedSym) SetEncodedText(v string)
func (*NoRelatedSym) SetEncodedTextLen ¶ added in v0.2.0
func (m *NoRelatedSym) SetEncodedTextLen(v int)
func (*NoRelatedSym) SetExpirationCycle ¶ added in v0.2.0
func (m *NoRelatedSym) SetExpirationCycle(v int)
func (*NoRelatedSym) SetFinancingDetails ¶ added in v0.2.0
func (m *NoRelatedSym) SetFinancingDetails(v financingdetails.FinancingDetails)
func (*NoRelatedSym) SetInstrument ¶ added in v0.2.0
func (m *NoRelatedSym) SetInstrument(v instrument.Instrument)
func (*NoRelatedSym) SetInstrumentExtension ¶ added in v0.2.0
func (m *NoRelatedSym) SetInstrumentExtension(v instrumentextension.InstrumentExtension)
func (*NoRelatedSym) SetMinTradeVol ¶ added in v0.2.0
func (m *NoRelatedSym) SetMinTradeVol(v float64)
func (*NoRelatedSym) SetNoLegs ¶ added in v0.2.0
func (m *NoRelatedSym) SetNoLegs(v []NoLegs)
func (*NoRelatedSym) SetNoUnderlyings ¶ added in v0.2.0
func (m *NoRelatedSym) SetNoUnderlyings(v []NoUnderlyings)
func (*NoRelatedSym) SetRoundLot ¶ added in v0.2.0
func (m *NoRelatedSym) SetRoundLot(v float64)
func (*NoRelatedSym) SetSpreadOrBenchmarkCurveData ¶ added in v0.2.0
func (m *NoRelatedSym) SetSpreadOrBenchmarkCurveData(v spreadorbenchmarkcurvedata.SpreadOrBenchmarkCurveData)
func (*NoRelatedSym) SetStipulations ¶ added in v0.2.0
func (m *NoRelatedSym) SetStipulations(v stipulations.Stipulations)
func (*NoRelatedSym) SetText ¶ added in v0.2.0
func (m *NoRelatedSym) SetText(v string)
func (*NoRelatedSym) SetTradingSessionID ¶ added in v0.2.0
func (m *NoRelatedSym) SetTradingSessionID(v string)
func (*NoRelatedSym) SetTradingSessionSubID ¶ added in v0.2.0
func (m *NoRelatedSym) SetTradingSessionSubID(v string)
func (*NoRelatedSym) SetYieldData ¶ added in v0.2.0
func (m *NoRelatedSym) SetYieldData(v yielddata.YieldData)
type NoUnderlyings ¶
type NoUnderlyings struct { //UnderlyingInstrument is a non-required component for NoUnderlyings. UnderlyingInstrument *underlyinginstrument.UnderlyingInstrument }
NoUnderlyings is a repeating group in NoRelatedSym
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.