Settings - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Finance

  

Settings

  

return default settings

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Settings(parameter)

Settings(newsettings)

Parameters

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

Description

• 

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.

Examples

withFinance:

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

(1)

Here is the default value of the businessdayconvention parameter.

Settingsbusinessdayconvention

Unadjusted

(2)

Here is the default value of the businessdayconvention and dateformat parameters.

Settingsbusinessdayconvention,dateformat

Unadjusted,%B %e, %Y

(3)

Here is an example of a command that uses these defaults.

IsHolidayJanuary 01, 2006,Toronto

true

(4)

AdjustDateJanuary 01, 2006,Toronto,output=formatted

January 1, 2006

(5)

Set new default values.

Settingsbusinessdayconvention=Following

Unadjusted

(6)

Try the new default values.

AdjustDateJanuary 01, 2006,Toronto,output=formatted

January 3, 2006

(7)

Compatibility

• 

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]