fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 647 B
TypeScript
/**
* The type of price that the trigger is compared to.
* - Tag: 1107
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TriggerPriceType: Readonly<{
/** Best Offer */
readonly BestOffer: "1";
/** Last Trade */
readonly LastTrade: "2";
/** Best Bid */
readonly BestBid: "3";
/** Best Bid or Last Trade */
readonly BestBidOrLastTrade: "4";
/** Best Offer or Last Trade */
readonly BestOfferOrLastTrade: "5";
/** Best Mid */
readonly BestMid: "6";
}>;
export type TriggerPriceType = (typeof TriggerPriceType)[keyof typeof TriggerPriceType];