fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 480 B
TypeScript
/**
* The default election for determining settlement price.
* - Tag: 42217
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CashSettlPriceDefault: Readonly<{
/** Close
Official closing price. */
readonly Close: 0;
/** Hedge
Determined by the hedging party. */
readonly Hedge: 1;
}>;
export type CashSettlPriceDefault = (typeof CashSettlPriceDefault)[keyof typeof CashSettlPriceDefault];