fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 679 B
TypeScript
/**
* Ratios between various entities.
* - Tag: 2472
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MDStatisticRatioType: Readonly<{
readonly BuyersToSellers: 1;
readonly UpticksToDownticks: 2;
readonly MarketMakerToNonMarketMaker: 3;
readonly AutomatedToNonAutomated: 4;
readonly OrdersToTrades: 5;
readonly QuotesToTrades: 6;
readonly OrdersAndQuotesToTrades: 7;
readonly FailedToTotalTradedValue: 8;
readonly BenefitsToTotalTradedValue: 9;
readonly FeesToTotalTradedValue: 10;
readonly TradeVolumeToTotalTradedVolume: 11;
readonly OrdersToTotalNumberOrders: 12;
}>;