jspurefix
Version:
pure node js fix engine
36 lines (34 loc) • 1.15 kB
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IStandardTrailer } from './set/standard_trailer'
/*
*************************************************************
* In some markets it is the practice to request quotes from *
* brokers prior to placement of an order. The quote request *
* message is used for this purpose. *
*************************************************************
*/
export interface IQuoteRequest {
StandardHeader: IStandardHeader
QuoteReqID: string// 131
Symbol: string// 55
SymbolSfx?: string// 65
SecurityID?: string// 48
IDSource?: string// 22
SecurityType?: string// 167
MaturityMonthYear?: string// 200
MaturityDay?: number// 205
PutOrCall?: number// 201
StrikePrice?: number// 202
OptAttribute?: string// 206
SecurityExchange?: string// 207
Issuer?: string// 106
SecurityDesc?: string// 107
PrevClosePx?: number// 140
Side?: string// 54
OrderQty?: number// 38
FutSettDate?: string// 64
OrdType?: string// 40
FutSettDate2?: string// 193
OrderQty2?: number// 192
StandardTrailer: IStandardTrailer
}