Documentation
¶
Overview ¶
Package quoterequest msg type = R.
Index ¶
- func Route(router RouteOut) (string, string, quickfix.MessageRoute)
- type Message
- type NoRelatedSym
- func (m *NoRelatedSym) SetContractMultiplier(v float64)
- func (m *NoRelatedSym) SetCouponRate(v float64)
- func (m *NoRelatedSym) SetCurrency(v string)
- func (m *NoRelatedSym) SetEncodedIssuer(v string)
- func (m *NoRelatedSym) SetEncodedIssuerLen(v int)
- func (m *NoRelatedSym) SetEncodedSecurityDesc(v string)
- func (m *NoRelatedSym) SetEncodedSecurityDescLen(v int)
- func (m *NoRelatedSym) SetExpireTime(v time.Time)
- func (m *NoRelatedSym) SetFutSettDate(v string)
- func (m *NoRelatedSym) SetFutSettDate2(v string)
- func (m *NoRelatedSym) SetIDSource(v string)
- func (m *NoRelatedSym) SetIssuer(v string)
- func (m *NoRelatedSym) SetMaturityDay(v int)
- func (m *NoRelatedSym) SetMaturityMonthYear(v string)
- func (m *NoRelatedSym) SetOptAttribute(v string)
- func (m *NoRelatedSym) SetOrdType(v string)
- func (m *NoRelatedSym) SetOrderQty(v float64)
- func (m *NoRelatedSym) SetOrderQty2(v float64)
- func (m *NoRelatedSym) SetPrevClosePx(v float64)
- func (m *NoRelatedSym) SetPutOrCall(v int)
- func (m *NoRelatedSym) SetQuoteRequestType(v int)
- func (m *NoRelatedSym) SetSecurityDesc(v string)
- func (m *NoRelatedSym) SetSecurityExchange(v string)
- func (m *NoRelatedSym) SetSecurityID(v string)
- func (m *NoRelatedSym) SetSecurityType(v string)
- func (m *NoRelatedSym) SetSide(v string)
- func (m *NoRelatedSym) SetStrikePrice(v float64)
- func (m *NoRelatedSym) SetSymbol(v string)
- func (m *NoRelatedSym) SetSymbolSfx(v string)
- func (m *NoRelatedSym) SetTradingSessionID(v string)
- func (m *NoRelatedSym) SetTransactTime(v time.Time)
- type RouteOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Message ¶
type Message struct {
FIXMsgType string `fix:"R"`
fix42.Header
//QuoteReqID is a required field for QuoteRequest.
QuoteReqID string `fix:"131"`
//NoRelatedSym is a required field for QuoteRequest.
NoRelatedSym []NoRelatedSym `fix:"146"`
fix42.Trailer
}
Message is a QuoteRequest FIX Message
func New ¶ added in v0.2.0
func New(quotereqid string, norelatedsym []NoRelatedSym) *Message
New returns an initialized QuoteRequest instance
func (*Message) SetNoRelatedSym ¶ added in v0.2.0
func (m *Message) SetNoRelatedSym(v []NoRelatedSym)
func (*Message) SetQuoteReqID ¶ added in v0.2.0
type NoRelatedSym ¶
type NoRelatedSym struct {
//Symbol is a required field for NoRelatedSym.
Symbol string `fix:"55"`
//SymbolSfx is a non-required field for NoRelatedSym.
SymbolSfx *string `fix:"65"`
//SecurityID is a non-required field for NoRelatedSym.
SecurityID *string `fix:"48"`
//IDSource is a non-required field for NoRelatedSym.
IDSource *string `fix:"22"`
//SecurityType is a non-required field for NoRelatedSym.
SecurityType *string `fix:"167"`
//MaturityMonthYear is a non-required field for NoRelatedSym.
MaturityMonthYear *string `fix:"200"`
//MaturityDay is a non-required field for NoRelatedSym.
MaturityDay *int `fix:"205"`
//PutOrCall is a non-required field for NoRelatedSym.
PutOrCall *int `fix:"201"`
//StrikePrice is a non-required field for NoRelatedSym.
StrikePrice *float64 `fix:"202"`
//OptAttribute is a non-required field for NoRelatedSym.
OptAttribute *string `fix:"206"`
//ContractMultiplier is a non-required field for NoRelatedSym.
ContractMultiplier *float64 `fix:"231"`
//CouponRate is a non-required field for NoRelatedSym.
CouponRate *float64 `fix:"223"`
//SecurityExchange is a non-required field for NoRelatedSym.
SecurityExchange *string `fix:"207"`
//Issuer is a non-required field for NoRelatedSym.
Issuer *string `fix:"106"`
//EncodedIssuerLen is a non-required field for NoRelatedSym.
EncodedIssuerLen *int `fix:"348"`
//EncodedIssuer is a non-required field for NoRelatedSym.
EncodedIssuer *string `fix:"349"`
//SecurityDesc is a non-required field for NoRelatedSym.
SecurityDesc *string `fix:"107"`
//EncodedSecurityDescLen is a non-required field for NoRelatedSym.
EncodedSecurityDescLen *int `fix:"350"`
//EncodedSecurityDesc is a non-required field for NoRelatedSym.
EncodedSecurityDesc *string `fix:"351"`
//PrevClosePx is a non-required field for NoRelatedSym.
PrevClosePx *float64 `fix:"140"`
//QuoteRequestType is a non-required field for NoRelatedSym.
QuoteRequestType *int `fix:"303"`
//TradingSessionID is a non-required field for NoRelatedSym.
TradingSessionID *string `fix:"336"`
//Side is a non-required field for NoRelatedSym.
Side *string `fix:"54"`
//OrderQty is a non-required field for NoRelatedSym.
OrderQty *float64 `fix:"38"`
//FutSettDate is a non-required field for NoRelatedSym.
FutSettDate *string `fix:"64"`
//OrdType is a non-required field for NoRelatedSym.
OrdType *string `fix:"40"`
//FutSettDate2 is a non-required field for NoRelatedSym.
FutSettDate2 *string `fix:"193"`
//OrderQty2 is a non-required field for NoRelatedSym.
OrderQty2 *float64 `fix:"192"`
//ExpireTime is a non-required field for NoRelatedSym.
ExpireTime *time.Time `fix:"126"`
//TransactTime is a non-required field for NoRelatedSym.
TransactTime *time.Time `fix:"60"`
//Currency is a non-required field for NoRelatedSym.
Currency *string `fix:"15"`
}
NoRelatedSym is a repeating group in QuoteRequest
func NewNoRelatedSym ¶ added in v0.2.0
func NewNoRelatedSym(symbol string) *NoRelatedSym
NewNoRelatedSym returns an initialized NoRelatedSym instance
func (*NoRelatedSym) SetContractMultiplier ¶ added in v0.2.0
func (m *NoRelatedSym) SetContractMultiplier(v float64)
func (*NoRelatedSym) SetCouponRate ¶ added in v0.2.0
func (m *NoRelatedSym) SetCouponRate(v float64)
func (*NoRelatedSym) SetCurrency ¶ added in v0.2.0
func (m *NoRelatedSym) SetCurrency(v string)
func (*NoRelatedSym) SetEncodedIssuer ¶ added in v0.2.0
func (m *NoRelatedSym) SetEncodedIssuer(v string)
func (*NoRelatedSym) SetEncodedIssuerLen ¶ added in v0.2.0
func (m *NoRelatedSym) SetEncodedIssuerLen(v int)
func (*NoRelatedSym) SetEncodedSecurityDesc ¶ added in v0.2.0
func (m *NoRelatedSym) SetEncodedSecurityDesc(v string)
func (*NoRelatedSym) SetEncodedSecurityDescLen ¶ added in v0.2.0
func (m *NoRelatedSym) SetEncodedSecurityDescLen(v int)
func (*NoRelatedSym) SetExpireTime ¶ added in v0.2.0
func (m *NoRelatedSym) SetExpireTime(v time.Time)
func (*NoRelatedSym) SetFutSettDate ¶ added in v0.2.0
func (m *NoRelatedSym) SetFutSettDate(v string)
func (*NoRelatedSym) SetFutSettDate2 ¶ added in v0.2.0
func (m *NoRelatedSym) SetFutSettDate2(v string)
func (*NoRelatedSym) SetIDSource ¶ added in v0.2.0
func (m *NoRelatedSym) SetIDSource(v string)
func (*NoRelatedSym) SetIssuer ¶ added in v0.2.0
func (m *NoRelatedSym) SetIssuer(v string)
func (*NoRelatedSym) SetMaturityDay ¶ added in v0.2.0
func (m *NoRelatedSym) SetMaturityDay(v int)
func (*NoRelatedSym) SetMaturityMonthYear ¶ added in v0.2.0
func (m *NoRelatedSym) SetMaturityMonthYear(v string)
func (*NoRelatedSym) SetOptAttribute ¶ added in v0.2.0
func (m *NoRelatedSym) SetOptAttribute(v string)
func (*NoRelatedSym) SetOrdType ¶ added in v0.2.0
func (m *NoRelatedSym) SetOrdType(v string)
func (*NoRelatedSym) SetOrderQty ¶ added in v0.2.0
func (m *NoRelatedSym) SetOrderQty(v float64)
func (*NoRelatedSym) SetOrderQty2 ¶ added in v0.2.0
func (m *NoRelatedSym) SetOrderQty2(v float64)
func (*NoRelatedSym) SetPrevClosePx ¶ added in v0.2.0
func (m *NoRelatedSym) SetPrevClosePx(v float64)
func (*NoRelatedSym) SetPutOrCall ¶ added in v0.2.0
func (m *NoRelatedSym) SetPutOrCall(v int)
func (*NoRelatedSym) SetQuoteRequestType ¶ added in v0.2.0
func (m *NoRelatedSym) SetQuoteRequestType(v int)
func (*NoRelatedSym) SetSecurityDesc ¶ added in v0.2.0
func (m *NoRelatedSym) SetSecurityDesc(v string)
func (*NoRelatedSym) SetSecurityExchange ¶ added in v0.2.0
func (m *NoRelatedSym) SetSecurityExchange(v string)
func (*NoRelatedSym) SetSecurityID ¶ added in v0.2.0
func (m *NoRelatedSym) SetSecurityID(v string)
func (*NoRelatedSym) SetSecurityType ¶ added in v0.2.0
func (m *NoRelatedSym) SetSecurityType(v string)
func (*NoRelatedSym) SetSide ¶ added in v0.2.0
func (m *NoRelatedSym) SetSide(v string)
func (*NoRelatedSym) SetStrikePrice ¶ added in v0.2.0
func (m *NoRelatedSym) SetStrikePrice(v float64)
func (*NoRelatedSym) SetSymbol ¶ added in v0.2.0
func (m *NoRelatedSym) SetSymbol(v string)
func (*NoRelatedSym) SetSymbolSfx ¶ added in v0.2.0
func (m *NoRelatedSym) SetSymbolSfx(v string)
func (*NoRelatedSym) SetTradingSessionID ¶ added in v0.2.0
func (m *NoRelatedSym) SetTradingSessionID(v string)
func (*NoRelatedSym) SetTransactTime ¶ added in v0.2.0
func (m *NoRelatedSym) SetTransactTime(v time.Time)
Click to show internal directories.
Click to hide internal directories.