Finance
Settings
return default settings
Calling Sequence
Parameters
Description
Examples
Compatibility
Settings(parameter)
Settings(newsettings)
parameters
-
businessdayconvention, calendar, compounding, daycounter, dateformat, replications, settlementdays, timesteps, or a list of these names; (optional) parameters of interest
newsettings
an equation of the form parameter = value, where parameter is one of businessdayconvention, calendar, compounding, daycounter, dateformat, replications, settlementdays, or timesteps, and value is the new default value, or a list of equations of this type; settings with new default values
The Settings() calling sequence returns a list of equations of the form parameter = value, where parameter runs through all parameters whose default values can be set globally.
The Settings(parameter) calling sequence returns the default values for the specified parameter(s). If the value of the parameter parameter is a single name, the Settings command will return an equation of the form parameter = value where value is the current default value for the corresponding parameter. This value will be used by all commands from the Finance package for which this parameter is relevant. If parameter is a list of names, then a list of equations of the above type will be returned.
The Settings(parameter = value) calling sequence sets the new default value of the parameter parameter and returns the old value.
Finally, the Settings([parameter[1] = value[1], parameter[2] = value[2], `...`, parameter[n] = value[n]]) calling sequence will set the new default values for all of the specified parameters and return the corresponding old default values.
with⁡Finance:
Here are the default settings.
Settings⁡
digits=10,calendar=Null,businessdayconvention=Unadjusted,compounding=Continuous,daycounter=Historical,dateformat=%B %e, %Y,settlementdays=0,timesteps=100,replications=10000
Here is the default value of the businessdayconvention parameter.
Settings⁡businessdayconvention
Unadjusted
Here is the default value of the businessdayconvention and dateformat parameters.
Settings⁡businessdayconvention,dateformat
Unadjusted,%B %e, %Y
Here is an example of a command that uses these defaults.
IsHoliday⁡January 01, 2006,Toronto
true
AdjustDate⁡January 01, 2006,Toronto,output=formatted
January 1, 2006
Set new default values.
Settings⁡businessdayconvention=Following
Try the new default values.
January 3, 2006
The Finance[Settings] command was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
See Also
Finance[EvaluationDate]
Finance[FormatDate]
Finance[ParseDate]
Finance[TodaysDate]
StringTools[FormatTime]
StringTools[ParseTime]
Download Help Document