Documentation ¶
Overview ¶
Package orderstatusrequest msg type = H.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetAccount(v string)
- func (m *Message) SetAcctIDSource(v int)
- func (m *Message) SetClOrdID(v string)
- func (m *Message) SetClOrdLinkID(v string)
- func (m *Message) SetFinancingDetails(v financingdetails.FinancingDetails)
- func (m *Message) SetInstrument(v instrument.Instrument)
- func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
- func (m *Message) SetOrdStatusReqID(v string)
- func (m *Message) SetOrderID(v string)
- func (m *Message) SetParties(v parties.Parties)
- func (m *Message) SetSecondaryClOrdID(v string)
- func (m *Message) SetSide(v string)
- type NoUnderlyings
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"H"` fix44.Header //OrderID is a non-required field for OrderStatusRequest. OrderID *string `fix:"37"` //ClOrdID is a required field for OrderStatusRequest. ClOrdID string `fix:"11"` //SecondaryClOrdID is a non-required field for OrderStatusRequest. SecondaryClOrdID *string `fix:"526"` //ClOrdLinkID is a non-required field for OrderStatusRequest. ClOrdLinkID *string `fix:"583"` //Parties is a non-required component for OrderStatusRequest. Parties *parties.Parties //OrdStatusReqID is a non-required field for OrderStatusRequest. OrdStatusReqID *string `fix:"790"` //Account is a non-required field for OrderStatusRequest. Account *string `fix:"1"` //AcctIDSource is a non-required field for OrderStatusRequest. AcctIDSource *int `fix:"660"` //Instrument is a required component for OrderStatusRequest. instrument.Instrument //FinancingDetails is a non-required component for OrderStatusRequest. FinancingDetails *financingdetails.FinancingDetails //NoUnderlyings is a non-required field for OrderStatusRequest. NoUnderlyings []NoUnderlyings `fix:"711,omitempty"` //Side is a required field for OrderStatusRequest. Side string `fix:"54"` fix44.Trailer }
Message is a OrderStatusRequest FIX Message
func New ¶ added in v0.2.0
func New(clordid string, instrument instrument.Instrument, side string) *Message
New returns an initialized OrderStatusRequest instance
func (*Message) SetAccount ¶ added in v0.2.0
func (*Message) SetAcctIDSource ¶ added in v0.2.0
func (*Message) SetClOrdID ¶ added in v0.2.0
func (*Message) SetClOrdLinkID ¶ added in v0.2.0
func (*Message) SetFinancingDetails ¶ added in v0.2.0
func (m *Message) SetFinancingDetails(v financingdetails.FinancingDetails)
func (*Message) SetInstrument ¶ added in v0.2.0
func (m *Message) SetInstrument(v instrument.Instrument)
func (*Message) SetNoUnderlyings ¶ added in v0.2.0
func (m *Message) SetNoUnderlyings(v []NoUnderlyings)
func (*Message) SetOrdStatusReqID ¶ added in v0.2.0
func (*Message) SetOrderID ¶ added in v0.2.0
func (*Message) SetParties ¶ added in v0.2.0
func (*Message) SetSecondaryClOrdID ¶ added in v0.2.0
type NoUnderlyings ¶
type NoUnderlyings struct { //UnderlyingInstrument is a non-required component for NoUnderlyings. UnderlyingInstrument *underlyinginstrument.UnderlyingInstrument }
NoUnderlyings is a repeating group in OrderStatusRequest
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.