fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 464 B
TypeScript
/**
* Indicates order settlement period for the underlying instrument.
* - Tag: 975
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const UnderlyingSettlementType: Readonly<{
/** T+1 */
readonly TPlus1: 2;
/** T+3 */
readonly TPlus3: 4;
/** T+4 */
readonly TPlus4: 5;
}>;
export type UnderlyingSettlementType = (typeof UnderlyingSettlementType)[keyof typeof UnderlyingSettlementType];