UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

28 lines (27 loc) 893 B
/** * Allows classification of instruments according to a set of high level reasons. Classification reasons describe the classes in which the instrument participates. * - Tag: 1583 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SecurityClassificationReason: Readonly<{ /** Fee */ readonly Fee: 0; /** Credit Controls */ readonly CreditControls: 1; /** Margin */ readonly Margin: 2; /** Entitlement / Eligibility */ readonly EntitlementOrEligibility: 3; /** Market Data */ readonly MarketData: 4; /** Account Selection */ readonly AccountSelection: 5; /** Delivery Process */ readonly DeliveryProcess: 6; /** Sector */ readonly Sector: 7; }>; export type SecurityClassificationReason = (typeof SecurityClassificationReason)[keyof typeof SecurityClassificationReason];