fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
22 lines (21 loc) • 1.04 kB
TypeScript
/**
* Used to specify the source for the identifier in RefOrderID(1080). This can be an identifier provided in order depth market data when hitting (taking) a specific order or to identify what type of order or quote reference is being provided when seeking credit limit check. In the context of US CAT this can be used to identify related orders and quotes which are parent, previous, or manual orders or quotes. Previous relates to orders changing their unique system assigned order identifier.
* - Tag: 1081
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const RefOrderIDSource: Readonly<{
readonly SecondaryOrderID: '0';
readonly OrderID: '1';
readonly MDEntryID: '2';
readonly QuoteEntryID: '3';
readonly OriginalOrderID: '4';
readonly QuoteID: '5';
readonly QuoteReqID: '6';
readonly PreviousOrderIdentifier: '7';
readonly PreviousQuoteIdentifier: '8';
readonly ParentOrderIdentifier: '9';
readonly ManualOrderIdentifier: 'A';
}>;