fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
23 lines (22 loc) • 1.22 kB
TypeScript
/**
* Change of ownership of an order to a specific party.
* - Tag: 2679
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OrderOwnershipIndicator: Readonly<{
/** No change of ownership (default) */
readonly NoChange: 0;
/** Change of ownership to executing party
Executing party can be given either implicitly via session attributes or explicitly via Parties component. The party taking over ownership must also be the one submitting the request. */
readonly ExecutingPartyChange: 1;
/** Change of ownership to entering party
Entering party can be given either implicitly via session attributes or explicitly via Parties component. The party taking over ownership must also be the one submitting the request. */
readonly EnteringPartyChange: 2;
/** Change of ownership to specified party
Ownership is transferred by a third party from/to the parties specified via Parties component together with PartyRoleQualifier(2376) = Current(18) and New(19). */
readonly SpecifiedPartyChange: 3;
}>;
export type OrderOwnershipIndicator = (typeof OrderOwnershipIndicator)[keyof typeof OrderOwnershipIndicator];