fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
23 lines (22 loc) • 892 B
TypeScript
/**
* Average pricing indicator.
* - Tag: 819
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AvgPxIndicator: Readonly<{
/** No average pricing */
readonly NoAveragePricing: 0;
/** Trade is part of an average price group identified by the AvgPxGroupID(1731) */
readonly Trade: 1;
/** Last trade of the average price group identified by the AvgPxGroupID(1731) */
readonly LastTrade: 2;
/** Trade is part of a notional value average price group
A notional value average price (NVAP) group is effectively closed and available for allocation as long as the NVAP of the group is non-zero. */
readonly NotionalValueAveragePxGroupTrade: 3;
/** Trade is average priced */
readonly AveragePricedTrade: 4;
}>;
export type AvgPxIndicator = (typeof AvgPxIndicator)[keyof typeof AvgPxIndicator];