fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
20 lines (19 loc) • 570 B
TypeScript
/**
* CustOrderCapacity
* - Tag: 582
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CustOrderCapacity: 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;
readonly RetailCustomer: 5;
}>;