fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 487 B
TypeScript
/**
* Used to describe the ownership of the position.
* - Tag: 1834
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PositionCapacity: Readonly<{
/** Principal */
readonly Principal: 0;
/** Agent */
readonly Agent: 1;
/** Customer */
readonly Customer: 2;
/** Counterparty */
readonly Counterparty: 3;
}>;
export type PositionCapacity = (typeof PositionCapacity)[keyof typeof PositionCapacity];