fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
88 lines (87 loc) • 3.17 kB
TypeScript
/**
* Code to represent the type of instrument attribute
* - Tag: 871
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const InstrAttribType: Readonly<{
/** Flat (securities pay interest on a current basis but are traded without interest) */
readonly Flat: 1;
/** Zero coupon */
readonly ZeroCoupon: 2;
/** Interest bearing (for Euro commercial paper when not issued at discount) */
readonly InterestBearing: 3;
/** No periodic payments */
readonly NoPeriodicPayments: 4;
/** Variable rate */
readonly VariableRate: 5;
/** Less fee for put */
readonly LessFeeForPut: 6;
/** Stepped coupon */
readonly SteppedCoupon: 7;
readonly CouponPeriod: 8;
/** When [and if] issued */
readonly When: 9;
/** Original issue discount */
readonly OriginalIssueDiscount: 10;
/** Callable, puttable */
readonly Callable: 11;
/** Escrowed to Maturity */
readonly EscrowedToMaturity: 12;
readonly EscrowedToRedemptionDate: 13;
/** Pre-refunded */
readonly PreRefunded: 14;
/** In default */
readonly InDefault: 15;
/** Unrated */
readonly Unrated: 16;
/** Taxable */
readonly Taxable: 17;
/** Indexed */
readonly Indexed: 18;
/** Subject To Alternative Minimum Tax */
readonly SubjectToAlternativeMinimumTax: 19;
readonly OriginalIssueDiscountPrice: 20;
/** Callable below maturity value */
readonly CallableBelowMaturityValue: 21;
/** Callable without notice by mail to holder unless registered */
readonly CallableWithoutNotice: 22;
/** Price tick rules for security */
readonly PriceTickRulesForSecurity: 23;
/** Trade type eligibility details for security */
readonly TradeTypeEligibilityDetailsForSecurity: 24;
/** Instrument denominator */
readonly InstrumentDenominator: 25;
/** Instrument numerator */
readonly InstrumentNumerator: 26;
/** Instrument price precision */
readonly InstrumentPricePrecision: 27;
/** Instrument strike price */
readonly InstrumentStrikePrice: 28;
/** Tradeable indicator */
readonly TradeableIndicator: 29;
/** Instrument is eligible to accept anonymous orders */
readonly InstrumentEligibleAnonOrders: 30;
/** Minimum guaranteed fill volume */
readonly MinGuaranteedFillVolume: 31;
/** Minimum guaranteed fill status */
readonly MinGuaranteedFillStatus: 32;
/** Trade at settlement (TAS) eligibility */
readonly TradeAtSettlementEligibility: 33;
readonly TestInstrument: 34;
readonly DummyInstrument: 35;
/** Negative settlement price eligibility */
readonly NegativeSettlementPriceEligibility: 36;
/** Negative strike price eligibility */
readonly NegativeStrikePriceEligibility: 37;
readonly USStdContractInd: 38;
/** Admitted to trading on a trading venue */
readonly AdmittedToTradingOnTradingVenue: 39;
/** Average daily notional amount */
readonly AverageDailyNotionalAmount: 40;
/** Average daily number of trades */
readonly AverageDailyNumberTrades: 41;
readonly Text: 99;
}>;