UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

25 lines (24 loc) 845 B
/** * Identifies class or source of the Currency(15) value. * - Tag: 2897 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const CurrencyCodeSource: Readonly<{ /** CUSIP */ readonly CUSIP: "1"; /** SEDOL */ readonly SEDOL: "2"; /** ISIN */ readonly ISINNumber: "4"; /** ISO Currency Code (ISO 4217) */ readonly ISOCurrencyCode: "6"; /** Financial Instrument Global Identifier An Object Management Group (OMG) standard. Also referred to as FIGI. Formerly known as "Bloomberg Open Symbology BBGID". */ readonly FinancialInstrumentGlobalIdentifier: "S"; /** Digital Token Identifier (ISO 24165) */ readonly DigitalTokenIdentifier: "Y"; }>; export type CurrencyCodeSource = (typeof CurrencyCodeSource)[keyof typeof CurrencyCodeSource];