fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
14 lines (13 loc) • 397 B
TypeScript
/**
* 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<{
readonly NoCross: 0;
readonly CrossRejected: 1;
readonly CrossAccepted: 2;
}>;