fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 888 B
TypeScript
/**
* Defines the unit for a miscellaneous fee.
* - Tag: 891
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MiscFeeBasis: Readonly<{
/** Absolute
The fee or markup is a total fixed amount expressed in the currency of the trade. */
readonly Absolute: 0;
/** Per Unit
The fee or markup is an amount per quantity unit, i.e. per share or contract, expressed in the currency of the trade. */
readonly PerUnit: 1;
/** Percentage
The percentage is expressed in standard FIX "Percentage" datatype format, i.e. "0.01" for 1 percent and ranges between 0 and 1. It is the number which when multiplied by the trade price and quantity produces the total amount of the fee or markup. */
readonly Percentage: 2;
}>;
export type MiscFeeBasis = (typeof MiscFeeBasis)[keyof typeof MiscFeeBasis];