fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 859 B
TypeScript
/**
* The customer capacity for this trade at the time of the order/execution.
Primarily used by futures exchanges to indicate the CTICode (customer type indicator) as required by the US CFTC (Commodity Futures Trading Commission).
* - Tag: 1432
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OrigCustOrderCapacity: Readonly<{
/** Member trading for their own account */
readonly MemberTradingForTheirOwnAccount: 1;
/** Clearing Firm trading for its proprietary account */
readonly ClearingFirmTradingForItsProprietaryAccount: 2;
/** Member trading for another member */
readonly MemberTradingForAnotherMember: 3;
/** All other */
readonly AllOther: 4;
}>;
export type OrigCustOrderCapacity = (typeof OrigCustOrderCapacity)[keyof typeof OrigCustOrderCapacity];