fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 621 B
TypeScript
/**
* Identifies role of dealer in the trade.
* - Tag: 1048
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const DealingCapacity: Readonly<{
/** Agent */
readonly Agent: "A";
/** Principal */
readonly Principal: "P";
/** Riskless Principal */
readonly RisklessPrincipal: "R";
/** Cross as principal
In the context of the EU Consolidated Tape, this is used for the post-trade transparency flag MTCH. */
readonly CrossAsPrincipal: "X";
}>;
export type DealingCapacity = (typeof DealingCapacity)[keyof typeof DealingCapacity];