fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
14 lines (13 loc) • 674 B
TypeScript
/**
* Indicates the contingency attribute for a trade in an asset class that may be contingent on the clearing of a corresponding paired trade (for example Exchange for Physical (EFP), Exchange for Swap (EFS), Exchange for Related (EFR) or Exchange for Option (EFO), collectively called EFRPs). Once the paired trade clears or fails to clear, the related trade (the trade which carries this attribute) ceases to exist.
* - Tag: 2387
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeContingency: Readonly<{
readonly DoesNotApply: 0;
readonly ContingentTrade: 1;
readonly NonContingentTrade: 2;
}>;