@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 339 B
TypeScript
/**
* Used to identify whether the order initiator is an aggressor or not in the trade.
* tag: 1057
* @readonly
* @enum {string} (Boolean)
*/
export declare enum AggressorIndicator {
/** Order initiator is aggressor */
OrderInitiatorIsAggressor = "Y",
/** Order initiator is passive */
OrderInitiatorIsPassive = "N"
}