UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

40 lines (39 loc) 1.78 kB
/** * Type of account associated with an order * - Tag: 581 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AccountType: Readonly<{ /** Account is carried on customer side of the 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; /** Equities specialist */ readonly EquitiesSpecialist: 9; /** Options market maker */ readonly OptionsMarketMaker: 10; /** Options firm account */ readonly OptionsFirmAccount: 11; /** Account for customer and non-customer orders Account aggregates orders from customers and non-customers. In the context of IIROC UMIR this account type can be used for bundled orders (BU), i.e. orders including client, non-client and principal orders. */ readonly AccountCustomerNonCustomerOrders: 12; /** Account for orders from multiple customers Account aggregates orders from multiple customers. In the context of IIROC UMIR this account type can be used for multiple client orders (MC), i.e. orders including orders from more than one client but no principal or non-client orders. */ readonly AccountOrdersMultipleCustomers: 13; }>; export type AccountType = (typeof AccountType)[keyof typeof AccountType];