fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 775 B
TypeScript
/**
* Indicates whether the trade or position being reported was cleared through a clearing organization.
* - Tag: 1832
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ClearedIndicator: Readonly<{
/** Not cleared
Trade or position has not yet been submitted for clearing. */
readonly NotCleared: 0;
/** Cleared
Trade or position has been successfully cleared. */
readonly Cleared: 1;
/** Submitted
Trade or position has been submitted for clearing. */
readonly Submitted: 2;
/** Rejected
Trade or position was rejected by clearing. */
readonly Rejected: 3;
}>;
export type ClearedIndicator = (typeof ClearedIndicator)[keyof typeof ClearedIndicator];