fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
24 lines (23 loc) • 704 B
TypeScript
/**
* Specifies how long the order remains in effect. Absence of this field is interpreted as DAY. NOTE not applicable to CIV Orders.
* - Tag: 59
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TimeInForce: Readonly<{
readonly Day: '0';
readonly GoodTillCancel: '1';
readonly AtTheOpening: '2';
readonly ImmediateOrCancel: '3';
readonly FillOrKill: '4';
readonly GoodTillCrossing: '5';
readonly GoodTillDate: '6';
readonly AtTheClose: '7';
readonly GoodThroughCrossing: '8';
readonly AtCrossing: '9';
readonly GoodForTime: 'A';
readonly GoodForAuction: 'B';
readonly GoodForMonth: 'C';
}>;