fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 830 B
TypeScript
/**
* For equity swaps this specifies the conditions that govern the adjustment to the number of units of the swap.
* - Tag: 42787
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const StreamNotionalAdjustments: 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;
/** Standard
The adjustments to the number of units are not governed by any specific clause. */
readonly Standard: 2;
}>;
export type StreamNotionalAdjustments = (typeof StreamNotionalAdjustments)[keyof typeof StreamNotionalAdjustments];