UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

26 lines (25 loc) 684 B
/** * Final price type of the commodity as specified by the trading venue. * - Tag: 2736 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const CommodityFinalPriceType: Readonly<{ /** Argus McCloskey */ readonly ArgusMcCloskey: 0; /** Baltic */ readonly Baltic: 1; /** Exchange */ readonly Exchange: 2; /** Global Coal */ readonly GlobalCoal: 3; /** IHS McCloskey */ readonly IHSMcCloskey: 4; /** Platts */ readonly Platts: 5; /** Other */ readonly Other: 99; }>; export type CommodityFinalPriceType = (typeof CommodityFinalPriceType)[keyof typeof CommodityFinalPriceType];