fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
29 lines (28 loc) • 920 B
TypeScript
/**
* Designates the capacity of the firm placing the order.
(as of FIX 4.3, this field replaced Rule80A (tag 47) --used in conjunction with OrderRestrictions (529) field)
(see Volume : "Glossary" for value definitions)
* - Tag: 528
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const OrderCapacity: Readonly<{
/** Agency */
readonly Agency: "A";
/** Proprietary */
readonly Proprietary: "G";
/** Individual */
readonly Individual: "I";
/** Principal
For some markets Principal may include Proprietary. */
readonly Principal: "P";
/** Riskless Principal */
readonly RisklessPrincipal: "R";
/** Agent for Other Member */
readonly AgentForOtherMember: "W";
/** Mixed capacity */
readonly MixedCapacity: "M";
}>;
export type OrderCapacity = (typeof OrderCapacity)[keyof typeof OrderCapacity];