fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 701 B
TypeScript
/**
* Specifies the source of the price(s) of the security used in the calculation of the metrics or analytics data.
* - Tag: 2993
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MetricsCalculationPriceSource: Readonly<{
/** Real-time
Real-time market prices used as the data source in metrics/analytics calculation. */
readonly Realtime: 1;
/** End of day
Official end of day price (marking) used as the data source in metrics/analytics calculation. */
readonly EndOfDay: 2;
}>;
export type MetricsCalculationPriceSource = (typeof MetricsCalculationPriceSource)[keyof typeof MetricsCalculationPriceSource];