UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

33 lines (32 loc) 1.06 kB
/** * Type of entitlement. * - Tag: 1775 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const EntitlementType: Readonly<{ /** Trade */ readonly Trade: 0; /** Make markets */ readonly MakeMarkets: 1; /** Hold positions */ readonly HoldPositions: 2; /** Perform give-ups */ readonly PerformGiveUps: 3; /** Submit Indications of Interest (IOIs) */ readonly SubmitIOIs: 4; /** Subscribe to market data */ readonly SubscribeMarketData: 5; /** Short with pre-borrow Short sell order is allowed with pre-borrowing. */ readonly ShortWithPreBorrow: 6; /** Submit quote requests Entitled to submit quote requests into the market in order to receive quotes from the market. */ readonly SubmitQuoteRequests: 7; /** Respond to quote requests Entitled to respond to quote requests from the market. */ readonly RespondToQuoteRequests: 8; }>; export type EntitlementType = (typeof EntitlementType)[keyof typeof EntitlementType];