UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

21 lines (20 loc) 735 B
/** * Indicates whether the order or quote was crossed with another order or quote having the same context, e.g. having accounts with a common ownership. * - Tag: 2523 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const CrossedIndicator: Readonly<{ /** No cross Crossing did not occur. */ readonly NoCross: 0; /** Cross rejected Crossing occurred but execution was prevented, e.g. due to self-match prevention. */ readonly CrossRejected: 1; /** Cross accepted Crossing occurred but execution was permitted. */ readonly CrossAccepted: 2; }>; export type CrossedIndicator = (typeof CrossedIndicator)[keyof typeof CrossedIndicator];