fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
27 lines (26 loc) • 1.03 kB
TypeScript
/**
* Identifies the event which caused origination of the identifier in RegulatoryTradeID(1903). When more than one event is the cause, use the higher enumeration value. For example, if the identifier is originated due to an allocated trade which was cleared and reported, use the enumeration value 2 (Clearing).
* - Tag: 1904
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RegulatoryTradeIDEvent: Readonly<{
/** Initial block trade */
readonly InitialBlockTrade: 0;
/** Allocation
Determination that the block trade will not be further allocated. */
readonly Allocation: 1;
/** Clearing */
readonly Clearing: 2;
/** Compression */
readonly Compression: 3;
/** Novation */
readonly Novation: 4;
/** Termination */
readonly Termination: 5;
/** Post-trade valuation */
readonly PostTrdVal: 6;
}>;
export type RegulatoryTradeIDEvent = (typeof RegulatoryTradeIDEvent)[keyof typeof RegulatoryTradeIDEvent];