fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
19 lines (18 loc) • 566 B
TypeScript
/**
* Indication that a block trade will be allocated.
* - Tag: 1980
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const BlockTrdAllocIndicator: Readonly<{
/** Block to be allocated */
readonly BlockToBeAllocated: 0;
/** Block not to be allocated */
readonly BlockNotToBeAllocated: 1;
/** Allocated trade
A sub-trade of a block trade. */
readonly AllocatedTrade: 2;
}>;
export type BlockTrdAllocIndicator = (typeof BlockTrdAllocIndicator)[keyof typeof BlockTrdAllocIndicator];