fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 558 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';
}>;