fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 522 B
TypeScript
/**
* When rate averaging is applicable, used to specify whether a weighted or unweighted average calculation method is to be used.
* - Tag: 40806
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamAveragingMethod: Readonly<{
/** Unweighted */
readonly Unweighted: 0;
/** Weighted */
readonly Weighted: 1;
}>;
export type PaymentStreamAveragingMethod = (typeof PaymentStreamAveragingMethod)[keyof typeof PaymentStreamAveragingMethod];