fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 538 B
TypeScript
/**
* Method for price quotation
* - Tag: 1196
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const PriceQuoteMethod: Readonly<{
/** Standard, money per unit of a physical */
readonly Standard: "STD";
/** Index */
readonly Index: "INX";
/** Interest rate Index */
readonly InterestRateIndex: "INT";
/** Percent of Par */
readonly PercentOfPar: "PCTPAR";
}>;
export type PriceQuoteMethod = (typeof PriceQuoteMethod)[keyof typeof PriceQuoteMethod];