fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
41 lines (40 loc) • 1.21 kB
TypeScript
/**
* Identifies current status of order. *** SOME VALUES HAVE BEEN REPLACED - See "Replaced Features and Supported Approach" *** (see Volume : "Glossary" for value definitions)
* - Tag: 39
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const OrdStatus: Readonly<{
/** New */
readonly New: '0';
/** Partially filled */
readonly PartiallyFilled: '1';
/** Filled */
readonly Filled: '2';
/** Done for day */
readonly DoneForDay: '3';
/** Canceled */
readonly Canceled: '4';
/** Replaced (No longer used) */
readonly Replaced: '5';
/** Pending Cancel (i.e. result of Order Cancel Request) */
readonly PendingCancel: '6';
/** Stopped */
readonly Stopped: '7';
/** Rejected */
readonly Rejected: '8';
/** Suspended */
readonly Suspended: '9';
/** Pending New */
readonly PendingNew: 'A';
/** Calculated */
readonly Calculated: 'B';
/** Expired */
readonly Expired: 'C';
/** Accepted for Bidding */
readonly AcceptedForBidding: 'D';
/** Pending Replace (i.e. result of Order Cancel/Replace Request) */
readonly PendingReplace: 'E';
}>;