fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 693 B
TypeScript
/**
* 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;
}>;
export type ShortSaleRestriction = (typeof ShortSaleRestriction)[keyof typeof ShortSaleRestriction];