UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

39 lines (38 loc) 1.38 kB
/** * ClearingFeeIndicator * - Tag: 635 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const ClearingFeeIndicator: Readonly<{ /** 1st year delegate trading for own account */ readonly FirstYearDelegate: '1'; /** 2nd year delegate trading for own account */ readonly SecondYearDelegate: '2'; /** 3rd year delegate trading for own account */ readonly ThirdYearDelegate: '3'; /** 4th year delegate trading for own account */ readonly FourthYearDelegate: '4'; /** 5th year delegate trading for own account */ readonly FifthYearDelegate: '5'; /** 6th year delegate trading for own account */ readonly SixthYearDelegate: '9'; /** CBOE Member */ readonly CBOEMember: 'B'; /** Non-member and Customer */ readonly NonMemberAndCustomer: 'C'; /** Equity Member and Clearing Member */ readonly EquityMemberAndClearingMember: 'E'; /** Full and Associate Member trading for own account and as floor brokers */ readonly FullAndAssociateMember: 'F'; /** 106.H and 106.J firms */ readonly Firms106HAnd106J: 'H'; /** GIM, IDEM and COM Membership Interest Holders */ readonly GIM: 'I'; /** Lessee 106.F Employees */ readonly Lessee106FEmployees: 'L'; /** All other ownership types */ readonly AllOtherOwnershipTypes: 'M'; }>;