UNPKG

jspurefix

Version:
74 lines (72 loc) 4.07 kB
import { IStandardHeader } from './set/standard_header' import { IParties } from './set/parties' import { IExecCollGrp } from './set/exec_coll_grp' import { ITrdCollGrp } from './set/trd_coll_grp' import { IInstrument } from './set/instrument' import { IFinancingDetails } from './set/financing_details' import { IInstrmtLegGrp } from './set/instrmt_leg_grp' import { IUndInstrmtCollGrp } from './set/und_instrmt_coll_grp' import { ITrdRegTimestamps } from './set/trd_reg_timestamps' import { IMiscFeesGrp } from './set/misc_fees_grp' import { ISpreadOrBenchmarkCurveData } from './set/spread_or_benchmark_curve_data' import { IStipulations } from './set/stipulations' import { ISettlInstructionsData } from './set/settl_instructions_data' import { IStandardTrailer } from './set/standard_trailer' /* *************************************************************** * Used to assign collateral to cover a trading position. This * * message can be sent unsolicited or in reply to a Collateral * * Request message. * *************************************************************** */ export interface ICollateralAssignment { StandardHeader: IStandardHeader// [1] BeginString.8, BodyLength.9 .. HopRefID.630 CollAsgnID: string// [2] 902 (String) CollReqID?: string// [3] 894 (String) CollAsgnReason: number// [4] 895 (Int) CollAsgnTransType: number// [5] 903 (Int) CollAsgnRefID?: string// [6] 907 (String) TransactTime: Date// [7] 60 (UtcTimestamp) ExpireTime?: Date// [8] 126 (UtcTimestamp) Parties?: IParties[]// [9] PartyID.448, PartyIDSource.447 .. PartySubIDType.803 Account?: string// [10] 1 (String) AccountType?: number// [11] 581 (Int) ClOrdID?: string// [12] 11 (String) OrderID?: string// [13] 37 (String) SecondaryOrderID?: string// [14] 198 (String) SecondaryClOrdID?: string// [15] 526 (String) ExecCollGrp?: IExecCollGrp[]// [16] ExecID.17 TrdCollGrp?: ITrdCollGrp[]// [17] TradeReportID.571, SecondaryTradeReportID.818 Instrument?: IInstrument// [18] Symbol.55, SymbolSfx.65 .. InterestAccrualDate.874 FinancingDetails?: IFinancingDetails// [19] AgreementDesc.913, AgreementID.914 .. MarginRatio.898 SettlDate?: Date// [20] 64 (LocalDate) Quantity?: number// [21] 53 (Float) QtyType?: number// [22] 854 (Int) Currency?: string// [23] 15 (String) InstrmtLegGrp?: IInstrmtLegGrp[]// [24] LegSymbol.600, LegSymbolSfx.601 .. LegInterestAccrualDate.956 UndInstrmtCollGrp?: IUndInstrmtCollGrp[]// [25] UnderlyingSymbol.311, UnderlyingSymbolSfx.312 .. CollAction.944 MarginExcess?: number// [26] 899 (Float) TotalNetValue?: number// [27] 900 (Float) CashOutstanding?: number// [28] 901 (Float) TrdRegTimestamps?: ITrdRegTimestamps[]// [29] TrdRegTimestamp.769, TrdRegTimestampType.770, TrdRegTimestampOrigin.771 Side?: string// [30] 54 (String) MiscFeesGrp?: IMiscFeesGrp[]// [31] MiscFeeAmt.137, MiscFeeCurr.138 .. MiscFeeBasis.891 Price?: number// [32] 44 (Float) PriceType?: number// [33] 423 (Int) AccruedInterestAmt?: number// [34] 159 (Float) EndAccruedInterestAmt?: number// [35] 920 (Float) StartCash?: number// [36] 921 (Float) EndCash?: number// [37] 922 (Float) SpreadOrBenchmarkCurveData?: ISpreadOrBenchmarkCurveData// [38] Spread.218, BenchmarkCurveCurrency.220 .. BenchmarkSecurityIDSource.761 Stipulations?: IStipulations[]// [39] StipulationType.233, StipulationValue.234 SettlInstructionsData?: ISettlInstructionsData// [40] SettlDeliveryType.172, StandInstDbType.169 .. SettlPartySubIDType.786 TradingSessionID?: string// [41] 336 (String) TradingSessionSubID?: string// [42] 625 (String) SettlSessID?: string// [43] 716 (String) SettlSessSubID?: string// [44] 717 (String) ClearingBusinessDate?: Date// [45] 715 (LocalDate) Text?: string// [46] 58 (String) EncodedTextLen?: number// [47] 354 (Int) EncodedText?: Buffer// [48] 355 (RawData) StandardTrailer: IStandardTrailer// [49] SignatureLength.93, Signature.89, CheckSum.10 }