fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
18 lines (17 loc) • 572 B
TypeScript
/**
* Indicates if a trade should be or has been published via a market publication service. The indicator governs all publication services of the recipient. Replaces PublishTrdIndicator(852).
* - Tag: 1390
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradePublishIndicator: Readonly<{
/** Do Not Publish Trade */
readonly DoNotPublishTrade: 0;
/** Publish Trade */
readonly PublishTrade: 1;
/** Deferred Publication */
readonly DeferredPublication: 2;
readonly Published: 3;
}>;