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) SetFirstPx(v float64)
- func (m *Message) SetHaltReasonChar(v string)
- func (m *Message) SetHighPx(v float64)
- func (m *Message) SetInViewOfCommon(v bool)
- func (m *Message) SetInstrmtLegGrp(v instrmtleggrp.InstrmtLegGrp)
- 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) 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) SetUndInstrmtGrp(v undinstrmtgrp.UndInstrmtGrp)
- func (m *Message) SetUnsolicitedIndicator(v bool)
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"f"` fixt11.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 //UndInstrmtGrp is a non-required component for SecurityStatus. UndInstrmtGrp *undinstrmtgrp.UndInstrmtGrp //InstrmtLegGrp is a non-required component for SecurityStatus. InstrmtLegGrp *instrmtleggrp.InstrmtLegGrp //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"` //FirstPx is a non-required field for SecurityStatus. FirstPx *float64 `fix:"1025"` fixt11.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) SetFirstPx ¶ added in v0.2.0
func (*Message) SetHaltReasonChar ¶ added in v0.2.0
func (*Message) SetInViewOfCommon ¶ added in v0.2.0
func (*Message) SetInstrmtLegGrp ¶ added in v0.2.0
func (m *Message) SetInstrmtLegGrp(v instrmtleggrp.InstrmtLegGrp)
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) 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) SetUndInstrmtGrp ¶ added in v0.2.0
func (m *Message) SetUndInstrmtGrp(v undinstrmtgrp.UndInstrmtGrp)
func (*Message) SetUnsolicitedIndicator ¶ added in v0.2.0
Click to show internal directories.
Click to hide internal directories.