fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 426 B
TypeScript
/**
* The quote side from which the index price is to be determined.
* - Tag: 2601
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const StrikeIndexQuote: Readonly<{
/** Bid */
readonly Bid: 0;
/** Mid */
readonly Mid: 1;
/** Offer */
readonly Offer: 2;
}>;
export type StrikeIndexQuote = (typeof StrikeIndexQuote)[keyof typeof StrikeIndexQuote];