UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 362 B
/** * Indicates if a trade should be reported via a market reporting service. * - Tag: 852 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const PublishTrdIndicator: Readonly<{ /** Do Not Report Trade */ readonly DoNotReportTrade: 'N'; /** Report Trade */ readonly ReportTrade: 'Y'; }>;