massquote

package
v0.6.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 6, 2022 License: Apache-1.1 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Route

func Route(router RouteOut) (string, string, quickfix.MessageRoute)

Route returns the beginstring, message type, and MessageRoute for this Message type.

Types

type MassQuote added in v0.4.0

type MassQuote struct {
	fix43.Header
	*quickfix.Body
	fix43.Trailer
	Message *quickfix.Message
}

MassQuote is the fix43 MassQuote type, MsgType = i.

func FromMessage added in v0.4.0

func FromMessage(m *quickfix.Message) MassQuote

FromMessage creates a MassQuote from a quickfix.Message instance.

func New added in v0.2.0

func New(quoteid field.QuoteIDField) (m MassQuote)

New returns a MassQuote initialized with the required fields for MassQuote.

func (MassQuote) GetAccount added in v0.4.0

func (m MassQuote) GetAccount() (v string, err quickfix.MessageRejectError)

GetAccount gets Account, Tag 1.

func (MassQuote) GetAccountType added in v0.4.0

func (m MassQuote) GetAccountType() (v enum.AccountType, err quickfix.MessageRejectError)

GetAccountType gets AccountType, Tag 581.

func (MassQuote) GetDefBidSize added in v0.4.0

func (m MassQuote) GetDefBidSize() (v decimal.Decimal, err quickfix.MessageRejectError)

GetDefBidSize gets DefBidSize, Tag 293.

func (MassQuote) GetDefOfferSize added in v0.4.0

func (m MassQuote) GetDefOfferSize() (v decimal.Decimal, err quickfix.MessageRejectError)

GetDefOfferSize gets DefOfferSize, Tag 294.

func (MassQuote) GetNoPartyIDs added in v0.4.0

GetNoPartyIDs gets NoPartyIDs, Tag 453.

func (MassQuote) GetNoQuoteSets added in v0.4.0

GetNoQuoteSets gets NoQuoteSets, Tag 296.

func (MassQuote) GetQuoteID added in v0.4.0

func (m MassQuote) GetQuoteID() (v string, err quickfix.MessageRejectError)

GetQuoteID gets QuoteID, Tag 117.

func (MassQuote) GetQuoteReqID added in v0.4.0

func (m MassQuote) GetQuoteReqID() (v string, err quickfix.MessageRejectError)

GetQuoteReqID gets QuoteReqID, Tag 131.

func (MassQuote) GetQuoteResponseLevel added in v0.4.0

func (m MassQuote) GetQuoteResponseLevel() (v enum.QuoteResponseLevel, err quickfix.MessageRejectError)

GetQuoteResponseLevel gets QuoteResponseLevel, Tag 301.

func (MassQuote) GetQuoteType added in v0.4.0

func (m MassQuote) GetQuoteType() (v enum.QuoteType, err quickfix.MessageRejectError)

GetQuoteType gets QuoteType, Tag 537.

func (MassQuote) HasAccount added in v0.4.0

func (m MassQuote) HasAccount() bool

HasAccount returns true if Account is present, Tag 1.

func (MassQuote) HasAccountType added in v0.4.0

func (m MassQuote) HasAccountType() bool

HasAccountType returns true if AccountType is present, Tag 581.

func (MassQuote) HasDefBidSize added in v0.4.0

func (m MassQuote) HasDefBidSize() bool

HasDefBidSize returns true if DefBidSize is present, Tag 293.

func (MassQuote) HasDefOfferSize added in v0.4.0

func (m MassQuote) HasDefOfferSize() bool

HasDefOfferSize returns true if DefOfferSize is present, Tag 294.

func (MassQuote) HasNoPartyIDs added in v0.4.0

func (m MassQuote) HasNoPartyIDs() bool

HasNoPartyIDs returns true if NoPartyIDs is present, Tag 453.

func (MassQuote) HasNoQuoteSets added in v0.4.0

func (m MassQuote) HasNoQuoteSets() bool

HasNoQuoteSets returns true if NoQuoteSets is present, Tag 296.

func (MassQuote) HasQuoteID added in v0.4.0

func (m MassQuote) HasQuoteID() bool

HasQuoteID returns true if QuoteID is present, Tag 117.

func (MassQuote) HasQuoteReqID added in v0.4.0

func (m MassQuote) HasQuoteReqID() bool

HasQuoteReqID returns true if QuoteReqID is present, Tag 131.

func (MassQuote) HasQuoteResponseLevel added in v0.4.0

func (m MassQuote) HasQuoteResponseLevel() bool

HasQuoteResponseLevel returns true if QuoteResponseLevel is present, Tag 301.

func (MassQuote) HasQuoteType added in v0.4.0

func (m MassQuote) HasQuoteType() bool

HasQuoteType returns true if QuoteType is present, Tag 537.

func (MassQuote) SetAccount added in v0.4.0

func (m MassQuote) SetAccount(v string)

SetAccount sets Account, Tag 1.

func (MassQuote) SetAccountType added in v0.4.0

func (m MassQuote) SetAccountType(v enum.AccountType)

SetAccountType sets AccountType, Tag 581.

func (MassQuote) SetDefBidSize added in v0.4.0

func (m MassQuote) SetDefBidSize(value decimal.Decimal, scale int32)

SetDefBidSize sets DefBidSize, Tag 293.

func (MassQuote) SetDefOfferSize added in v0.4.0

func (m MassQuote) SetDefOfferSize(value decimal.Decimal, scale int32)

SetDefOfferSize sets DefOfferSize, Tag 294.

func (MassQuote) SetNoPartyIDs added in v0.4.0

func (m MassQuote) SetNoPartyIDs(f NoPartyIDsRepeatingGroup)

SetNoPartyIDs sets NoPartyIDs, Tag 453.

func (MassQuote) SetNoQuoteSets added in v0.4.0

func (m MassQuote) SetNoQuoteSets(f NoQuoteSetsRepeatingGroup)

SetNoQuoteSets sets NoQuoteSets, Tag 296.

func (MassQuote) SetQuoteID added in v0.4.0

func (m MassQuote) SetQuoteID(v string)

SetQuoteID sets QuoteID, Tag 117.

func (MassQuote) SetQuoteReqID added in v0.4.0

func (m MassQuote) SetQuoteReqID(v string)

SetQuoteReqID sets QuoteReqID, Tag 131.

func (MassQuote) SetQuoteResponseLevel added in v0.4.0

func (m MassQuote) SetQuoteResponseLevel(v enum.QuoteResponseLevel)

SetQuoteResponseLevel sets QuoteResponseLevel, Tag 301.

func (MassQuote) SetQuoteType added in v0.4.0

func (m MassQuote) SetQuoteType(v enum.QuoteType)

SetQuoteType sets QuoteType, Tag 537.

func (MassQuote) ToMessage added in v0.4.0

func (m MassQuote) ToMessage() *quickfix.Message

ToMessage returns a quickfix.Message instance.

type NoPartyIDs added in v0.4.0

type NoPartyIDs struct {
	*quickfix.Group
}

NoPartyIDs is a repeating group element, Tag 453.

func (NoPartyIDs) GetPartyID added in v0.4.0

func (m NoPartyIDs) GetPartyID() (v string, err quickfix.MessageRejectError)

GetPartyID gets PartyID, Tag 448.

func (NoPartyIDs) GetPartyIDSource added in v0.4.0

func (m NoPartyIDs) GetPartyIDSource() (v enum.PartyIDSource, err quickfix.MessageRejectError)

GetPartyIDSource gets PartyIDSource, Tag 447.

func (NoPartyIDs) GetPartyRole added in v0.4.0

func (m NoPartyIDs) GetPartyRole() (v enum.PartyRole, err quickfix.MessageRejectError)

GetPartyRole gets PartyRole, Tag 452.

func (NoPartyIDs) GetPartySubID added in v0.4.0

func (m NoPartyIDs) GetPartySubID() (v string, err quickfix.MessageRejectError)

GetPartySubID gets PartySubID, Tag 523.

func (NoPartyIDs) HasPartyID added in v0.4.0

func (m NoPartyIDs) HasPartyID() bool

HasPartyID returns true if PartyID is present, Tag 448.

func (NoPartyIDs) HasPartyIDSource added in v0.4.0

func (m NoPartyIDs) HasPartyIDSource() bool

HasPartyIDSource returns true if PartyIDSource is present, Tag 447.

func (NoPartyIDs) HasPartyRole added in v0.4.0

func (m NoPartyIDs) HasPartyRole() bool

HasPartyRole returns true if PartyRole is present, Tag 452.

func (NoPartyIDs) HasPartySubID added in v0.4.0

func (m NoPartyIDs) HasPartySubID() bool

HasPartySubID returns true if PartySubID is present, Tag 523.

func (NoPartyIDs) SetPartyID added in v0.4.0

func (m NoPartyIDs) SetPartyID(v string)

SetPartyID sets PartyID, Tag 448.

func (NoPartyIDs) SetPartyIDSource added in v0.4.0

func (m NoPartyIDs) SetPartyIDSource(v enum.PartyIDSource)

SetPartyIDSource sets PartyIDSource, Tag 447.

func (NoPartyIDs) SetPartyRole added in v0.4.0

func (m NoPartyIDs) SetPartyRole(v enum.PartyRole)

SetPartyRole sets PartyRole, Tag 452.

func (NoPartyIDs) SetPartySubID added in v0.4.0

func (m NoPartyIDs) SetPartySubID(v string)

SetPartySubID sets PartySubID, Tag 523.

type NoPartyIDsRepeatingGroup added in v0.4.0

type NoPartyIDsRepeatingGroup struct {
	*quickfix.RepeatingGroup
}

NoPartyIDsRepeatingGroup is a repeating group, Tag 453.

func NewNoPartyIDsRepeatingGroup added in v0.4.0

func NewNoPartyIDsRepeatingGroup() NoPartyIDsRepeatingGroup

NewNoPartyIDsRepeatingGroup returns an initialized, NoPartyIDsRepeatingGroup.

func (NoPartyIDsRepeatingGroup) Add added in v0.4.0

Add create and append a new NoPartyIDs to this group.

func (NoPartyIDsRepeatingGroup) Get added in v0.4.0

Get returns the ith NoPartyIDs in the NoPartyIDsRepeatinGroup.

type NoQuoteEntries

type NoQuoteEntries struct {
	*quickfix.Group
}

NoQuoteEntries is a repeating group element, Tag 295.

func (NoQuoteEntries) GetBidForwardPoints added in v0.4.0

func (m NoQuoteEntries) GetBidForwardPoints() (v decimal.Decimal, err quickfix.MessageRejectError)

GetBidForwardPoints gets BidForwardPoints, Tag 189.

func (NoQuoteEntries) GetBidForwardPoints2 added in v0.4.0

func (m NoQuoteEntries) GetBidForwardPoints2() (v decimal.Decimal, err quickfix.MessageRejectError)

GetBidForwardPoints2 gets BidForwardPoints2, Tag 642.

func (NoQuoteEntries) GetBidPx added in v0.4.0

GetBidPx gets BidPx, Tag 132.

func (NoQuoteEntries) GetBidSize added in v0.4.0

func (m NoQuoteEntries) GetBidSize() (v decimal.Decimal, err quickfix.MessageRejectError)

GetBidSize gets BidSize, Tag 134.

func (NoQuoteEntries) GetBidSpotRate added in v0.4.0

func (m NoQuoteEntries) GetBidSpotRate() (v decimal.Decimal, err quickfix.MessageRejectError)

GetBidSpotRate gets BidSpotRate, Tag 188.

func (NoQuoteEntries) GetBidYield added in v0.4.0

func (m NoQuoteEntries) GetBidYield() (v decimal.Decimal, err quickfix.MessageRejectError)

GetBidYield gets BidYield, Tag 632.

func (NoQuoteEntries) GetCFICode added in v0.4.0

func (m NoQuoteEntries) GetCFICode() (v string, err quickfix.MessageRejectError)

GetCFICode gets CFICode, Tag 461.

func (NoQuoteEntries) GetContractMultiplier added in v0.4.0

func (m NoQuoteEntries) GetContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError)

GetContractMultiplier gets ContractMultiplier, Tag 231.

func (NoQuoteEntries) GetCountryOfIssue added in v0.4.0

func (m NoQuoteEntries) GetCountryOfIssue() (v string, err quickfix.MessageRejectError)

GetCountryOfIssue gets CountryOfIssue, Tag 470.

func (NoQuoteEntries) GetCouponPaymentDate added in v0.4.0

func (m NoQuoteEntries) GetCouponPaymentDate() (v string, err quickfix.MessageRejectError)

GetCouponPaymentDate gets CouponPaymentDate, Tag 224.

func (NoQuoteEntries) GetCouponRate added in v0.4.0

func (m NoQuoteEntries) GetCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError)

GetCouponRate gets CouponRate, Tag 223.

func (NoQuoteEntries) GetCreditRating added in v0.4.0

func (m NoQuoteEntries) GetCreditRating() (v string, err quickfix.MessageRejectError)

GetCreditRating gets CreditRating, Tag 255.

func (NoQuoteEntries) GetCurrency added in v0.4.0

func (m NoQuoteEntries) GetCurrency() (v string, err quickfix.MessageRejectError)

GetCurrency gets Currency, Tag 15.

func (NoQuoteEntries) GetEncodedIssuer added in v0.4.0

func (m NoQuoteEntries) GetEncodedIssuer() (v string, err quickfix.MessageRejectError)

GetEncodedIssuer gets EncodedIssuer, Tag 349.

func (NoQuoteEntries) GetEncodedIssuerLen added in v0.4.0

func (m NoQuoteEntries) GetEncodedIssuerLen() (v int, err quickfix.MessageRejectError)

GetEncodedIssuerLen gets EncodedIssuerLen, Tag 348.

func (NoQuoteEntries) GetEncodedSecurityDesc added in v0.4.0

func (m NoQuoteEntries) GetEncodedSecurityDesc() (v string, err quickfix.MessageRejectError)

GetEncodedSecurityDesc gets EncodedSecurityDesc, Tag 351.

func (NoQuoteEntries) GetEncodedSecurityDescLen added in v0.4.0

func (m NoQuoteEntries) GetEncodedSecurityDescLen() (v int, err quickfix.MessageRejectError)

GetEncodedSecurityDescLen gets EncodedSecurityDescLen, Tag 350.

func (NoQuoteEntries) GetFactor added in v0.4.0

func (m NoQuoteEntries) GetFactor() (v decimal.Decimal, err quickfix.MessageRejectError)

GetFactor gets Factor, Tag 228.

func (NoQuoteEntries) GetFutSettDate added in v0.4.0

func (m NoQuoteEntries) GetFutSettDate() (v string, err quickfix.MessageRejectError)

GetFutSettDate gets FutSettDate, Tag 64.

func (NoQuoteEntries) GetFutSettDate2 added in v0.4.0

func (m NoQuoteEntries) GetFutSettDate2() (v string, err quickfix.MessageRejectError)

GetFutSettDate2 gets FutSettDate2, Tag 193.

func (NoQuoteEntries) GetInstrRegistry added in v0.4.0

func (m NoQuoteEntries) GetInstrRegistry() (v enum.InstrRegistry, err quickfix.MessageRejectError)

GetInstrRegistry gets InstrRegistry, Tag 543.

func (NoQuoteEntries) GetIssueDate added in v0.4.0

func (m NoQuoteEntries) GetIssueDate() (v string, err quickfix.MessageRejectError)

GetIssueDate gets IssueDate, Tag 225.

func (NoQuoteEntries) GetIssuer added in v0.4.0

func (m NoQuoteEntries) GetIssuer() (v string, err quickfix.MessageRejectError)

GetIssuer gets Issuer, Tag 106.

func (NoQuoteEntries) GetLocaleOfIssue added in v0.4.0

func (m NoQuoteEntries) GetLocaleOfIssue() (v string, err quickfix.MessageRejectError)

GetLocaleOfIssue gets LocaleOfIssue, Tag 472.

func (NoQuoteEntries) GetMaturityDate added in v0.4.0

func (m NoQuoteEntries) GetMaturityDate() (v string, err quickfix.MessageRejectError)

GetMaturityDate gets MaturityDate, Tag 541.

func (NoQuoteEntries) GetMaturityMonthYear added in v0.4.0

func (m NoQuoteEntries) GetMaturityMonthYear() (v string, err quickfix.MessageRejectError)

GetMaturityMonthYear gets MaturityMonthYear, Tag 200.

func (NoQuoteEntries) GetMidPx added in v0.4.0

GetMidPx gets MidPx, Tag 631.

func (NoQuoteEntries) GetMidYield added in v0.4.0

func (m NoQuoteEntries) GetMidYield() (v decimal.Decimal, err quickfix.MessageRejectError)

GetMidYield gets MidYield, Tag 633.

func (NoQuoteEntries) GetNoSecurityAltID added in v0.4.0

GetNoSecurityAltID gets NoSecurityAltID, Tag 454.

func (NoQuoteEntries) GetOfferForwardPoints added in v0.4.0

func (m NoQuoteEntries) GetOfferForwardPoints() (v decimal.Decimal, err quickfix.MessageRejectError)

GetOfferForwardPoints gets OfferForwardPoints, Tag 191.

func (NoQuoteEntries) GetOfferForwardPoints2 added in v0.4.0

func (m NoQuoteEntries) GetOfferForwardPoints2() (v decimal.Decimal, err quickfix.MessageRejectError)

GetOfferForwardPoints2 gets OfferForwardPoints2, Tag 643.

func (NoQuoteEntries) GetOfferPx added in v0.4.0

func (m NoQuoteEntries) GetOfferPx() (v decimal.Decimal, err quickfix.MessageRejectError)

GetOfferPx gets OfferPx, Tag 133.

func (NoQuoteEntries) GetOfferSize added in v0.4.0

func (m NoQuoteEntries) GetOfferSize() (v decimal.Decimal, err quickfix.MessageRejectError)

GetOfferSize gets OfferSize, Tag 135.

func (NoQuoteEntries) GetOfferSpotRate added in v0.4.0

func (m NoQuoteEntries) GetOfferSpotRate() (v decimal.Decimal, err quickfix.MessageRejectError)

GetOfferSpotRate gets OfferSpotRate, Tag 190.

func (NoQuoteEntries) GetOfferYield added in v0.4.0

func (m NoQuoteEntries) GetOfferYield() (v decimal.Decimal, err quickfix.MessageRejectError)

GetOfferYield gets OfferYield, Tag 634.

func (NoQuoteEntries) GetOptAttribute added in v0.4.0

func (m NoQuoteEntries) GetOptAttribute() (v string, err quickfix.MessageRejectError)

GetOptAttribute gets OptAttribute, Tag 206.

func (NoQuoteEntries) GetOrdType added in v0.4.0

func (m NoQuoteEntries) GetOrdType() (v enum.OrdType, err quickfix.MessageRejectError)

GetOrdType gets OrdType, Tag 40.

func (NoQuoteEntries) GetOrderQty2 added in v0.4.0

func (m NoQuoteEntries) GetOrderQty2() (v decimal.Decimal, err quickfix.MessageRejectError)

GetOrderQty2 gets OrderQty2, Tag 192.

func (NoQuoteEntries) GetProduct added in v0.4.0

func (m NoQuoteEntries) GetProduct() (v enum.Product, err quickfix.MessageRejectError)

GetProduct gets Product, Tag 460.

func (NoQuoteEntries) GetQuoteEntryID added in v0.4.0

func (m NoQuoteEntries) GetQuoteEntryID() (v string, err quickfix.MessageRejectError)

GetQuoteEntryID gets QuoteEntryID, Tag 299.

func (NoQuoteEntries) GetRedemptionDate added in v0.4.0

func (m NoQuoteEntries) GetRedemptionDate() (v string, err quickfix.MessageRejectError)

GetRedemptionDate gets RedemptionDate, Tag 240.

func (NoQuoteEntries) GetRepoCollateralSecurityType added in v0.4.0

func (m NoQuoteEntries) GetRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError)

GetRepoCollateralSecurityType gets RepoCollateralSecurityType, Tag 239.

func (NoQuoteEntries) GetRepurchaseRate added in v0.4.0

func (m NoQuoteEntries) GetRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError)

GetRepurchaseRate gets RepurchaseRate, Tag 227.

func (NoQuoteEntries) GetRepurchaseTerm added in v0.4.0

func (m NoQuoteEntries) GetRepurchaseTerm() (v int, err quickfix.MessageRejectError)

GetRepurchaseTerm gets RepurchaseTerm, Tag 226.

func (NoQuoteEntries) GetSecurityDesc added in v0.4.0

func (m NoQuoteEntries) GetSecurityDesc() (v string, err quickfix.MessageRejectError)

GetSecurityDesc gets SecurityDesc, Tag 107.

func (NoQuoteEntries) GetSecurityExchange added in v0.4.0

func (m NoQuoteEntries) GetSecurityExchange() (v string, err quickfix.MessageRejectError)

GetSecurityExchange gets SecurityExchange, Tag 207.

func (NoQuoteEntries) GetSecurityID added in v0.4.0

func (m NoQuoteEntries) GetSecurityID() (v string, err quickfix.MessageRejectError)

GetSecurityID gets SecurityID, Tag 48.

func (NoQuoteEntries) GetSecurityIDSource added in v0.4.0

func (m NoQuoteEntries) GetSecurityIDSource() (v enum.SecurityIDSource, err quickfix.MessageRejectError)

GetSecurityIDSource gets SecurityIDSource, Tag 22.

func (NoQuoteEntries) GetSecurityType added in v0.4.0

func (m NoQuoteEntries) GetSecurityType() (v enum.SecurityType, err quickfix.MessageRejectError)

GetSecurityType gets SecurityType, Tag 167.

func (NoQuoteEntries) GetStateOrProvinceOfIssue added in v0.4.0

func (m NoQuoteEntries) GetStateOrProvinceOfIssue() (v string, err quickfix.MessageRejectError)

GetStateOrProvinceOfIssue gets StateOrProvinceOfIssue, Tag 471.

func (NoQuoteEntries) GetStrikePrice added in v0.4.0

func (m NoQuoteEntries) GetStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError)

GetStrikePrice gets StrikePrice, Tag 202.

func (NoQuoteEntries) GetSymbol added in v0.4.0

func (m NoQuoteEntries) GetSymbol() (v string, err quickfix.MessageRejectError)

GetSymbol gets Symbol, Tag 55.

func (NoQuoteEntries) GetSymbolSfx added in v0.4.0

func (m NoQuoteEntries) GetSymbolSfx() (v enum.SymbolSfx, err quickfix.MessageRejectError)

GetSymbolSfx gets SymbolSfx, Tag 65.

func (NoQuoteEntries) GetTradingSessionID added in v0.4.0

func (m NoQuoteEntries) GetTradingSessionID() (v enum.TradingSessionID, err quickfix.MessageRejectError)

GetTradingSessionID gets TradingSessionID, Tag 336.

func (NoQuoteEntries) GetTradingSessionSubID added in v0.4.0

func (m NoQuoteEntries) GetTradingSessionSubID() (v enum.TradingSessionSubID, err quickfix.MessageRejectError)

GetTradingSessionSubID gets TradingSessionSubID, Tag 625.

func (NoQuoteEntries) GetTransactTime added in v0.4.0

func (m NoQuoteEntries) GetTransactTime() (v time.Time, err quickfix.MessageRejectError)

GetTransactTime gets TransactTime, Tag 60.

func (NoQuoteEntries) GetValidUntilTime added in v0.4.0

func (m NoQuoteEntries) GetValidUntilTime() (v time.Time, err quickfix.MessageRejectError)

GetValidUntilTime gets ValidUntilTime, Tag 62.

func (NoQuoteEntries) HasBidForwardPoints added in v0.4.0

func (m NoQuoteEntries) HasBidForwardPoints() bool

HasBidForwardPoints returns true if BidForwardPoints is present, Tag 189.

func (NoQuoteEntries) HasBidForwardPoints2 added in v0.4.0

func (m NoQuoteEntries) HasBidForwardPoints2() bool

HasBidForwardPoints2 returns true if BidForwardPoints2 is present, Tag 642.

func (NoQuoteEntries) HasBidPx added in v0.4.0

func (m NoQuoteEntries) HasBidPx() bool

HasBidPx returns true if BidPx is present, Tag 132.

func (NoQuoteEntries) HasBidSize added in v0.4.0

func (m NoQuoteEntries) HasBidSize() bool

HasBidSize returns true if BidSize is present, Tag 134.

func (NoQuoteEntries) HasBidSpotRate added in v0.4.0

func (m NoQuoteEntries) HasBidSpotRate() bool

HasBidSpotRate returns true if BidSpotRate is present, Tag 188.

func (NoQuoteEntries) HasBidYield added in v0.4.0

func (m NoQuoteEntries) HasBidYield() bool

HasBidYield returns true if BidYield is present, Tag 632.

func (NoQuoteEntries) HasCFICode added in v0.4.0

func (m NoQuoteEntries) HasCFICode() bool

HasCFICode returns true if CFICode is present, Tag 461.

func (NoQuoteEntries) HasContractMultiplier added in v0.4.0

func (m NoQuoteEntries) HasContractMultiplier() bool

HasContractMultiplier returns true if ContractMultiplier is present, Tag 231.

func (NoQuoteEntries) HasCountryOfIssue added in v0.4.0

func (m NoQuoteEntries) HasCountryOfIssue() bool

HasCountryOfIssue returns true if CountryOfIssue is present, Tag 470.

func (NoQuoteEntries) HasCouponPaymentDate added in v0.4.0

func (m NoQuoteEntries) HasCouponPaymentDate() bool

HasCouponPaymentDate returns true if CouponPaymentDate is present, Tag 224.

func (NoQuoteEntries) HasCouponRate added in v0.4.0

func (m NoQuoteEntries) HasCouponRate() bool

HasCouponRate returns true if CouponRate is present, Tag 223.

func (NoQuoteEntries) HasCreditRating added in v0.4.0

func (m NoQuoteEntries) HasCreditRating() bool

HasCreditRating returns true if CreditRating is present, Tag 255.

func (NoQuoteEntries) HasCurrency added in v0.4.0

func (m NoQuoteEntries) HasCurrency() bool

HasCurrency returns true if Currency is present, Tag 15.

func (NoQuoteEntries) HasEncodedIssuer added in v0.4.0

func (m NoQuoteEntries) HasEncodedIssuer() bool

HasEncodedIssuer returns true if EncodedIssuer is present, Tag 349.

func (NoQuoteEntries) HasEncodedIssuerLen added in v0.4.0

func (m NoQuoteEntries) HasEncodedIssuerLen() bool

HasEncodedIssuerLen returns true if EncodedIssuerLen is present, Tag 348.

func (NoQuoteEntries) HasEncodedSecurityDesc added in v0.4.0

func (m NoQuoteEntries) HasEncodedSecurityDesc() bool

HasEncodedSecurityDesc returns true if EncodedSecurityDesc is present, Tag 351.

func (NoQuoteEntries) HasEncodedSecurityDescLen added in v0.4.0

func (m NoQuoteEntries) HasEncodedSecurityDescLen() bool

HasEncodedSecurityDescLen returns true if EncodedSecurityDescLen is present, Tag 350.

func (NoQuoteEntries) HasFactor added in v0.4.0

func (m NoQuoteEntries) HasFactor() bool

HasFactor returns true if Factor is present, Tag 228.

func (NoQuoteEntries) HasFutSettDate added in v0.4.0

func (m NoQuoteEntries) HasFutSettDate() bool

HasFutSettDate returns true if FutSettDate is present, Tag 64.

func (NoQuoteEntries) HasFutSettDate2 added in v0.4.0

func (m NoQuoteEntries) HasFutSettDate2() bool

HasFutSettDate2 returns true if FutSettDate2 is present, Tag 193.

func (NoQuoteEntries) HasInstrRegistry added in v0.4.0

func (m NoQuoteEntries) HasInstrRegistry() bool

HasInstrRegistry returns true if InstrRegistry is present, Tag 543.

func (NoQuoteEntries) HasIssueDate added in v0.4.0

func (m NoQuoteEntries) HasIssueDate() bool

HasIssueDate returns true if IssueDate is present, Tag 225.

func (NoQuoteEntries) HasIssuer added in v0.4.0

func (m NoQuoteEntries) HasIssuer() bool

HasIssuer returns true if Issuer is present, Tag 106.

func (NoQuoteEntries) HasLocaleOfIssue added in v0.4.0

func (m NoQuoteEntries) HasLocaleOfIssue() bool

HasLocaleOfIssue returns true if LocaleOfIssue is present, Tag 472.

func (NoQuoteEntries) HasMaturityDate added in v0.4.0

func (m NoQuoteEntries) HasMaturityDate() bool

HasMaturityDate returns true if MaturityDate is present, Tag 541.

func (NoQuoteEntries) HasMaturityMonthYear added in v0.4.0

func (m NoQuoteEntries) HasMaturityMonthYear() bool

HasMaturityMonthYear returns true if MaturityMonthYear is present, Tag 200.

func (NoQuoteEntries) HasMidPx added in v0.4.0

func (m NoQuoteEntries) HasMidPx() bool

HasMidPx returns true if MidPx is present, Tag 631.

func (NoQuoteEntries) HasMidYield added in v0.4.0

func (m NoQuoteEntries) HasMidYield() bool

HasMidYield returns true if MidYield is present, Tag 633.

func (NoQuoteEntries) HasNoSecurityAltID added in v0.4.0

func (m NoQuoteEntries) HasNoSecurityAltID() bool

HasNoSecurityAltID returns true if NoSecurityAltID is present, Tag 454.

func (NoQuoteEntries) HasOfferForwardPoints added in v0.4.0

func (m NoQuoteEntries) HasOfferForwardPoints() bool

HasOfferForwardPoints returns true if OfferForwardPoints is present, Tag 191.

func (NoQuoteEntries) HasOfferForwardPoints2 added in v0.4.0

func (m NoQuoteEntries) HasOfferForwardPoints2() bool

HasOfferForwardPoints2 returns true if OfferForwardPoints2 is present, Tag 643.

func (NoQuoteEntries) HasOfferPx added in v0.4.0

func (m NoQuoteEntries) HasOfferPx() bool

HasOfferPx returns true if OfferPx is present, Tag 133.

func (NoQuoteEntries) HasOfferSize added in v0.4.0

func (m NoQuoteEntries) HasOfferSize() bool

HasOfferSize returns true if OfferSize is present, Tag 135.

func (NoQuoteEntries) HasOfferSpotRate added in v0.4.0

func (m NoQuoteEntries) HasOfferSpotRate() bool

HasOfferSpotRate returns true if OfferSpotRate is present, Tag 190.

func (NoQuoteEntries) HasOfferYield added in v0.4.0

func (m NoQuoteEntries) HasOfferYield() bool

HasOfferYield returns true if OfferYield is present, Tag 634.

func (NoQuoteEntries) HasOptAttribute added in v0.4.0

func (m NoQuoteEntries) HasOptAttribute() bool

HasOptAttribute returns true if OptAttribute is present, Tag 206.

func (NoQuoteEntries) HasOrdType added in v0.4.0

func (m NoQuoteEntries) HasOrdType() bool

HasOrdType returns true if OrdType is present, Tag 40.

func (NoQuoteEntries) HasOrderQty2 added in v0.4.0

func (m NoQuoteEntries) HasOrderQty2() bool

HasOrderQty2 returns true if OrderQty2 is present, Tag 192.

func (NoQuoteEntries) HasProduct added in v0.4.0

func (m NoQuoteEntries) HasProduct() bool

HasProduct returns true if Product is present, Tag 460.

func (NoQuoteEntries) HasQuoteEntryID added in v0.4.0

func (m NoQuoteEntries) HasQuoteEntryID() bool

HasQuoteEntryID returns true if QuoteEntryID is present, Tag 299.

func (NoQuoteEntries) HasRedemptionDate added in v0.4.0

func (m NoQuoteEntries) HasRedemptionDate() bool

HasRedemptionDate returns true if RedemptionDate is present, Tag 240.

func (NoQuoteEntries) HasRepoCollateralSecurityType added in v0.4.0

func (m NoQuoteEntries) HasRepoCollateralSecurityType() bool

HasRepoCollateralSecurityType returns true if RepoCollateralSecurityType is present, Tag 239.

func (NoQuoteEntries) HasRepurchaseRate added in v0.4.0

func (m NoQuoteEntries) HasRepurchaseRate() bool

HasRepurchaseRate returns true if RepurchaseRate is present, Tag 227.

func (NoQuoteEntries) HasRepurchaseTerm added in v0.4.0

func (m NoQuoteEntries) HasRepurchaseTerm() bool

HasRepurchaseTerm returns true if RepurchaseTerm is present, Tag 226.

func (NoQuoteEntries) HasSecurityDesc added in v0.4.0

func (m NoQuoteEntries) HasSecurityDesc() bool

HasSecurityDesc returns true if SecurityDesc is present, Tag 107.

func (NoQuoteEntries) HasSecurityExchange added in v0.4.0

func (m NoQuoteEntries) HasSecurityExchange() bool

HasSecurityExchange returns true if SecurityExchange is present, Tag 207.

func (NoQuoteEntries) HasSecurityID added in v0.4.0

func (m NoQuoteEntries) HasSecurityID() bool

HasSecurityID returns true if SecurityID is present, Tag 48.

func (NoQuoteEntries) HasSecurityIDSource added in v0.4.0

func (m NoQuoteEntries) HasSecurityIDSource() bool

HasSecurityIDSource returns true if SecurityIDSource is present, Tag 22.

func (NoQuoteEntries) HasSecurityType added in v0.4.0

func (m NoQuoteEntries) HasSecurityType() bool

HasSecurityType returns true if SecurityType is present, Tag 167.

func (NoQuoteEntries) HasStateOrProvinceOfIssue added in v0.4.0

func (m NoQuoteEntries) HasStateOrProvinceOfIssue() bool

HasStateOrProvinceOfIssue returns true if StateOrProvinceOfIssue is present, Tag 471.

func (NoQuoteEntries) HasStrikePrice added in v0.4.0

func (m NoQuoteEntries) HasStrikePrice() bool

HasStrikePrice returns true if StrikePrice is present, Tag 202.

func (NoQuoteEntries) HasSymbol added in v0.4.0

func (m NoQuoteEntries) HasSymbol() bool

HasSymbol returns true if Symbol is present, Tag 55.

func (NoQuoteEntries) HasSymbolSfx added in v0.4.0

func (m NoQuoteEntries) HasSymbolSfx() bool

HasSymbolSfx returns true if SymbolSfx is present, Tag 65.

func (NoQuoteEntries) HasTradingSessionID added in v0.4.0

func (m NoQuoteEntries) HasTradingSessionID() bool

HasTradingSessionID returns true if TradingSessionID is present, Tag 336.

func (NoQuoteEntries) HasTradingSessionSubID added in v0.4.0

func (m NoQuoteEntries) HasTradingSessionSubID() bool

HasTradingSessionSubID returns true if TradingSessionSubID is present, Tag 625.

func (NoQuoteEntries) HasTransactTime added in v0.4.0

func (m NoQuoteEntries) HasTransactTime() bool

HasTransactTime returns true if TransactTime is present, Tag 60.

func (NoQuoteEntries) HasValidUntilTime added in v0.4.0

func (m NoQuoteEntries) HasValidUntilTime() bool

HasValidUntilTime returns true if ValidUntilTime is present, Tag 62.

func (NoQuoteEntries) SetBidForwardPoints added in v0.2.0

func (m NoQuoteEntries) SetBidForwardPoints(value decimal.Decimal, scale int32)

SetBidForwardPoints sets BidForwardPoints, Tag 189.

func (NoQuoteEntries) SetBidForwardPoints2 added in v0.2.0

func (m NoQuoteEntries) SetBidForwardPoints2(value decimal.Decimal, scale int32)

SetBidForwardPoints2 sets BidForwardPoints2, Tag 642.

func (NoQuoteEntries) SetBidPx added in v0.2.0

func (m NoQuoteEntries) SetBidPx(value decimal.Decimal, scale int32)

SetBidPx sets BidPx, Tag 132.

func (NoQuoteEntries) SetBidSize added in v0.2.0

func (m NoQuoteEntries) SetBidSize(value decimal.Decimal, scale int32)

SetBidSize sets BidSize, Tag 134.

func (NoQuoteEntries) SetBidSpotRate added in v0.2.0

func (m NoQuoteEntries) SetBidSpotRate(value decimal.Decimal, scale int32)

SetBidSpotRate sets BidSpotRate, Tag 188.

func (NoQuoteEntries) SetBidYield added in v0.2.0

func (m NoQuoteEntries) SetBidYield(value decimal.Decimal, scale int32)

SetBidYield sets BidYield, Tag 632.

func (NoQuoteEntries) SetCFICode added in v0.4.0

func (m NoQuoteEntries) SetCFICode(v string)

SetCFICode sets CFICode, Tag 461.

func (NoQuoteEntries) SetContractMultiplier added in v0.4.0

func (m NoQuoteEntries) SetContractMultiplier(value decimal.Decimal, scale int32)

SetContractMultiplier sets ContractMultiplier, Tag 231.

func (NoQuoteEntries) SetCountryOfIssue added in v0.4.0

func (m NoQuoteEntries) SetCountryOfIssue(v string)

SetCountryOfIssue sets CountryOfIssue, Tag 470.

func (NoQuoteEntries) SetCouponPaymentDate added in v0.4.0

func (m NoQuoteEntries) SetCouponPaymentDate(v string)

SetCouponPaymentDate sets CouponPaymentDate, Tag 224.

func (NoQuoteEntries) SetCouponRate added in v0.4.0

func (m NoQuoteEntries) SetCouponRate(value decimal.Decimal, scale int32)

SetCouponRate sets CouponRate, Tag 223.

func (NoQuoteEntries) SetCreditRating added in v0.4.0

func (m NoQuoteEntries) SetCreditRating(v string)

SetCreditRating sets CreditRating, Tag 255.

func (NoQuoteEntries) SetCurrency added in v0.2.0

func (m NoQuoteEntries) SetCurrency(v string)

SetCurrency sets Currency, Tag 15.

func (NoQuoteEntries) SetEncodedIssuer added in v0.4.0

func (m NoQuoteEntries) SetEncodedIssuer(v string)

SetEncodedIssuer sets EncodedIssuer, Tag 349.

func (NoQuoteEntries) SetEncodedIssuerLen added in v0.4.0

func (m NoQuoteEntries) SetEncodedIssuerLen(v int)

SetEncodedIssuerLen sets EncodedIssuerLen, Tag 348.

func (NoQuoteEntries) SetEncodedSecurityDesc added in v0.4.0

func (m NoQuoteEntries) SetEncodedSecurityDesc(v string)

SetEncodedSecurityDesc sets EncodedSecurityDesc, Tag 351.

func (NoQuoteEntries) SetEncodedSecurityDescLen added in v0.4.0

func (m NoQuoteEntries) SetEncodedSecurityDescLen(v int)

SetEncodedSecurityDescLen sets EncodedSecurityDescLen, Tag 350.

func (NoQuoteEntries) SetFactor added in v0.4.0

func (m NoQuoteEntries) SetFactor(value decimal.Decimal, scale int32)

SetFactor sets Factor, Tag 228.

func (NoQuoteEntries) SetFutSettDate added in v0.2.0

func (m NoQuoteEntries) SetFutSettDate(v string)

SetFutSettDate sets FutSettDate, Tag 64.

func (NoQuoteEntries) SetFutSettDate2 added in v0.2.0

func (m NoQuoteEntries) SetFutSettDate2(v string)

SetFutSettDate2 sets FutSettDate2, Tag 193.

func (NoQuoteEntries) SetInstrRegistry added in v0.4.0

func (m NoQuoteEntries) SetInstrRegistry(v enum.InstrRegistry)

SetInstrRegistry sets InstrRegistry, Tag 543.

func (NoQuoteEntries) SetIssueDate added in v0.4.0

func (m NoQuoteEntries) SetIssueDate(v string)

SetIssueDate sets IssueDate, Tag 225.

func (NoQuoteEntries) SetIssuer added in v0.4.0

func (m NoQuoteEntries) SetIssuer(v string)

SetIssuer sets Issuer, Tag 106.

func (NoQuoteEntries) SetLocaleOfIssue added in v0.4.0

func (m NoQuoteEntries) SetLocaleOfIssue(v string)

SetLocaleOfIssue sets LocaleOfIssue, Tag 472.

func (NoQuoteEntries) SetMaturityDate added in v0.4.0

func (m NoQuoteEntries) SetMaturityDate(v string)

SetMaturityDate sets MaturityDate, Tag 541.

func (NoQuoteEntries) SetMaturityMonthYear added in v0.4.0

func (m NoQuoteEntries) SetMaturityMonthYear(v string)

SetMaturityMonthYear sets MaturityMonthYear, Tag 200.

func (NoQuoteEntries) SetMidPx added in v0.2.0

func (m NoQuoteEntries) SetMidPx(value decimal.Decimal, scale int32)

SetMidPx sets MidPx, Tag 631.

func (NoQuoteEntries) SetMidYield added in v0.2.0

func (m NoQuoteEntries) SetMidYield(value decimal.Decimal, scale int32)

SetMidYield sets MidYield, Tag 633.

func (NoQuoteEntries) SetNoSecurityAltID added in v0.4.0

func (m NoQuoteEntries) SetNoSecurityAltID(f NoSecurityAltIDRepeatingGroup)

SetNoSecurityAltID sets NoSecurityAltID, Tag 454.

func (NoQuoteEntries) SetOfferForwardPoints added in v0.2.0

func (m NoQuoteEntries) SetOfferForwardPoints(value decimal.Decimal, scale int32)

SetOfferForwardPoints sets OfferForwardPoints, Tag 191.

func (NoQuoteEntries) SetOfferForwardPoints2 added in v0.2.0

func (m NoQuoteEntries) SetOfferForwardPoints2(value decimal.Decimal, scale int32)

SetOfferForwardPoints2 sets OfferForwardPoints2, Tag 643.

func (NoQuoteEntries) SetOfferPx added in v0.2.0

func (m NoQuoteEntries) SetOfferPx(value decimal.Decimal, scale int32)

SetOfferPx sets OfferPx, Tag 133.

func (NoQuoteEntries) SetOfferSize added in v0.2.0

func (m NoQuoteEntries) SetOfferSize(value decimal.Decimal, scale int32)

SetOfferSize sets OfferSize, Tag 135.

func (NoQuoteEntries) SetOfferSpotRate added in v0.2.0

func (m NoQuoteEntries) SetOfferSpotRate(value decimal.Decimal, scale int32)

SetOfferSpotRate sets OfferSpotRate, Tag 190.

func (NoQuoteEntries) SetOfferYield added in v0.2.0

func (m NoQuoteEntries) SetOfferYield(value decimal.Decimal, scale int32)

SetOfferYield sets OfferYield, Tag 634.

func (NoQuoteEntries) SetOptAttribute added in v0.4.0

func (m NoQuoteEntries) SetOptAttribute(v string)

SetOptAttribute sets OptAttribute, Tag 206.

func (NoQuoteEntries) SetOrdType added in v0.2.0

func (m NoQuoteEntries) SetOrdType(v enum.OrdType)

SetOrdType sets OrdType, Tag 40.

func (NoQuoteEntries) SetOrderQty2 added in v0.2.0

func (m NoQuoteEntries) SetOrderQty2(value decimal.Decimal, scale int32)

SetOrderQty2 sets OrderQty2, Tag 192.

func (NoQuoteEntries) SetProduct added in v0.4.0

func (m NoQuoteEntries) SetProduct(v enum.Product)

SetProduct sets Product, Tag 460.

func (NoQuoteEntries) SetQuoteEntryID added in v0.2.0

func (m NoQuoteEntries) SetQuoteEntryID(v string)

SetQuoteEntryID sets QuoteEntryID, Tag 299.

func (NoQuoteEntries) SetRedemptionDate added in v0.4.0

func (m NoQuoteEntries) SetRedemptionDate(v string)

SetRedemptionDate sets RedemptionDate, Tag 240.

func (NoQuoteEntries) SetRepoCollateralSecurityType added in v0.4.0

func (m NoQuoteEntries) SetRepoCollateralSecurityType(v int)

SetRepoCollateralSecurityType sets RepoCollateralSecurityType, Tag 239.

func (NoQuoteEntries) SetRepurchaseRate added in v0.4.0

func (m NoQuoteEntries) SetRepurchaseRate(value decimal.Decimal, scale int32)

SetRepurchaseRate sets RepurchaseRate, Tag 227.

func (NoQuoteEntries) SetRepurchaseTerm added in v0.4.0

func (m NoQuoteEntries) SetRepurchaseTerm(v int)

SetRepurchaseTerm sets RepurchaseTerm, Tag 226.

func (NoQuoteEntries) SetSecurityDesc added in v0.4.0

func (m NoQuoteEntries) SetSecurityDesc(v string)

SetSecurityDesc sets SecurityDesc, Tag 107.

func (NoQuoteEntries) SetSecurityExchange added in v0.4.0

func (m NoQuoteEntries) SetSecurityExchange(v string)

SetSecurityExchange sets SecurityExchange, Tag 207.

func (NoQuoteEntries) SetSecurityID added in v0.4.0

func (m NoQuoteEntries) SetSecurityID(v string)

SetSecurityID sets SecurityID, Tag 48.

func (NoQuoteEntries) SetSecurityIDSource added in v0.4.0

func (m NoQuoteEntries) SetSecurityIDSource(v enum.SecurityIDSource)

SetSecurityIDSource sets SecurityIDSource, Tag 22.

func (NoQuoteEntries) SetSecurityType added in v0.4.0

func (m NoQuoteEntries) SetSecurityType(v enum.SecurityType)

SetSecurityType sets SecurityType, Tag 167.

func (NoQuoteEntries) SetStateOrProvinceOfIssue added in v0.4.0

func (m NoQuoteEntries) SetStateOrProvinceOfIssue(v string)

SetStateOrProvinceOfIssue sets StateOrProvinceOfIssue, Tag 471.

func (NoQuoteEntries) SetStrikePrice added in v0.4.0

func (m NoQuoteEntries) SetStrikePrice(value decimal.Decimal, scale int32)

SetStrikePrice sets StrikePrice, Tag 202.

func (NoQuoteEntries) SetSymbol added in v0.4.0

func (m NoQuoteEntries) SetSymbol(v string)

SetSymbol sets Symbol, Tag 55.

func (NoQuoteEntries) SetSymbolSfx added in v0.4.0

func (m NoQuoteEntries) SetSymbolSfx(v enum.SymbolSfx)

SetSymbolSfx sets SymbolSfx, Tag 65.

func (NoQuoteEntries) SetTradingSessionID added in v0.2.0

func (m NoQuoteEntries) SetTradingSessionID(v enum.TradingSessionID)

SetTradingSessionID sets TradingSessionID, Tag 336.

func (NoQuoteEntries) SetTradingSessionSubID added in v0.2.0

func (m NoQuoteEntries) SetTradingSessionSubID(v enum.TradingSessionSubID)

SetTradingSessionSubID sets TradingSessionSubID, Tag 625.

func (NoQuoteEntries) SetTransactTime added in v0.2.0

func (m NoQuoteEntries) SetTransactTime(v time.Time)

SetTransactTime sets TransactTime, Tag 60.

func (NoQuoteEntries) SetValidUntilTime added in v0.2.0

func (m NoQuoteEntries) SetValidUntilTime(v time.Time)

SetValidUntilTime sets ValidUntilTime, Tag 62.

type NoQuoteEntriesRepeatingGroup added in v0.4.0

type NoQuoteEntriesRepeatingGroup struct {
	*quickfix.RepeatingGroup
}

NoQuoteEntriesRepeatingGroup is a repeating group, Tag 295.

func NewNoQuoteEntriesRepeatingGroup added in v0.4.0

func NewNoQuoteEntriesRepeatingGroup() NoQuoteEntriesRepeatingGroup

NewNoQuoteEntriesRepeatingGroup returns an initialized, NoQuoteEntriesRepeatingGroup.

func (NoQuoteEntriesRepeatingGroup) Add added in v0.4.0

Add create and append a new NoQuoteEntries to this group.

func (NoQuoteEntriesRepeatingGroup) Get added in v0.4.0

Get returns the ith NoQuoteEntries in the NoQuoteEntriesRepeatinGroup.

type NoQuoteSets

type NoQuoteSets struct {
	*quickfix.Group
}

NoQuoteSets is a repeating group element, Tag 296.

func (NoQuoteSets) GetEncodedUnderlyingIssuer added in v0.4.0

func (m NoQuoteSets) GetEncodedUnderlyingIssuer() (v string, err quickfix.MessageRejectError)

GetEncodedUnderlyingIssuer gets EncodedUnderlyingIssuer, Tag 363.

func (NoQuoteSets) GetEncodedUnderlyingIssuerLen added in v0.4.0

func (m NoQuoteSets) GetEncodedUnderlyingIssuerLen() (v int, err quickfix.MessageRejectError)

GetEncodedUnderlyingIssuerLen gets EncodedUnderlyingIssuerLen, Tag 362.

func (NoQuoteSets) GetEncodedUnderlyingSecurityDesc added in v0.4.0

func (m NoQuoteSets) GetEncodedUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError)

GetEncodedUnderlyingSecurityDesc gets EncodedUnderlyingSecurityDesc, Tag 365.

func (NoQuoteSets) GetEncodedUnderlyingSecurityDescLen added in v0.4.0

func (m NoQuoteSets) GetEncodedUnderlyingSecurityDescLen() (v int, err quickfix.MessageRejectError)

GetEncodedUnderlyingSecurityDescLen gets EncodedUnderlyingSecurityDescLen, Tag 364.

func (NoQuoteSets) GetNoQuoteEntries added in v0.4.0

GetNoQuoteEntries gets NoQuoteEntries, Tag 295.

func (NoQuoteSets) GetNoUnderlyingSecurityAltID added in v0.4.0

GetNoUnderlyingSecurityAltID gets NoUnderlyingSecurityAltID, Tag 457.

func (NoQuoteSets) GetQuoteSetID added in v0.4.0

func (m NoQuoteSets) GetQuoteSetID() (v string, err quickfix.MessageRejectError)

GetQuoteSetID gets QuoteSetID, Tag 302.

func (NoQuoteSets) GetQuoteSetValidUntilTime added in v0.4.0

func (m NoQuoteSets) GetQuoteSetValidUntilTime() (v time.Time, err quickfix.MessageRejectError)

GetQuoteSetValidUntilTime gets QuoteSetValidUntilTime, Tag 367.

func (NoQuoteSets) GetTotQuoteEntries added in v0.4.0

func (m NoQuoteSets) GetTotQuoteEntries() (v int, err quickfix.MessageRejectError)

GetTotQuoteEntries gets TotQuoteEntries, Tag 304.

func (NoQuoteSets) GetUnderlyingCFICode added in v0.4.0

func (m NoQuoteSets) GetUnderlyingCFICode() (v string, err quickfix.MessageRejectError)

GetUnderlyingCFICode gets UnderlyingCFICode, Tag 463.

func (NoQuoteSets) GetUnderlyingContractMultiplier added in v0.4.0

func (m NoQuoteSets) GetUnderlyingContractMultiplier() (v decimal.Decimal, err quickfix.MessageRejectError)

GetUnderlyingContractMultiplier gets UnderlyingContractMultiplier, Tag 436.

func (NoQuoteSets) GetUnderlyingCountryOfIssue added in v0.4.0

func (m NoQuoteSets) GetUnderlyingCountryOfIssue() (v string, err quickfix.MessageRejectError)

GetUnderlyingCountryOfIssue gets UnderlyingCountryOfIssue, Tag 592.

func (NoQuoteSets) GetUnderlyingCouponPaymentDate added in v0.4.0

func (m NoQuoteSets) GetUnderlyingCouponPaymentDate() (v string, err quickfix.MessageRejectError)

GetUnderlyingCouponPaymentDate gets UnderlyingCouponPaymentDate, Tag 241.

func (NoQuoteSets) GetUnderlyingCouponRate added in v0.4.0

func (m NoQuoteSets) GetUnderlyingCouponRate() (v decimal.Decimal, err quickfix.MessageRejectError)

GetUnderlyingCouponRate gets UnderlyingCouponRate, Tag 435.

func (NoQuoteSets) GetUnderlyingCreditRating added in v0.4.0

func (m NoQuoteSets) GetUnderlyingCreditRating() (v string, err quickfix.MessageRejectError)

GetUnderlyingCreditRating gets UnderlyingCreditRating, Tag 256.

func (NoQuoteSets) GetUnderlyingFactor added in v0.4.0

func (m NoQuoteSets) GetUnderlyingFactor() (v decimal.Decimal, err quickfix.MessageRejectError)

GetUnderlyingFactor gets UnderlyingFactor, Tag 246.

func (NoQuoteSets) GetUnderlyingInstrRegistry added in v0.4.0

func (m NoQuoteSets) GetUnderlyingInstrRegistry() (v string, err quickfix.MessageRejectError)

GetUnderlyingInstrRegistry gets UnderlyingInstrRegistry, Tag 595.

func (NoQuoteSets) GetUnderlyingIssueDate added in v0.4.0

func (m NoQuoteSets) GetUnderlyingIssueDate() (v string, err quickfix.MessageRejectError)

GetUnderlyingIssueDate gets UnderlyingIssueDate, Tag 242.

func (NoQuoteSets) GetUnderlyingIssuer added in v0.4.0

func (m NoQuoteSets) GetUnderlyingIssuer() (v string, err quickfix.MessageRejectError)

GetUnderlyingIssuer gets UnderlyingIssuer, Tag 306.

func (NoQuoteSets) GetUnderlyingLocaleOfIssue added in v0.4.0

func (m NoQuoteSets) GetUnderlyingLocaleOfIssue() (v string, err quickfix.MessageRejectError)

GetUnderlyingLocaleOfIssue gets UnderlyingLocaleOfIssue, Tag 594.

func (NoQuoteSets) GetUnderlyingMaturityDate added in v0.4.0

func (m NoQuoteSets) GetUnderlyingMaturityDate() (v string, err quickfix.MessageRejectError)

GetUnderlyingMaturityDate gets UnderlyingMaturityDate, Tag 542.

func (NoQuoteSets) GetUnderlyingMaturityMonthYear added in v0.4.0

func (m NoQuoteSets) GetUnderlyingMaturityMonthYear() (v string, err quickfix.MessageRejectError)

GetUnderlyingMaturityMonthYear gets UnderlyingMaturityMonthYear, Tag 313.

func (NoQuoteSets) GetUnderlyingOptAttribute added in v0.4.0

func (m NoQuoteSets) GetUnderlyingOptAttribute() (v string, err quickfix.MessageRejectError)

GetUnderlyingOptAttribute gets UnderlyingOptAttribute, Tag 317.

func (NoQuoteSets) GetUnderlyingProduct added in v0.4.0

func (m NoQuoteSets) GetUnderlyingProduct() (v int, err quickfix.MessageRejectError)

GetUnderlyingProduct gets UnderlyingProduct, Tag 462.

func (NoQuoteSets) GetUnderlyingRedemptionDate added in v0.4.0

func (m NoQuoteSets) GetUnderlyingRedemptionDate() (v string, err quickfix.MessageRejectError)

GetUnderlyingRedemptionDate gets UnderlyingRedemptionDate, Tag 247.

func (NoQuoteSets) GetUnderlyingRepoCollateralSecurityType added in v0.4.0

func (m NoQuoteSets) GetUnderlyingRepoCollateralSecurityType() (v int, err quickfix.MessageRejectError)

GetUnderlyingRepoCollateralSecurityType gets UnderlyingRepoCollateralSecurityType, Tag 243.

func (NoQuoteSets) GetUnderlyingRepurchaseRate added in v0.4.0

func (m NoQuoteSets) GetUnderlyingRepurchaseRate() (v decimal.Decimal, err quickfix.MessageRejectError)

GetUnderlyingRepurchaseRate gets UnderlyingRepurchaseRate, Tag 245.

func (NoQuoteSets) GetUnderlyingRepurchaseTerm added in v0.4.0

func (m NoQuoteSets) GetUnderlyingRepurchaseTerm() (v int, err quickfix.MessageRejectError)

GetUnderlyingRepurchaseTerm gets UnderlyingRepurchaseTerm, Tag 244.

func (NoQuoteSets) GetUnderlyingSecurityDesc added in v0.4.0

func (m NoQuoteSets) GetUnderlyingSecurityDesc() (v string, err quickfix.MessageRejectError)

GetUnderlyingSecurityDesc gets UnderlyingSecurityDesc, Tag 307.

func (NoQuoteSets) GetUnderlyingSecurityExchange added in v0.4.0

func (m NoQuoteSets) GetUnderlyingSecurityExchange() (v string, err quickfix.MessageRejectError)

GetUnderlyingSecurityExchange gets UnderlyingSecurityExchange, Tag 308.

func (NoQuoteSets) GetUnderlyingSecurityID added in v0.4.0

func (m NoQuoteSets) GetUnderlyingSecurityID() (v string, err quickfix.MessageRejectError)

GetUnderlyingSecurityID gets UnderlyingSecurityID, Tag 309.

func (NoQuoteSets) GetUnderlyingSecurityIDSource added in v0.4.0

func (m NoQuoteSets) GetUnderlyingSecurityIDSource() (v string, err quickfix.MessageRejectError)

GetUnderlyingSecurityIDSource gets UnderlyingSecurityIDSource, Tag 305.

func (NoQuoteSets) GetUnderlyingSecurityType added in v0.4.0

func (m NoQuoteSets) GetUnderlyingSecurityType() (v string, err quickfix.MessageRejectError)

GetUnderlyingSecurityType gets UnderlyingSecurityType, Tag 310.

func (NoQuoteSets) GetUnderlyingStateOrProvinceOfIssue added in v0.4.0

func (m NoQuoteSets) GetUnderlyingStateOrProvinceOfIssue() (v string, err quickfix.MessageRejectError)

GetUnderlyingStateOrProvinceOfIssue gets UnderlyingStateOrProvinceOfIssue, Tag 593.

func (NoQuoteSets) GetUnderlyingStrikePrice added in v0.4.0

func (m NoQuoteSets) GetUnderlyingStrikePrice() (v decimal.Decimal, err quickfix.MessageRejectError)

GetUnderlyingStrikePrice gets UnderlyingStrikePrice, Tag 316.

func (NoQuoteSets) GetUnderlyingSymbol added in v0.4.0

func (m NoQuoteSets) GetUnderlyingSymbol() (v string, err quickfix.MessageRejectError)

GetUnderlyingSymbol gets UnderlyingSymbol, Tag 311.

func (NoQuoteSets) GetUnderlyingSymbolSfx added in v0.4.0

func (m NoQuoteSets) GetUnderlyingSymbolSfx() (v string, err quickfix.MessageRejectError)

GetUnderlyingSymbolSfx gets UnderlyingSymbolSfx, Tag 312.

func (NoQuoteSets) HasEncodedUnderlyingIssuer added in v0.4.0

func (m NoQuoteSets) HasEncodedUnderlyingIssuer() bool

HasEncodedUnderlyingIssuer returns true if EncodedUnderlyingIssuer is present, Tag 363.

func (NoQuoteSets) HasEncodedUnderlyingIssuerLen added in v0.4.0

func (m NoQuoteSets) HasEncodedUnderlyingIssuerLen() bool

HasEncodedUnderlyingIssuerLen returns true if EncodedUnderlyingIssuerLen is present, Tag 362.

func (NoQuoteSets) HasEncodedUnderlyingSecurityDesc added in v0.4.0

func (m NoQuoteSets) HasEncodedUnderlyingSecurityDesc() bool

HasEncodedUnderlyingSecurityDesc returns true if EncodedUnderlyingSecurityDesc is present, Tag 365.

func (NoQuoteSets) HasEncodedUnderlyingSecurityDescLen added in v0.4.0

func (m NoQuoteSets) HasEncodedUnderlyingSecurityDescLen() bool

HasEncodedUnderlyingSecurityDescLen returns true if EncodedUnderlyingSecurityDescLen is present, Tag 364.

func (NoQuoteSets) HasNoQuoteEntries added in v0.4.0

func (m NoQuoteSets) HasNoQuoteEntries() bool

HasNoQuoteEntries returns true if NoQuoteEntries is present, Tag 295.

func (NoQuoteSets) HasNoUnderlyingSecurityAltID added in v0.4.0

func (m NoQuoteSets) HasNoUnderlyingSecurityAltID() bool

HasNoUnderlyingSecurityAltID returns true if NoUnderlyingSecurityAltID is present, Tag 457.

func (NoQuoteSets) HasQuoteSetID added in v0.4.0

func (m NoQuoteSets) HasQuoteSetID() bool

HasQuoteSetID returns true if QuoteSetID is present, Tag 302.

func (NoQuoteSets) HasQuoteSetValidUntilTime added in v0.4.0

func (m NoQuoteSets) HasQuoteSetValidUntilTime() bool

HasQuoteSetValidUntilTime returns true if QuoteSetValidUntilTime is present, Tag 367.

func (NoQuoteSets) HasTotQuoteEntries added in v0.4.0

func (m NoQuoteSets) HasTotQuoteEntries() bool

HasTotQuoteEntries returns true if TotQuoteEntries is present, Tag 304.

func (NoQuoteSets) HasUnderlyingCFICode added in v0.4.0

func (m NoQuoteSets) HasUnderlyingCFICode() bool

HasUnderlyingCFICode returns true if UnderlyingCFICode is present, Tag 463.

func (NoQuoteSets) HasUnderlyingContractMultiplier added in v0.4.0

func (m NoQuoteSets) HasUnderlyingContractMultiplier() bool

HasUnderlyingContractMultiplier returns true if UnderlyingContractMultiplier is present, Tag 436.

func (NoQuoteSets) HasUnderlyingCountryOfIssue added in v0.4.0

func (m NoQuoteSets) HasUnderlyingCountryOfIssue() bool

HasUnderlyingCountryOfIssue returns true if UnderlyingCountryOfIssue is present, Tag 592.

func (NoQuoteSets) HasUnderlyingCouponPaymentDate added in v0.4.0

func (m NoQuoteSets) HasUnderlyingCouponPaymentDate() bool

HasUnderlyingCouponPaymentDate returns true if UnderlyingCouponPaymentDate is present, Tag 241.

func (NoQuoteSets) HasUnderlyingCouponRate added in v0.4.0

func (m NoQuoteSets) HasUnderlyingCouponRate() bool

HasUnderlyingCouponRate returns true if UnderlyingCouponRate is present, Tag 435.

func (NoQuoteSets) HasUnderlyingCreditRating added in v0.4.0

func (m NoQuoteSets) HasUnderlyingCreditRating() bool

HasUnderlyingCreditRating returns true if UnderlyingCreditRating is present, Tag 256.

func (NoQuoteSets) HasUnderlyingFactor added in v0.4.0

func (m NoQuoteSets) HasUnderlyingFactor() bool

HasUnderlyingFactor returns true if UnderlyingFactor is present, Tag 246.

func (NoQuoteSets) HasUnderlyingInstrRegistry added in v0.4.0

func (m NoQuoteSets) HasUnderlyingInstrRegistry() bool

HasUnderlyingInstrRegistry returns true if UnderlyingInstrRegistry is present, Tag 595.

func (NoQuoteSets) HasUnderlyingIssueDate added in v0.4.0

func (m NoQuoteSets) HasUnderlyingIssueDate() bool

HasUnderlyingIssueDate returns true if UnderlyingIssueDate is present, Tag 242.

func (NoQuoteSets) HasUnderlyingIssuer added in v0.4.0

func (m NoQuoteSets) HasUnderlyingIssuer() bool

HasUnderlyingIssuer returns true if UnderlyingIssuer is present, Tag 306.

func (NoQuoteSets) HasUnderlyingLocaleOfIssue added in v0.4.0

func (m NoQuoteSets) HasUnderlyingLocaleOfIssue() bool

HasUnderlyingLocaleOfIssue returns true if UnderlyingLocaleOfIssue is present, Tag 594.

func (NoQuoteSets) HasUnderlyingMaturityDate added in v0.4.0

func (m NoQuoteSets) HasUnderlyingMaturityDate() bool

HasUnderlyingMaturityDate returns true if UnderlyingMaturityDate is present, Tag 542.

func (NoQuoteSets) HasUnderlyingMaturityMonthYear added in v0.4.0

func (m NoQuoteSets) HasUnderlyingMaturityMonthYear() bool

HasUnderlyingMaturityMonthYear returns true if UnderlyingMaturityMonthYear is present, Tag 313.

func (NoQuoteSets) HasUnderlyingOptAttribute added in v0.4.0

func (m NoQuoteSets) HasUnderlyingOptAttribute() bool

HasUnderlyingOptAttribute returns true if UnderlyingOptAttribute is present, Tag 317.

func (NoQuoteSets) HasUnderlyingProduct added in v0.4.0

func (m NoQuoteSets) HasUnderlyingProduct() bool

HasUnderlyingProduct returns true if UnderlyingProduct is present, Tag 462.

func (NoQuoteSets) HasUnderlyingRedemptionDate added in v0.4.0

func (m NoQuoteSets) HasUnderlyingRedemptionDate() bool

HasUnderlyingRedemptionDate returns true if UnderlyingRedemptionDate is present, Tag 247.

func (NoQuoteSets) HasUnderlyingRepoCollateralSecurityType added in v0.4.0

func (m NoQuoteSets) HasUnderlyingRepoCollateralSecurityType() bool

HasUnderlyingRepoCollateralSecurityType returns true if UnderlyingRepoCollateralSecurityType is present, Tag 243.

func (NoQuoteSets) HasUnderlyingRepurchaseRate added in v0.4.0

func (m NoQuoteSets) HasUnderlyingRepurchaseRate() bool

HasUnderlyingRepurchaseRate returns true if UnderlyingRepurchaseRate is present, Tag 245.

func (NoQuoteSets) HasUnderlyingRepurchaseTerm added in v0.4.0

func (m NoQuoteSets) HasUnderlyingRepurchaseTerm() bool

HasUnderlyingRepurchaseTerm returns true if UnderlyingRepurchaseTerm is present, Tag 244.

func (NoQuoteSets) HasUnderlyingSecurityDesc added in v0.4.0

func (m NoQuoteSets) HasUnderlyingSecurityDesc() bool

HasUnderlyingSecurityDesc returns true if UnderlyingSecurityDesc is present, Tag 307.

func (NoQuoteSets) HasUnderlyingSecurityExchange added in v0.4.0

func (m NoQuoteSets) HasUnderlyingSecurityExchange() bool

HasUnderlyingSecurityExchange returns true if UnderlyingSecurityExchange is present, Tag 308.

func (NoQuoteSets) HasUnderlyingSecurityID added in v0.4.0

func (m NoQuoteSets) HasUnderlyingSecurityID() bool

HasUnderlyingSecurityID returns true if UnderlyingSecurityID is present, Tag 309.

func (NoQuoteSets) HasUnderlyingSecurityIDSource added in v0.4.0

func (m NoQuoteSets) HasUnderlyingSecurityIDSource() bool

HasUnderlyingSecurityIDSource returns true if UnderlyingSecurityIDSource is present, Tag 305.

func (NoQuoteSets) HasUnderlyingSecurityType added in v0.4.0

func (m NoQuoteSets) HasUnderlyingSecurityType() bool

HasUnderlyingSecurityType returns true if UnderlyingSecurityType is present, Tag 310.

func (NoQuoteSets) HasUnderlyingStateOrProvinceOfIssue added in v0.4.0

func (m NoQuoteSets) HasUnderlyingStateOrProvinceOfIssue() bool

HasUnderlyingStateOrProvinceOfIssue returns true if UnderlyingStateOrProvinceOfIssue is present, Tag 593.

func (NoQuoteSets) HasUnderlyingStrikePrice added in v0.4.0

func (m NoQuoteSets) HasUnderlyingStrikePrice() bool

HasUnderlyingStrikePrice returns true if UnderlyingStrikePrice is present, Tag 316.

func (NoQuoteSets) HasUnderlyingSymbol added in v0.4.0

func (m NoQuoteSets) HasUnderlyingSymbol() bool

HasUnderlyingSymbol returns true if UnderlyingSymbol is present, Tag 311.

func (NoQuoteSets) HasUnderlyingSymbolSfx added in v0.4.0

func (m NoQuoteSets) HasUnderlyingSymbolSfx() bool

HasUnderlyingSymbolSfx returns true if UnderlyingSymbolSfx is present, Tag 312.

func (NoQuoteSets) SetEncodedUnderlyingIssuer added in v0.4.0

func (m NoQuoteSets) SetEncodedUnderlyingIssuer(v string)

SetEncodedUnderlyingIssuer sets EncodedUnderlyingIssuer, Tag 363.

func (NoQuoteSets) SetEncodedUnderlyingIssuerLen added in v0.4.0

func (m NoQuoteSets) SetEncodedUnderlyingIssuerLen(v int)

SetEncodedUnderlyingIssuerLen sets EncodedUnderlyingIssuerLen, Tag 362.

func (NoQuoteSets) SetEncodedUnderlyingSecurityDesc added in v0.4.0

func (m NoQuoteSets) SetEncodedUnderlyingSecurityDesc(v string)

SetEncodedUnderlyingSecurityDesc sets EncodedUnderlyingSecurityDesc, Tag 365.

func (NoQuoteSets) SetEncodedUnderlyingSecurityDescLen added in v0.4.0

func (m NoQuoteSets) SetEncodedUnderlyingSecurityDescLen(v int)

SetEncodedUnderlyingSecurityDescLen sets EncodedUnderlyingSecurityDescLen, Tag 364.

func (NoQuoteSets) SetNoQuoteEntries added in v0.2.0

func (m NoQuoteSets) SetNoQuoteEntries(f NoQuoteEntriesRepeatingGroup)

SetNoQuoteEntries sets NoQuoteEntries, Tag 295.

func (NoQuoteSets) SetNoUnderlyingSecurityAltID added in v0.4.0

func (m NoQuoteSets) SetNoUnderlyingSecurityAltID(f NoUnderlyingSecurityAltIDRepeatingGroup)

SetNoUnderlyingSecurityAltID sets NoUnderlyingSecurityAltID, Tag 457.

func (NoQuoteSets) SetQuoteSetID added in v0.2.0

func (m NoQuoteSets) SetQuoteSetID(v string)

SetQuoteSetID sets QuoteSetID, Tag 302.

func (NoQuoteSets) SetQuoteSetValidUntilTime added in v0.2.0

func (m NoQuoteSets) SetQuoteSetValidUntilTime(v time.Time)

SetQuoteSetValidUntilTime sets QuoteSetValidUntilTime, Tag 367.

func (NoQuoteSets) SetTotQuoteEntries added in v0.2.0

func (m NoQuoteSets) SetTotQuoteEntries(v int)

SetTotQuoteEntries sets TotQuoteEntries, Tag 304.

func (NoQuoteSets) SetUnderlyingCFICode added in v0.4.0

func (m NoQuoteSets) SetUnderlyingCFICode(v string)

SetUnderlyingCFICode sets UnderlyingCFICode, Tag 463.

func (NoQuoteSets) SetUnderlyingContractMultiplier added in v0.4.0

func (m NoQuoteSets) SetUnderlyingContractMultiplier(value decimal.Decimal, scale int32)

SetUnderlyingContractMultiplier sets UnderlyingContractMultiplier, Tag 436.

func (NoQuoteSets) SetUnderlyingCountryOfIssue added in v0.4.0

func (m NoQuoteSets) SetUnderlyingCountryOfIssue(v string)

SetUnderlyingCountryOfIssue sets UnderlyingCountryOfIssue, Tag 592.

func (NoQuoteSets) SetUnderlyingCouponPaymentDate added in v0.4.0

func (m NoQuoteSets) SetUnderlyingCouponPaymentDate(v string)

SetUnderlyingCouponPaymentDate sets UnderlyingCouponPaymentDate, Tag 241.

func (NoQuoteSets) SetUnderlyingCouponRate added in v0.4.0

func (m NoQuoteSets) SetUnderlyingCouponRate(value decimal.Decimal, scale int32)

SetUnderlyingCouponRate sets UnderlyingCouponRate, Tag 435.

func (NoQuoteSets) SetUnderlyingCreditRating added in v0.4.0

func (m NoQuoteSets) SetUnderlyingCreditRating(v string)

SetUnderlyingCreditRating sets UnderlyingCreditRating, Tag 256.

func (NoQuoteSets) SetUnderlyingFactor added in v0.4.0

func (m NoQuoteSets) SetUnderlyingFactor(value decimal.Decimal, scale int32)

SetUnderlyingFactor sets UnderlyingFactor, Tag 246.

func (NoQuoteSets) SetUnderlyingInstrRegistry added in v0.4.0

func (m NoQuoteSets) SetUnderlyingInstrRegistry(v string)

SetUnderlyingInstrRegistry sets UnderlyingInstrRegistry, Tag 595.

func (NoQuoteSets) SetUnderlyingIssueDate added in v0.4.0

func (m NoQuoteSets) SetUnderlyingIssueDate(v string)

SetUnderlyingIssueDate sets UnderlyingIssueDate, Tag 242.

func (NoQuoteSets) SetUnderlyingIssuer added in v0.4.0

func (m NoQuoteSets) SetUnderlyingIssuer(v string)

SetUnderlyingIssuer sets UnderlyingIssuer, Tag 306.

func (NoQuoteSets) SetUnderlyingLocaleOfIssue added in v0.4.0

func (m NoQuoteSets) SetUnderlyingLocaleOfIssue(v string)

SetUnderlyingLocaleOfIssue sets UnderlyingLocaleOfIssue, Tag 594.

func (NoQuoteSets) SetUnderlyingMaturityDate added in v0.4.0

func (m NoQuoteSets) SetUnderlyingMaturityDate(v string)

SetUnderlyingMaturityDate sets UnderlyingMaturityDate, Tag 542.

func (NoQuoteSets) SetUnderlyingMaturityMonthYear added in v0.4.0

func (m NoQuoteSets) SetUnderlyingMaturityMonthYear(v string)

SetUnderlyingMaturityMonthYear sets UnderlyingMaturityMonthYear, Tag 313.

func (NoQuoteSets) SetUnderlyingOptAttribute added in v0.4.0

func (m NoQuoteSets) SetUnderlyingOptAttribute(v string)

SetUnderlyingOptAttribute sets UnderlyingOptAttribute, Tag 317.

func (NoQuoteSets) SetUnderlyingProduct added in v0.4.0

func (m NoQuoteSets) SetUnderlyingProduct(v int)

SetUnderlyingProduct sets UnderlyingProduct, Tag 462.

func (NoQuoteSets) SetUnderlyingRedemptionDate added in v0.4.0

func (m NoQuoteSets) SetUnderlyingRedemptionDate(v string)

SetUnderlyingRedemptionDate sets UnderlyingRedemptionDate, Tag 247.

func (NoQuoteSets) SetUnderlyingRepoCollateralSecurityType added in v0.4.0

func (m NoQuoteSets) SetUnderlyingRepoCollateralSecurityType(v int)

SetUnderlyingRepoCollateralSecurityType sets UnderlyingRepoCollateralSecurityType, Tag 243.

func (NoQuoteSets) SetUnderlyingRepurchaseRate added in v0.4.0

func (m NoQuoteSets) SetUnderlyingRepurchaseRate(value decimal.Decimal, scale int32)

SetUnderlyingRepurchaseRate sets UnderlyingRepurchaseRate, Tag 245.

func (NoQuoteSets) SetUnderlyingRepurchaseTerm added in v0.4.0

func (m NoQuoteSets) SetUnderlyingRepurchaseTerm(v int)

SetUnderlyingRepurchaseTerm sets UnderlyingRepurchaseTerm, Tag 244.

func (NoQuoteSets) SetUnderlyingSecurityDesc added in v0.4.0

func (m NoQuoteSets) SetUnderlyingSecurityDesc(v string)

SetUnderlyingSecurityDesc sets UnderlyingSecurityDesc, Tag 307.

func (NoQuoteSets) SetUnderlyingSecurityExchange added in v0.4.0

func (m NoQuoteSets) SetUnderlyingSecurityExchange(v string)

SetUnderlyingSecurityExchange sets UnderlyingSecurityExchange, Tag 308.

func (NoQuoteSets) SetUnderlyingSecurityID added in v0.4.0

func (m NoQuoteSets) SetUnderlyingSecurityID(v string)

SetUnderlyingSecurityID sets UnderlyingSecurityID, Tag 309.

func (NoQuoteSets) SetUnderlyingSecurityIDSource added in v0.4.0

func (m NoQuoteSets) SetUnderlyingSecurityIDSource(v string)

SetUnderlyingSecurityIDSource sets UnderlyingSecurityIDSource, Tag 305.

func (NoQuoteSets) SetUnderlyingSecurityType added in v0.4.0

func (m NoQuoteSets) SetUnderlyingSecurityType(v string)

SetUnderlyingSecurityType sets UnderlyingSecurityType, Tag 310.

func (NoQuoteSets) SetUnderlyingStateOrProvinceOfIssue added in v0.4.0

func (m NoQuoteSets) SetUnderlyingStateOrProvinceOfIssue(v string)

SetUnderlyingStateOrProvinceOfIssue sets UnderlyingStateOrProvinceOfIssue, Tag 593.

func (NoQuoteSets) SetUnderlyingStrikePrice added in v0.4.0

func (m NoQuoteSets) SetUnderlyingStrikePrice(value decimal.Decimal, scale int32)

SetUnderlyingStrikePrice sets UnderlyingStrikePrice, Tag 316.

func (NoQuoteSets) SetUnderlyingSymbol added in v0.4.0

func (m NoQuoteSets) SetUnderlyingSymbol(v string)

SetUnderlyingSymbol sets UnderlyingSymbol, Tag 311.

func (NoQuoteSets) SetUnderlyingSymbolSfx added in v0.4.0

func (m NoQuoteSets) SetUnderlyingSymbolSfx(v string)

SetUnderlyingSymbolSfx sets UnderlyingSymbolSfx, Tag 312.

type NoQuoteSetsRepeatingGroup added in v0.4.0

type NoQuoteSetsRepeatingGroup struct {
	*quickfix.RepeatingGroup
}

NoQuoteSetsRepeatingGroup is a repeating group, Tag 296.

func NewNoQuoteSetsRepeatingGroup added in v0.4.0

func NewNoQuoteSetsRepeatingGroup() NoQuoteSetsRepeatingGroup

NewNoQuoteSetsRepeatingGroup returns an initialized, NoQuoteSetsRepeatingGroup.

func (NoQuoteSetsRepeatingGroup) Add added in v0.4.0

Add create and append a new NoQuoteSets to this group.

func (NoQuoteSetsRepeatingGroup) Get added in v0.4.0

Get returns the ith NoQuoteSets in the NoQuoteSetsRepeatinGroup.

type NoSecurityAltID added in v0.4.0

type NoSecurityAltID struct {
	*quickfix.Group
}

NoSecurityAltID is a repeating group element, Tag 454.

func (NoSecurityAltID) GetSecurityAltID added in v0.4.0

func (m NoSecurityAltID) GetSecurityAltID() (v string, err quickfix.MessageRejectError)

GetSecurityAltID gets SecurityAltID, Tag 455.

func (NoSecurityAltID) GetSecurityAltIDSource added in v0.4.0

func (m NoSecurityAltID) GetSecurityAltIDSource() (v string, err quickfix.MessageRejectError)

GetSecurityAltIDSource gets SecurityAltIDSource, Tag 456.

func (NoSecurityAltID) HasSecurityAltID added in v0.4.0

func (m NoSecurityAltID) HasSecurityAltID() bool

HasSecurityAltID returns true if SecurityAltID is present, Tag 455.

func (NoSecurityAltID) HasSecurityAltIDSource added in v0.4.0

func (m NoSecurityAltID) HasSecurityAltIDSource() bool

HasSecurityAltIDSource returns true if SecurityAltIDSource is present, Tag 456.

func (NoSecurityAltID) SetSecurityAltID added in v0.4.0

func (m NoSecurityAltID) SetSecurityAltID(v string)

SetSecurityAltID sets SecurityAltID, Tag 455.

func (NoSecurityAltID) SetSecurityAltIDSource added in v0.4.0

func (m NoSecurityAltID) SetSecurityAltIDSource(v string)

SetSecurityAltIDSource sets SecurityAltIDSource, Tag 456.

type NoSecurityAltIDRepeatingGroup added in v0.4.0

type NoSecurityAltIDRepeatingGroup struct {
	*quickfix.RepeatingGroup
}

NoSecurityAltIDRepeatingGroup is a repeating group, Tag 454.

func NewNoSecurityAltIDRepeatingGroup added in v0.4.0

func NewNoSecurityAltIDRepeatingGroup() NoSecurityAltIDRepeatingGroup

NewNoSecurityAltIDRepeatingGroup returns an initialized, NoSecurityAltIDRepeatingGroup.

func (NoSecurityAltIDRepeatingGroup) Add added in v0.4.0

Add create and append a new NoSecurityAltID to this group.

func (NoSecurityAltIDRepeatingGroup) Get added in v0.4.0

Get returns the ith NoSecurityAltID in the NoSecurityAltIDRepeatinGroup.

type NoUnderlyingSecurityAltID added in v0.4.0

type NoUnderlyingSecurityAltID struct {
	*quickfix.Group
}

NoUnderlyingSecurityAltID is a repeating group element, Tag 457.

func (NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltID added in v0.4.0

func (m NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltID() (v string, err quickfix.MessageRejectError)

GetUnderlyingSecurityAltID gets UnderlyingSecurityAltID, Tag 458.

func (NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltIDSource added in v0.4.0

func (m NoUnderlyingSecurityAltID) GetUnderlyingSecurityAltIDSource() (v string, err quickfix.MessageRejectError)

GetUnderlyingSecurityAltIDSource gets UnderlyingSecurityAltIDSource, Tag 459.

func (NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltID added in v0.4.0

func (m NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltID() bool

HasUnderlyingSecurityAltID returns true if UnderlyingSecurityAltID is present, Tag 458.

func (NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltIDSource added in v0.4.0

func (m NoUnderlyingSecurityAltID) HasUnderlyingSecurityAltIDSource() bool

HasUnderlyingSecurityAltIDSource returns true if UnderlyingSecurityAltIDSource is present, Tag 459.

func (NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltID added in v0.4.0

func (m NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltID(v string)

SetUnderlyingSecurityAltID sets UnderlyingSecurityAltID, Tag 458.

func (NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltIDSource added in v0.4.0

func (m NoUnderlyingSecurityAltID) SetUnderlyingSecurityAltIDSource(v string)

SetUnderlyingSecurityAltIDSource sets UnderlyingSecurityAltIDSource, Tag 459.

type NoUnderlyingSecurityAltIDRepeatingGroup added in v0.4.0

type NoUnderlyingSecurityAltIDRepeatingGroup struct {
	*quickfix.RepeatingGroup
}

NoUnderlyingSecurityAltIDRepeatingGroup is a repeating group, Tag 457.

func NewNoUnderlyingSecurityAltIDRepeatingGroup added in v0.4.0

func NewNoUnderlyingSecurityAltIDRepeatingGroup() NoUnderlyingSecurityAltIDRepeatingGroup

NewNoUnderlyingSecurityAltIDRepeatingGroup returns an initialized, NoUnderlyingSecurityAltIDRepeatingGroup.

func (NoUnderlyingSecurityAltIDRepeatingGroup) Add added in v0.4.0

Add create and append a new NoUnderlyingSecurityAltID to this group.

func (NoUnderlyingSecurityAltIDRepeatingGroup) Get added in v0.4.0

Get returns the ith NoUnderlyingSecurityAltID in the NoUnderlyingSecurityAltIDRepeatinGroup.

type RouteOut

type RouteOut func(msg MassQuote, sessionID quickfix.SessionID) quickfix.MessageRejectError

A RouteOut is the callback type that should be implemented for routing Message.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL