fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 460 B
TypeScript
/**
* 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";
}>;
export type PublishTrdIndicator = (typeof PublishTrdIndicator)[keyof typeof PublishTrdIndicator];