fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 443 B
TypeScript
/**
* The type of quote used to determine the cash settlement price.
* - Tag: 40027
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CashSettlQuoteMethod: Readonly<{
/** Bid */
readonly Bid: 0;
/** Mid */
readonly Mid: 1;
/** Offer */
readonly Offer: 2;
}>;
export type CashSettlQuoteMethod = (typeof CashSettlQuoteMethod)[keyof typeof CashSettlQuoteMethod];