UNPKG

jspurefix

Version:
65 lines (63 loc) 2.3 kB
import { IStandardHeader } from './set/standard_header' import { IStandardTrailer } from './set/standard_trailer' /* **************************************************************** * An optional response to Quote, Mass Quote, Quote Cancel, and * * Quote Request message is the Quote Acknowledgement message. * **************************************************************** */ export interface IQuoteAcknowledgement { StandardHeader: IStandardHeader QuoteReqID?: string// 131 QuoteID?: string// 117 QuoteAckStatus: number// 297 QuoteRejectReason?: number// 300 QuoteResponseLevel?: number// 301 TradingSessionID?: string// 336 Text?: string// 58 NoQuoteSets?: number// 296 QuoteSetID?: string// 302 UnderlyingSymbol?: string// 311 UnderlyingSymbolSfx?: string// 312 UnderlyingSecurityID?: string// 309 UnderlyingIDSource?: string// 305 UnderlyingSecurityType?: string// 310 UnderlyingMaturityMonthYear?: string// 313 UnderlyingMaturityDay?: string// 314 UnderlyingPutOrCall?: number// 315 UnderlyingStrikePrice?: number// 316 UnderlyingOptAttribute?: string// 317 UnderlyingContractMultiplier?: number// 436 UnderlyingCouponRate?: number// 435 UnderlyingSecurityExchange?: string// 308 UnderlyingIssuer?: string// 306 EncodedUnderlyingIssuerLen?: number// 362 EncodedUnderlyingIssuer?: Buffer// 363 UnderlyingSecurityDesc?: string// 307 EncodedUnderlyingSecurityDescLen?: number// 364 EncodedUnderlyingSecurityDesc?: Buffer// 365 TotQuoteEntries?: number// 304 NoQuoteEntries?: number// 295 QuoteEntryID?: string// 299 Symbol?: string// 55 SymbolSfx?: string// 65 SecurityID?: string// 48 IDSource?: string// 22 SecurityType?: string// 167 MaturityMonthYear?: string// 200 MaturityDay?: string// 205 PutOrCall?: number// 201 StrikePrice?: number// 202 OptAttribute?: string// 206 ContractMultiplier?: number// 231 CouponRate?: number// 223 SecurityExchange?: string// 207 Issuer?: string// 106 EncodedIssuerLen?: number// 348 EncodedIssuer?: Buffer// 349 SecurityDesc?: string// 107 EncodedSecurityDescLen?: number// 350 EncodedSecurityDesc?: Buffer// 351 QuoteEntryRejectReason?: number// 368 StandardTrailer: IStandardTrailer }