fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 829 B
TypeScript
/**
* Specifies the conditions that govern the adjustment to the number of units of the return swap.
* - Tag: 2617
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const UnderlyingNotionalAdjustments: Readonly<{
/** Execution
The adjustments to the number of units are governed by an execution clause. */
readonly Execution: 0;
/** Portfolio rebalancing
The adjustments to the number of units are governed by a portfolio rebalancing clause. */
readonly PortfolioRebalancing: 1;
/** Standrd
The adjustments to the number of units are not governed by any specific clause. */
readonly Standard: 2;
}>;
export type UnderlyingNotionalAdjustments = (typeof UnderlyingNotionalAdjustments)[keyof typeof UnderlyingNotionalAdjustments];