fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 555 B
TypeScript
/**
* Indicates the type of multiplier being applied to the contract. Can be optionally used to further define what unit ContractMultiplier(tag 231) is expressed in.
* - Tag: 1435
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ContractMultiplierUnit: Readonly<{
/** Shares */
readonly Shares: 0;
/** Hours */
readonly Hours: 1;
/** Days */
readonly Days: 2;
}>;
export type ContractMultiplierUnit = (typeof ContractMultiplierUnit)[keyof typeof ContractMultiplierUnit];