fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 470 B
TypeScript
/**
* Identifies role of dealer; Agent, Principal, RisklessPrincipal
* - 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";
}>;
export type DealingCapacity = (typeof DealingCapacity)[keyof typeof DealingCapacity];