@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
18 lines (17 loc) • 423 B
TypeScript
/**
* Specifies the basis or unit used to calculate the total commission based on the rate.
* tag: 13
* @readonly
* @enum {string} (char)
*/
export declare enum CommType {
PerUnit = "1",
/** Percent */
Percent = "2",
Absolute = "3",
PercentageWaivedCashDiscount = "4",
PercentageWaivedEnhancedUnits = "5",
PointsPerBondOrContract = "6",
BasisPoints = "7",
AmountPerContract = "8"
}