UNPKG

jspurefix

Version:
32 lines (31 loc) 1.04 kB
/// <reference types="node" /> import { IStandardHeader } from './set/standard_header'; import { IInstrument } from './set/instrument'; import { IUndInstrmtGrp } from './set/und_instrmt_grp'; import { IInstrmtLegGrp } from './set/instrmt_leg_grp'; import { IOrderQtyData } from './set/order_qty_data'; import { IRegulatoryTradeIDGrp } from './set/regulatory_trade_id_grp'; export interface IExecutionAck { OrderID: string; SecondaryOrderID?: string; ClOrdID?: string; ExecAckStatus: string; ExecID: string; DKReason?: string; Side: string; LastQty?: number; LastPx?: number; PriceType?: number; LastParPx?: number; CumQty?: number; AvgPx?: number; Text?: string; EncodedTextLen?: number; EncodedText?: Buffer; StandardHeader?: IStandardHeader; Instrument?: IInstrument; UndInstrmtGrp?: IUndInstrmtGrp[]; InstrmtLegGrp?: IInstrmtLegGrp[]; OrderQtyData?: IOrderQtyData; RegulatoryTradeIDGrp?: IRegulatoryTradeIDGrp[]; }