@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 579 B
TypeScript
/**
* The type of value in CurrentCollateralAmount(1704).
* tag: 2632
* @readonly
* @enum {number} (int)
*/
export declare enum CollateralAmountType {
/** Market valuation (the default) */
MarketValuation = 0,
/** Portfolio value before processing pledge request */
PortfolioValue = 1,
/** Value confirmed as "locked-up" for processing a pledge request */
ValueConfirmed = 2,
/** Credit value of collateral at CCP processing a pledge request */
CollateralCreditValue = 3,
AdditionalCollateralValue = 4,
EstimatedMarketValuation = 5
}