fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
17 lines (16 loc) • 649 B
TypeScript
/**
* Additional information about the security (e.g. preferred, warrants, etc.). Note also see SecurityType (167).
As defined in the NYSE Stock and bond Symbol Directory and in the AMEX Fitch Directory.
* - Tag: 65
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const SymbolSfx: Readonly<{
/** EUCP with lump-sum interest rather than discount price */
readonly EUCPWithLumpSumInterest: "CD";
/** "When Issued" for a security to be reissued under an old CUSIP or ISIN */
readonly WhenIssued: "WI";
}>;
export type SymbolSfx = (typeof SymbolSfx)[keyof typeof SymbolSfx];