@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 396 B
TypeScript
/**
* Defines the type of price protection the customer requires on their order.
* tag: 1108
* @readonly
* @enum {string} (char)
*/
export declare enum TriggerPriceTypeScope {
/** None */
None = "0",
/** Local (Exchange, ECN, ATS) */
Local = "1",
/** National (Across all national markets) */
National = "2",
/** Global (Across all markets) */
Global = "3"
}