fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 576 B
TypeScript
/**
* Indicates the type of entity who initiated an event, e.g. modification or cancellation of an order or quote.
* - Tag: 2830
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const EventInitiatorType: Readonly<{
/** Customer or client */
readonly CustomerOrClient: "C";
/** Exchange or execution venue */
readonly ExchangeOrExecutionVenue: "E";
/** Firm or broker */
readonly FirmOrBroker: "F";
}>;
export type EventInitiatorType = (typeof EventInitiatorType)[keyof typeof EventInitiatorType];