news

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 2016 License: Apache-1.1 Imports: 4 Imported by: 0

Documentation

Overview

Package news msg type = B.

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 LinesOfText

type LinesOfText struct {
	//Text is a required field for LinesOfText.
	Text string `fix:"58"`
	//EncodedTextLen is a non-required field for LinesOfText.
	EncodedTextLen *int `fix:"354"`
	//EncodedText is a non-required field for LinesOfText.
	EncodedText *string `fix:"355"`
}

LinesOfText is a repeating group in News

func NewLinesOfText

func NewLinesOfText(text string) *LinesOfText

NewLinesOfText returns an initialized LinesOfText instance

func (*LinesOfText) SetEncodedText

func (m *LinesOfText) SetEncodedText(v string)

func (*LinesOfText) SetEncodedTextLen

func (m *LinesOfText) SetEncodedTextLen(v int)

func (*LinesOfText) SetText

func (m *LinesOfText) SetText(v string)

type Message

type Message struct {
	FIXMsgType string `fix:"B"`
	fix42.Header
	//OrigTime is a non-required field for News.
	OrigTime *time.Time `fix:"42"`
	//Urgency is a non-required field for News.
	Urgency *string `fix:"61"`
	//Headline is a required field for News.
	Headline string `fix:"148"`
	//EncodedHeadlineLen is a non-required field for News.
	EncodedHeadlineLen *int `fix:"358"`
	//EncodedHeadline is a non-required field for News.
	EncodedHeadline *string `fix:"359"`
	//NoRoutingIDs is a non-required field for News.
	NoRoutingIDs []NoRoutingIDs `fix:"215,omitempty"`
	//NoRelatedSym is a non-required field for News.
	NoRelatedSym []NoRelatedSym `fix:"146,omitempty"`
	//LinesOfText is a required field for News.
	LinesOfText []LinesOfText `fix:"33"`
	//URLLink is a non-required field for News.
	URLLink *string `fix:"149"`
	//RawDataLength is a non-required field for News.
	RawDataLength *int `fix:"95"`
	//RawData is a non-required field for News.
	RawData *string `fix:"96"`
	fix42.Trailer
}

Message is a News FIX Message

func New

func New(headline string, linesoftext []LinesOfText) *Message

New returns an initialized News instance

func (Message) Marshal

func (m Message) Marshal() quickfix.Message

Marshal converts Message to a quickfix.Message instance

func (*Message) SetEncodedHeadline

func (m *Message) SetEncodedHeadline(v string)

func (*Message) SetEncodedHeadlineLen

func (m *Message) SetEncodedHeadlineLen(v int)

func (*Message) SetHeadline

func (m *Message) SetHeadline(v string)

func (*Message) SetLinesOfText

func (m *Message) SetLinesOfText(v []LinesOfText)

func (*Message) SetNoRelatedSym

func (m *Message) SetNoRelatedSym(v []NoRelatedSym)

func (*Message) SetNoRoutingIDs

func (m *Message) SetNoRoutingIDs(v []NoRoutingIDs)

func (*Message) SetOrigTime

func (m *Message) SetOrigTime(v time.Time)

func (*Message) SetRawData

func (m *Message) SetRawData(v string)

func (*Message) SetRawDataLength

func (m *Message) SetRawDataLength(v int)
func (m *Message) SetURLLink(v string)

func (*Message) SetUrgency

func (m *Message) SetUrgency(v string)

type NoRelatedSym

type NoRelatedSym struct {
	//RelatdSym is a non-required field for NoRelatedSym.
	RelatdSym *string `fix:"46"`
	//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"`
}

NoRelatedSym is a repeating group in News

func NewNoRelatedSym

func NewNoRelatedSym() *NoRelatedSym

NewNoRelatedSym returns an initialized NoRelatedSym instance

func (*NoRelatedSym) SetContractMultiplier

func (m *NoRelatedSym) SetContractMultiplier(v float64)

func (*NoRelatedSym) SetCouponRate

func (m *NoRelatedSym) SetCouponRate(v float64)

func (*NoRelatedSym) SetEncodedIssuer

func (m *NoRelatedSym) SetEncodedIssuer(v string)

func (*NoRelatedSym) SetEncodedIssuerLen

func (m *NoRelatedSym) SetEncodedIssuerLen(v int)

func (*NoRelatedSym) SetEncodedSecurityDesc

func (m *NoRelatedSym) SetEncodedSecurityDesc(v string)

func (*NoRelatedSym) SetEncodedSecurityDescLen

func (m *NoRelatedSym) SetEncodedSecurityDescLen(v int)

func (*NoRelatedSym) SetIDSource

func (m *NoRelatedSym) SetIDSource(v string)

func (*NoRelatedSym) SetIssuer

func (m *NoRelatedSym) SetIssuer(v string)

func (*NoRelatedSym) SetMaturityDay

func (m *NoRelatedSym) SetMaturityDay(v int)

func (*NoRelatedSym) SetMaturityMonthYear

func (m *NoRelatedSym) SetMaturityMonthYear(v string)

func (*NoRelatedSym) SetOptAttribute

func (m *NoRelatedSym) SetOptAttribute(v string)

func (*NoRelatedSym) SetPutOrCall

func (m *NoRelatedSym) SetPutOrCall(v int)

func (*NoRelatedSym) SetRelatdSym

func (m *NoRelatedSym) SetRelatdSym(v string)

func (*NoRelatedSym) SetSecurityDesc

func (m *NoRelatedSym) SetSecurityDesc(v string)

func (*NoRelatedSym) SetSecurityExchange

func (m *NoRelatedSym) SetSecurityExchange(v string)

func (*NoRelatedSym) SetSecurityID

func (m *NoRelatedSym) SetSecurityID(v string)

func (*NoRelatedSym) SetSecurityType

func (m *NoRelatedSym) SetSecurityType(v string)

func (*NoRelatedSym) SetStrikePrice

func (m *NoRelatedSym) SetStrikePrice(v float64)

func (*NoRelatedSym) SetSymbolSfx

func (m *NoRelatedSym) SetSymbolSfx(v string)

type NoRoutingIDs

type NoRoutingIDs struct {
	//RoutingType is a non-required field for NoRoutingIDs.
	RoutingType *int `fix:"216"`
	//RoutingID is a non-required field for NoRoutingIDs.
	RoutingID *string `fix:"217"`
}

NoRoutingIDs is a repeating group in News

func NewNoRoutingIDs

func NewNoRoutingIDs() *NoRoutingIDs

NewNoRoutingIDs returns an initialized NoRoutingIDs instance

func (*NoRoutingIDs) SetRoutingID

func (m *NoRoutingIDs) SetRoutingID(v string)

func (*NoRoutingIDs) SetRoutingType

func (m *NoRoutingIDs) SetRoutingType(v int)

type RouteOut

type RouteOut func(msg Message, 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