fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
34 lines (33 loc) • 1.1 kB
TypeScript
/**
* Indicates what type of commission is being expressed in CommissionAmount(2640).
* - Tag: 2641
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CommissionAmountType: Readonly<{
/** Unspecified */
readonly Unspecified: 0;
/** Acceptance
The bank's charge for issuing a Letter of Credit. */
readonly Acceptance: 1;
/** Broker
The executing broker's commission. */
readonly Broker: 2;
/** Clearing broker
The clearing broker's commission. */
readonly ClearingBroker: 3;
/** Retail
Commission charged by or related to retail sales. */
readonly Retail: 4;
/** Sales commission
The commission charged by the sales desk. */
readonly SalesCommission: 5;
/** Local commission
Commission paid to local broker in a cross-border transaction. */
readonly LocalCommission: 6;
/** Research payment */
readonly ResearchPayment: 7;
}>;
export type CommissionAmountType = (typeof CommissionAmountType)[keyof typeof CommissionAmountType];