Documentation ¶
Overview ¶
Package advertisement msg type = 7.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- func (m Message) Marshal() quickfix.Message
- func (m *Message) SetAdvId(v string)
- func (m *Message) SetAdvRefID(v string)
- func (m *Message) SetAdvSide(v string)
- func (m *Message) SetAdvTransType(v string)
- func (m *Message) SetCurrency(v string)
- func (m *Message) SetEncodedText(v string)
- func (m *Message) SetEncodedTextLen(v int)
- func (m *Message) SetInstrmtLegGrp(v instrmtleggrp.InstrmtLegGrp)
- func (m *Message) SetInstrument(v instrument.Instrument)
- func (m *Message) SetLastMkt(v string)
- func (m *Message) SetPrice(v float64)
- func (m *Message) SetQtyType(v int)
- func (m *Message) SetQuantity(v float64)
- func (m *Message) SetText(v string)
- func (m *Message) SetTradeDate(v string)
- func (m *Message) SetTradingSessionID(v string)
- func (m *Message) SetTradingSessionSubID(v string)
- func (m *Message) SetTransactTime(v time.Time)
- func (m *Message) SetURLLink(v string)
- func (m *Message) SetUndInstrmtGrp(v undinstrmtgrp.UndInstrmtGrp)
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct { FIXMsgType string `fix:"7"` fixt11.Header //AdvId is a required field for Advertisement. AdvId string `fix:"2"` //AdvTransType is a required field for Advertisement. AdvTransType string `fix:"5"` //AdvRefID is a non-required field for Advertisement. AdvRefID *string `fix:"3"` //Instrument is a required component for Advertisement. instrument.Instrument //InstrmtLegGrp is a non-required component for Advertisement. InstrmtLegGrp *instrmtleggrp.InstrmtLegGrp //UndInstrmtGrp is a non-required component for Advertisement. UndInstrmtGrp *undinstrmtgrp.UndInstrmtGrp //AdvSide is a required field for Advertisement. AdvSide string `fix:"4"` //Quantity is a required field for Advertisement. Quantity float64 `fix:"53"` //QtyType is a non-required field for Advertisement. QtyType *int `fix:"854"` //Price is a non-required field for Advertisement. Price *float64 `fix:"44"` //Currency is a non-required field for Advertisement. Currency *string `fix:"15"` //TradeDate is a non-required field for Advertisement. TradeDate *string `fix:"75"` //TransactTime is a non-required field for Advertisement. TransactTime *time.Time `fix:"60"` //Text is a non-required field for Advertisement. Text *string `fix:"58"` //EncodedTextLen is a non-required field for Advertisement. EncodedTextLen *int `fix:"354"` //EncodedText is a non-required field for Advertisement. EncodedText *string `fix:"355"` //URLLink is a non-required field for Advertisement. URLLink *string `fix:"149"` //LastMkt is a non-required field for Advertisement. LastMkt *string `fix:"30"` //TradingSessionID is a non-required field for Advertisement. TradingSessionID *string `fix:"336"` //TradingSessionSubID is a non-required field for Advertisement. TradingSessionSubID *string `fix:"625"` fixt11.Trailer }
Message is a Advertisement FIX Message
func New ¶ added in v0.2.0
func New(advid string, advtranstype string, instrument instrument.Instrument, advside string, quantity float64) *Message
New returns an initialized Advertisement instance
func (*Message) SetAdvRefID ¶ added in v0.2.0
func (*Message) SetAdvSide ¶ added in v0.2.0
func (*Message) SetAdvTransType ¶ added in v0.2.0
func (*Message) SetCurrency ¶ added in v0.2.0
func (*Message) SetEncodedText ¶ added in v0.2.0
func (*Message) SetEncodedTextLen ¶ 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) SetLastMkt ¶ added in v0.2.0
func (*Message) SetQtyType ¶ added in v0.2.0
func (*Message) SetQuantity ¶ added in v0.2.0
func (*Message) SetTradeDate ¶ 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) SetURLLink ¶ added in v0.2.0
func (*Message) SetUndInstrmtGrp ¶ added in v0.2.0
func (m *Message) SetUndInstrmtGrp(v undinstrmtgrp.UndInstrmtGrp)
Click to show internal directories.
Click to hide internal directories.