fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 806 B
TypeScript
/**
* Specifies a specific source for a SecurityListType. Relevant when a certain type can be provided from various sources.
* - Tag: 1471
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SecurityListTypeSource: Readonly<{
/** ICB (Industry Classification Benchmark) published by Dow Jones and FTSE - www.icbenchmark.com */
readonly ICB: 1;
/** NAICS (North American Industry Classification System). Replaced SIC (Standard Industry Classification) www.census.gov/naics or www.naics.com. */
readonly NAICS: 2;
/** GICS (Global Industry Classification Standard) published by Standards & Poor */
readonly GICS: 3;
}>;
export type SecurityListTypeSource = (typeof SecurityListTypeSource)[keyof typeof SecurityListTypeSource];