fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 856 B
TypeScript
/**
* Identifies the origin of the order.
* - Tag: 1724
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OrderOrigination: Readonly<{
/** Order received from a customer */
readonly OrderReceivedFromCustomer: 1;
/** Order received from within the firm */
readonly OrderReceivedFromWithinFirm: 2;
/** Order received from another broker-dealer */
readonly OrderReceivedFromAnotherBrokerDealer: 3;
/** Order received from a customer or originated from within the firm */
readonly OrderReceivedFromCustomerOrWithFirm: 4;
/** Order received from a direct access or sponsored access customer */
readonly OrderReceivedFromDirectAccessCustomer: 5;
readonly OrderReceivedFromForeignDealerEquivalent: 6;
readonly OrderReceivedFromExecutionOnlyService: 7;
}>;