mmex_currencies_create
Create a new currency entry in the Money Manager EX database with customizable name, symbol, prefix/suffix, decimal and group separators, and conversion rate.
Instructions
Create a new currency in the MMEX database.
Args:
name: Currency name (e.g., US Dollar).
symbol: Currency symbol (e.g., USD).
pfx_symbol: Prefix symbol (e.g., $).
sfx_symbol: Suffix symbol.
decimal_point: Decimal separator (e.g., .).
group_separator: Group separator (e.g., ,).
unit_name: Name of the main unit (e.g., Dollar).
cent_name: Name of the fractional unit (e.g., Cent).
scale: Number of fractional units per main unit (e.g., 100).
base_conv_rate: Base conversion rate as decimal string (e.g., 1.0).
currency_type: Type of currency (Fiat or Crypto).
db_path: Path to the .mmb database file. Optional if MMEX_DB_PATH env var is set.
db_key: Encryption key for SQLCipher databases. Optional if MMEX_DB_KEY env var is set.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| symbol | Yes | ||
| pfx_symbol | No | ||
| sfx_symbol | No | ||
| decimal_point | No | ||
| group_separator | No | ||
| unit_name | No | ||
| cent_name | No | ||
| scale | No | ||
| base_conv_rate | No | 1.0 | |
| currency_type | No | Fiat | |
| db_path | No | ||
| db_key | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |