jspurefix
Version:
pure node js fix engine
36 lines (35 loc) • 995 B
TypeScript
import { IStandardHeader } from './set/standard_header';
import { IStandardTrailer } from './set/standard_trailer';
export interface IQuote {
StandardHeader: IStandardHeader;
QuoteReqID?: string;
QuoteID: string;
Symbol: string;
SymbolSfx?: string;
SecurityID?: string;
IDSource?: string;
SecurityType?: string;
MaturityMonthYear?: string;
MaturityDay?: string;
PutOrCall?: number;
StrikePrice?: number;
OptAttribute?: string;
SecurityExchange?: string;
Issuer?: string;
SecurityDesc?: string;
BidPx?: number;
OfferPx?: number;
BidSize?: number;
OfferSize?: number;
ValidUntilTime?: string;
BidSpotRate?: number;
OfferSpotRate?: number;
BidForwardPoints?: number;
OfferForwardPoints?: number;
TransactTime?: string;
FutSettDate?: string;
OrdType?: string;
FutSettDate2?: string;
OrderQty2?: number;
StandardTrailer: IStandardTrailer;
}