UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

22 lines (21 loc) 554 B
/** * Indicates the current state of the instrument. * - Tag: 965 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const SecurityStatus: Readonly<{ readonly Active: '1'; readonly Inactive: '2'; readonly ActiveClosingOrdersOnly: '3'; readonly Expired: '4'; readonly Delisted: '5'; readonly KnockedOut: '6'; readonly KnockOutRevoked: '7'; readonly PendingExpiry: '8'; readonly Suspended: '9'; readonly Published: '10'; readonly PendingDeletion: '11'; }>;