jspurefix
Version:
pure node js fix engine
57 lines (56 loc) • 2.11 kB
TypeScript
/// <reference types="node" />
import { IStandardHeader } from './set/standard_header';
import { IApplicationSequenceControl } from './set/application_sequence_control';
import { IInstrument } from './set/instrument';
import { IInstrumentExtension } from './set/instrument_extension';
import { IFinancingDetails } from './set/financing_details';
import { IUndInstrmtGrp } from './set/und_instrmt_grp';
import { IInstrmtLegGrp } from './set/instrmt_leg_grp';
import { IRelatedInstrumentGrp } from './set/related_instrument_grp';
import { IClearingPriceParametersGrp } from './set/clearing_price_parameters_grp';
export interface ISecurityStatus {
SecurityStatusReqID?: string;
Currency?: string;
MarketID?: string;
MarketSegmentID?: string;
TradeDate?: Date;
TradingSessionID?: string;
TradingSessionSubID?: string;
UnsolicitedIndicator?: boolean;
SecurityTradingStatus?: number;
MarketMakerActivity?: number;
FastMarketIndicator?: boolean;
SecurityTradingEvent?: number;
NextAuctionTime?: Date;
FinancialStatus?: string;
CorporateAction?: string;
HaltReason?: number;
InViewOfCommon?: boolean;
DueToRelated?: boolean;
MDBookType?: number;
MarketDepth?: number;
BuyVolume?: number;
SellVolume?: number;
HighPx?: number;
LowPx?: number;
LastPx?: number;
SettlPrice?: number;
SettlPriceType?: number;
SettlPriceDeterminationMethod?: number;
TransactTime?: Date;
Adjustment?: number;
FirstPx?: number;
LinkageHandlingIndicator?: boolean;
Text?: string;
EncodedTextLen?: number;
EncodedText?: Buffer;
StandardHeader?: IStandardHeader;
ApplicationSequenceControl?: IApplicationSequenceControl;
Instrument?: IInstrument;
InstrumentExtension?: IInstrumentExtension;
FinancingDetails?: IFinancingDetails;
UndInstrmtGrp?: IUndInstrmtGrp[];
InstrmtLegGrp?: IInstrmtLegGrp[];
RelatedInstrumentGrp?: IRelatedInstrumentGrp[];
ClearingPriceParametersGrp?: IClearingPriceParametersGrp[];
}