fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 489 B
TypeScript
/**
* An indicator to override the normal procedure to roll up allocations for the same take-up firm.
* - Tag: 1735
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AllocationRollupInstruction: Readonly<{
/** Roll up */
readonly Rollup: 0;
/** Do not roll up */
readonly DoNotRollUp: 1;
}>;
export type AllocationRollupInstruction = (typeof AllocationRollupInstruction)[keyof typeof AllocationRollupInstruction];