@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
26 lines (25 loc) • 600 B
TypeScript
/**
* Defines the type of peg.
* tag: 1094
* @readonly
* @enum {number} (int)
*/
export declare enum PegPriceType {
/** Last peg (last sale) */
LastPeg = 1,
/** Mid-price peg (midprice of inside quote) */
MidPricePeg = 2,
/** Opening peg */
OpeningPeg = 3,
/** Market peg */
MarketPeg = 4,
/** Primary peg (primary market - buy at bid or sell at offer) */
PrimaryPeg = 5,
/** Peg to VWAP */
PegToVWAP = 7,
/** Trailing Stop Peg */
TrailingStopPeg = 8,
/** Peg to Limit Price */
PegToLimitPrice = 9,
ShortSaleMinPricePeg = 10
}