Documentation ¶
Overview ¶
Package securitystatus msg type = f.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetAdjustment(v int)
- func (m *Message) SetBuyVolume(v float64)
- func (m *Message) SetCorporateAction(v string)
- func (m *Message) SetCurrency(v string)
- func (m *Message) SetDueToRelated(v bool)
- func (m *Message) SetEncodedText(v string)
- func (m *Message) SetEncodedTextLen(v int)
- func (m *Message) SetFinancialStatus(v string)
- func (m *Message) SetHaltReasonChar(v string)
- func (m *Message) SetHighPx(v float64)
- func (m *Message) SetInViewOfCommon(v bool)
- func (m *Message) SetInstrument(v instrument.Instrument)
- func (m *Message) SetInstrumentExtension(v instrumentextension.InstrumentExtension)
- func (m *Message) SetLastPx(v float64)
- func (m *Message) SetLowPx(v float64)
- func (m *Message) SetNoLegs(v []NoLegs)
- func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
- func (m *Message) SetSecurityStatusReqID(v string)
- func (m *Message) SetSecurityTradingStatus(v int)
- func (m *Message) SetSellVolume(v float64)
- func (m *Message) SetText(v string)
- func (m *Message) SetTradingSessionID(v string)
- func (m *Message) SetTradingSessionSubID(v string)
- func (m *Message) SetTransactTime(v time.Time)
- func (m *Message) SetUnsolicitedIndicator(v bool)
- type NoLegs
- type NoUnderlyings
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"f"` fix44.Header //SecurityStatusReqID is a non-required field for SecurityStatus. SecurityStatusReqID *string `fix:"324"` //Instrument is a required component for SecurityStatus. instrument.Instrument //InstrumentExtension is a non-required component for SecurityStatus. InstrumentExtension *instrumentextension.InstrumentExtension //NoUnderlyings is a non-required field for SecurityStatus. NoUnderlyings []NoUnderlyings `fix:"711,omitempty"` //NoLegs is a non-required field for SecurityStatus. NoLegs []NoLegs `fix:"555,omitempty"` //Currency is a non-required field for SecurityStatus. Currency *string `fix:"15"` //TradingSessionID is a non-required field for SecurityStatus. TradingSessionID *string `fix:"336"` //TradingSessionSubID is a non-required field for SecurityStatus. TradingSessionSubID *string `fix:"625"` //UnsolicitedIndicator is a non-required field for SecurityStatus. UnsolicitedIndicator *bool `fix:"325"` //SecurityTradingStatus is a non-required field for SecurityStatus. SecurityTradingStatus *int `fix:"326"` //FinancialStatus is a non-required field for SecurityStatus. FinancialStatus *string `fix:"291"` //CorporateAction is a non-required field for SecurityStatus. CorporateAction *string `fix:"292"` //HaltReasonChar is a non-required field for SecurityStatus. HaltReasonChar *string `fix:"327"` //InViewOfCommon is a non-required field for SecurityStatus. InViewOfCommon *bool `fix:"328"` //DueToRelated is a non-required field for SecurityStatus. DueToRelated *bool `fix:"329"` //BuyVolume is a non-required field for SecurityStatus. BuyVolume *float64 `fix:"330"` //SellVolume is a non-required field for SecurityStatus. SellVolume *float64 `fix:"331"` //HighPx is a non-required field for SecurityStatus. HighPx *float64 `fix:"332"` //LowPx is a non-required field for SecurityStatus. LowPx *float64 `fix:"333"` //LastPx is a non-required field for SecurityStatus. LastPx *float64 `fix:"31"` //TransactTime is a non-required field for SecurityStatus. TransactTime *time.Time `fix:"60"` //Adjustment is a non-required field for SecurityStatus. Adjustment *int `fix:"334"` //Text is a non-required field for SecurityStatus. Text *string `fix:"58"` //EncodedTextLen is a non-required field for SecurityStatus. EncodedTextLen *int `fix:"354"` //EncodedText is a non-required field for SecurityStatus. EncodedText *string `fix:"355"` fix44.Trailer }
Message is a SecurityStatus FIX Message
func New ¶ added in v0.2.0
func New(instrument instrument.Instrument) *Message
New returns an initialized SecurityStatus instance
func (*Message) SetAdjustment ¶ added in v0.2.0
func (*Message) SetBuyVolume ¶ added in v0.2.0
func (*Message) SetCorporateAction ¶ added in v0.2.0
func (*Message) SetCurrency ¶ added in v0.2.0
func (*Message) SetDueToRelated ¶ added in v0.2.0
func (*Message) SetEncodedText ¶ added in v0.2.0
func (*Message) SetEncodedTextLen ¶ added in v0.2.0
func (*Message) SetFinancialStatus ¶ added in v0.2.0
func (*Message) SetHaltReasonChar ¶ added in v0.2.0
func (*Message) SetInViewOfCommon ¶ added in v0.2.0
func (*Message) SetInstrument ¶ added in v0.2.0
func (m *Message) SetInstrument(v instrument.Instrument)
func (*Message) SetInstrumentExtension ¶ added in v0.2.0
func (m *Message) SetInstrumentExtension(v instrumentextension.InstrumentExtension)
func (*Message) SetNoUnderlyings ¶ added in v0.2.0
func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
func (*Message) SetSecurityStatusReqID ¶ added in v0.2.0
func (*Message) SetSecurityTradingStatus ¶ added in v0.2.0
func (*Message) SetSellVolume ¶ added in v0.2.0
func (*Message) SetTradingSessionID ¶ added in v0.2.0
func (*Message) SetTradingSessionSubID ¶ added in v0.2.0
func (*Message) SetTransactTime ¶ added in v0.2.0
func (*Message) SetUnsolicitedIndicator ¶ 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 SecurityStatus
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 NoUnderlyings ¶
type NoUnderlyings struct { //UnderlyingInstrument is a non-required component for NoUnderlyings. UnderlyingInstrument *underlyinginstrument.UnderlyingInstrument }
NoUnderlyings is a repeating group in SecurityStatus
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.