fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
28 lines (27 loc) • 824 B
TypeScript
/**
* Designates the capacity in which the order is submitted for trading by the market participant.
* - Tag: 1815
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradingCapacity: Readonly<{
/** Customer */
readonly Customer: 1;
/** Customer professional */
readonly CustomerProfessional: 2;
/** Broker-dealer */
readonly BrokerDealer: 3;
/** Customer broker-dealer */
readonly CustomerBrokerDealer: 4;
/** Principal */
readonly Principal: 5;
/** Market maker */
readonly MarketMaker: 6;
/** Away market maker */
readonly AwayMarketMaker: 7;
/** Systematic internaliser */
readonly SystematicInternaliser: 8;
}>;
export type TradingCapacity = (typeof TradingCapacity)[keyof typeof TradingCapacity];