Finance
CompoundFactor
return a compound factor for the specified date or time
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
CompoundFactor(rate, time, opts)
CompoundFactor(rate, date, opts)
rate
-
real constant, list(realcons), Vector or a yield term structure; given interest rate
time
non-negative real number, list(non-negative), or Vector; time in years
date
a string containing a date specification in a format recognized by ParseDate or a Date data structure; date
opts
equations of the form option = value where option is one of referencedate, compounding, or daycounter; specify options for the CompoundFactor command
compounding = Simple, Continuous, Annual, Semiannual, EveryFourthMonth, Quarterly, Bimonthly, Monthly, SimpleThenAnnual, SimpleThenSemiannual, SimpleThenEveryFourthMonth, SimpleThenQuarterly, SimpleThenBimonthly, SimpleThenMonthly -- This option specifies the compounding type for the given interest rate.
daycounter = Actual360, Actual365Fixed, AFB, Bond, Euro, Historical, ISDA, ISMA, OneDay, Simple, Thirty360BondBasis, Thirty360EuroBondBasis, Thirty360European, Thirty360Italian, Thirty360USA, or a day counter data structure created using the DayCounter constructor -- This option provides a day counter which will be used to convert the period between two dates to a fraction of the year. The default day count convention can be set using the Settings command.
referencedate = a string containing a date specification in a format recognized by ParseDate or a Date data structure -- This option specifies the reference date, that is, the date when the compound factor is equal to 1.
The CompoundFactor(rate, time, opts) calling sequence computes the compound factor at the specified time corresponding to the given interest rate. The interest rate and time can be given as lists in which case the array or their combinations are returned.
The CompoundFactor(rate, date, opts) calling sequence computes the compound factor on the specified date corresponding to the given interest rate. The value of the daycounter option is used to compute the distance between date and the reference date (which is set to the global evaluation date by default).
with⁡Finance:
rate1≔0.06:
compound1≔CompoundFactor⁡rate1,1.0,compounding=Monthly
compound1≔1.061677812
rate2≔ImpliedRate⁡compound1,1.0,Monthly
rate2≔0.06000000013
cmpdlist≔1.2,1.05,1.8:
timelist≔0.2,2.5,3.2:
cflist≔CompoundFactor⁡cmpdlist,timelist,compounding=Monthly
cflist≔1.2570207430874417.449402268886438.85788065425401.2230106460762312.384485494188825.05438807535911.3985397571797566.2117719567858214.188953817854
CompoundFactor⁡rate1,January 02, 2006,compounding=Monthly,daycounter=Actual365Fixed,referencedate=January 02, 2005
1.061677812
rate3≔ZeroCurve⁡0.05,referencedate=January 02, 2005
rate3≔moduleend module
compound3≔CompoundFactor⁡rate3,January 02, 2006
compound3≔1.051271096
ImpliedRate⁡compound3,January 02, 2005,January 02, 2006,Continuous
0.04999999964
ImpliedRate⁡compound3,January 02, 2005,January 02, 2006,Monthly
0.05010431113
The Finance[CompoundFactor] command was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
See Also
Finance[DayCounter]
Finance[DiscountCurve]
Finance[DiscountFactor]
Finance[EquivalentRate]
Finance[ForwardCurve]
Finance[ForwardRate]
Finance[ParRate]
Finance[ParseDate]
Finance[YieldFromCleanPrice]
Finance[YieldFromDirtyPrice]
Finance[ZeroCurve]
Download Help Document