fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
25 lines (24 loc) • 662 B
TypeScript
/**
* Identifies Trade Report message transaction type
(Prior to FIX 4.4 this field was of type char)
* - Tag: 487
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeReportTransType: Readonly<{
/** New */
readonly New: 0;
/** Cancel */
readonly Cancel: 1;
/** Replace */
readonly Replace: 2;
/** Release */
readonly Release: 3;
/** Reverse */
readonly Reverse: 4;
/** Cancel Due To Back Out of Trade */
readonly CancelDueToBackOutOfTrade: 5;
}>;
export type TradeReportTransType = (typeof TradeReportTransType)[keyof typeof TradeReportTransType];