@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 332 B
TypeScript
/**
* Type of Peg Offset value
* tag: 836
* @readonly
* @enum {number} (int)
*/
export declare enum PegOffsetType {
/** Price (default) */
Price = 0,
/** Basis Points */
BasisPoints = 1,
/** Ticks */
Ticks = 2,
/** Price Tier / Level */
PriceTier = 3,
/** Percentage */
Percentage = 4
}