UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 592 B
/** * Indicates whether a restriction applies to short selling a security. * - Tag: 1687 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ShortSaleRestriction: Readonly<{ /** No restrictions */ readonly NoRestrictions: 0; /** Security is not shortable */ readonly SecurityNotShortable: 1; /** Security not shortable at or below the best bid */ readonly SecurityNotShortableAtOrBelowBestBid: 2; /** Security is not shortable without pre-borrow */ readonly SecurityNotShortableWithoutPreBorrow: 3; }>;