fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 832 B
TypeScript
/**
* Reason for short sale.
* - Tag: 853
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ShortSaleReason: Readonly<{
/** Dealer Sold Short */
readonly DealerSoldShort: 0;
/** Dealer Sold Short Exempt */
readonly DealerSoldShortExempt: 1;
/** Selling Customer Sold Short */
readonly SellingCustomerSoldShort: 2;
/** Selling Customer Sold Short Exempt */
readonly SellingCustomerSoldShortExempt: 3;
/** Qualified Service Representative (QSR) or Automatic Give-up (AGU) Contra Side Sold Short */
readonly QualifiedServiceRepresentative: 4;
/** QSR or AGU Contra Side Sold Short Exempt */
readonly QSROrAGUContraSideSoldShortExempt: 5;
}>;
export type ShortSaleReason = (typeof ShortSaleReason)[keyof typeof ShortSaleReason];