fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 942 B
TypeScript
/**
* Type of account associated with a confirmation or other trade-level message
* - Tag: 798
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AllocAccountType: Readonly<{
/** Account is carried pn customer side of books */
readonly CarriedCustomerSide: 1;
/** Account is carried on non-customer side of books */
readonly CarriedNonCustomerSide: 2;
/** House trader */
readonly HouseTrader: 3;
/** Floor trader */
readonly FloorTrader: 4;
/** Account is carried on non-customer side of books and is cross margined */
readonly CarriedNonCustomerSideCrossMargined: 6;
/** Account is house trader and is cross margined */
readonly HouseTraderCrossMargined: 7;
/** Joint back office account (JBO) */
readonly JointBackOfficeAccount: 8;
}>;
export type AllocAccountType = (typeof AllocAccountType)[keyof typeof AllocAccountType];