@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
21 lines (20 loc) • 586 B
TypeScript
/**
* Defines the type of contingency.
* tag: 1385
* @readonly
* @enum {number} (int)
*/
export declare enum ContingencyType {
/** One Cancels the Other (OCO) */
OneCancelsTheOther = 1,
/** One Triggers the Other (OTO) */
OneTriggersTheOther = 2,
/** One Updates the Other (OUO) - Absolute Quantity Reduction */
OneUpdatesTheOtherAbsolute = 3,
/** One Updates the Other (OUO) - Proportional Quantity Reduction */
OneUpdatesTheOtherProportional = 4,
/** Bid and Offer */
BidAndOffer = 5,
/** Bid and Offer OCO */
BidAndOfferOCO = 6
}