UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

69 lines (68 loc) 1.93 kB
/** * Indicates type of miscellaneous fee. * - Tag: 139 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const MiscFeeType: Readonly<{ /** Regulatory (e.g. SEC) */ readonly Regulatory: '1'; /** Tax */ readonly Tax: '2'; readonly LocalCommission: '3'; /** Exchange Fees */ readonly ExchangeFees: '4'; /** Stamp */ readonly Stamp: '5'; /** Levy */ readonly Levy: '6'; /** Other */ readonly Other: '7'; /** Markup */ readonly Markup: '8'; /** Consumption Tax */ readonly ConsumptionTax: '9'; /** Per transaction */ readonly PerTransaction: '10'; /** Conversion */ readonly Conversion: '11'; /** Agent */ readonly Agent: '12'; /** Transfer Fee */ readonly TransferFee: '13'; /** Security Lending */ readonly SecurityLending: '14'; readonly TradeReporting: '15'; /** Tax on principal amount */ readonly TaxOnPrincipalAmount: '16'; /** Tax on accrued interest amount */ readonly TaxOnAccruedInterestAmount: '17'; /** New issuance fee */ readonly NewIssuanceFee: '18'; /** Service fee */ readonly ServiceFee: '19'; /** Odd lot fee */ readonly OddLotFee: '20'; /** Auction fee */ readonly AuctionFee: '21'; /** Value Added tax - VAT */ readonly ValueAddedTax: '22'; /** Sales tax */ readonly SalesTax: '23'; /** Execution venue fee */ readonly ExecutionFee: '24'; readonly OrderEntryFee: '25'; readonly OrderModificationFee: '26'; readonly OrdersCancellationFee: '27'; readonly MarketDataAccessFee: '28'; readonly MarketDataTerminalFee: '29'; readonly MarketDataVolumeFee: '30'; readonly ClearingFee: '31'; readonly SettlementFee: '32'; readonly Rebates: '33'; readonly Discounts: '34'; readonly Payments: '35'; readonly NonMonetaryPayments: '36'; }>;