fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 511 B
TypeScript
/**
* Used to identify whether the order initiator is an aggressor or not in the trade.
* - Tag: 1057
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const AggressorIndicator: Readonly<{
/** Order initiator is aggressor */
readonly OrderInitiatorIsAggressor: "Y";
/** Order initiator is passive */
readonly OrderInitiatorIsPassive: "N";
}>;
export type AggressorIndicator = (typeof AggressorIndicator)[keyof typeof AggressorIndicator];