fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 322 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<{
readonly Bid: 0;
/** Mid */
readonly Mid: 1;
/** Offer */
readonly Offer: 2;
}>;