fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 745 B
TypeScript
/**
* Code to identify the desired frequency of progress reports.
* - Tag: 414
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ProgRptReqs: Readonly<{
/** Buy-side explicitly requests status using Statue Request (default), the sell-side firm can, however, send a DONE status List STatus Response in an unsolicited fashion */
readonly BuySideRequests: 1;
/** Sell-side periodically sends status using List Status. Period optionally specified in ProgressPeriod. */
readonly SellSideSends: 2;
/** Real-time execution reports (to be discourage) */
readonly RealTimeExecutionReports: 3;
}>;
export type ProgRptReqs = (typeof ProgRptReqs)[keyof typeof ProgRptReqs];