fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
17 lines (16 loc) • 660 B
TypeScript
/**
* Indicates whether the trade price was adjusted for compensation (i.e. includes a mark-up, mark-down or commission) in the price paid.
In the context of MSRB and FINRA TRACE reporting requirements, this is used among firms to indicate trade remuneration.
* - Tag: 2356
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RemunerationIndicator: Readonly<{
/** No remuneration paid */
readonly NoRemunerationPaid: 0;
/** Remuneration paid */
readonly RemunerationPaid: 1;
}>;
export type RemunerationIndicator = (typeof RemunerationIndicator)[keyof typeof RemunerationIndicator];