fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 416 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';
}>;