Skip to main content

Create configuration for transactional accounts and implement account runtime

Project description

This library provides basic functionality for working with transaction accounts.

You can use it to make any type of transaction account, such as a savings account, a credit card, or a loan.

Assume we would like to create simple Savings Account that has 3 types of balances:

  • current balance

  • interest accrued

  • withholding tax

We would like to have 4 types of transactions:

  • deposit

  • interest accrued

  • interest capitalized

  • withholding tax

We would like to have 2 types of schedules:

  • accrual schedule

  • compounding schedule

We would like to have interest rate with 3 tiers:

  • 0 - 10000: 3%

  • 10000 - 50000: 3.5%

  • 50000+: 4%

Deposit transaction will increase current balance, and it will be used to deposit money to the account. This transaction will be externally created and posted to the account.

Interest accrued transaction will increase interest accrued balance, and it will be used to accrue interest on the account.

Interest will be accrued daily, and it will be calculated based on current balance and interest rate.

Interest capitalized transaction will increase current balance and decrease interest accrued balance. This transaction will be internally created and posted to the account at the end of each month.

Withholding tax transaction will decrease withholding tax balance, and it will be used to pay withholding tax on the account. It will be calculated as 20% of interest capitalized transaction.

We will use accrual schedule to accrue interest daily, and we will use compounding schedule to capitalize interest at the end of each month.

We will use interest rate to calculate interest.

We will use trigger transaction to calculate withholding tax.

Note that this framework is not limited to this configuration, and it can be used to create any type of transaction account.

You can define custom calculations when calculating either schedules or transactions. In this context you can use any of the following variables: - account: Account - transaction: Transaction - config: Configuration

Here is a code that will create this configuration:

def create_savings_account() -> Configuration:
    config: Configuration = Configuration(version="v1")

    current = config.add_position_type("current", "current balance")
    interest_accrued = config.add_position_type("accrued", "interest accrued")
    withholding = config.add_position_type("withholding", "withholding tax")

    deposit = config.add_transaction_type("deposit", "Deposit").add_position_rule(TransactionOperation.CREDIT, current)

    interest_accrued_tt = config.add_transaction_type("interestAccrued", "Interest Accrued")
    interest_accrued_tt.add_position_rule(TransactionOperation.CREDIT, interest_accrued)

    capitalized = config.add_transaction_type("capitalized", "Interest Capitalized").add_position_rule(
        TransactionOperation.CREDIT, current).add_position_rule(TransactionOperation.DEBIT, interest_accrued)

    withholding_txn = config.add_transaction_type("withholdingTax", "Withholding Tax").add_position_rule(
        TransactionOperation.CREDIT, withholding)

    savings_account = config.add_account_type("savingsAccount", "Savings Account")

    savings_account.add_transaction_type(deposit)
    savings_account.add_transaction_type(interest_accrued_tt)
    savings_account.add_transaction_type(capitalized)
    savings_account.add_transaction_type(withholding_txn)

    accrual_schedule = ScheduleType(name="accrual", label="Accrual Schedule", frequency=ScheduleFrequency.DAILY,
                                    end_type=ScheduleEndType.NO_END,
                                    business_day_adjustment=BusinessDayAdjustment.NO_ADJUSTMENT,
                                    interval_expression="1", start_date_expression="account.start_date")

    savings_account.add_schedule_type(accrual_schedule)

    compounding_schedule = ScheduleType(name="compounding", label="Compounding Schedule", frequency=ScheduleFrequency.MONTHLY,
                                        end_type=ScheduleEndType.NO_END,
                                        business_day_adjustment=BusinessDayAdjustment.NO_ADJUSTMENT,
                                        interval_expression="1",
                                        start_date_expression="account.start_date + relativedelta(month=+1) + relativedelta(days=-1)")

    savings_account.add_schedule_type(compounding_schedule)

    savings_account.add_scheduled_transaction(accrual_schedule, ScheduledTransactionTiming.END_OF_DAY,
                                              interest_accrued_tt,
                                              "account.current * config.interest.get_rate(account.current) / Decimal(365)")

    savings_account.add_scheduled_transaction(compounding_schedule, ScheduledTransactionTiming.END_OF_DAY,
                                              capitalized, "account.accrued")

    interest_rate = config.add_rate_type("interest", "Interest Rate")

    interest_rate.add_tier(Decimal(10000), Decimal(0.03))
    interest_rate.add_tier(Decimal(100000), Decimal(0.035))
    interest_rate.add_tier(Decimal(50000), Decimal(0.04))

    config.add_trigger_transaction(capitalized, withholding_txn, "transaction.amount * Decimal(0.2)")

    return config

Given configuration, we can create an account:

config: Configuration = create_savings_account()

 # account = create_account(config, "savingsAccount", date(2019, 1, 1))
 account_type = config.get_account_type("savingsAccount")
 account = Account(start_date=date(2019, 1, 1), account_type_name=account_type.name,
                   config_version= config.version, config=config)

 valuation = AccountValuation(account, account_type, config, date(2020, 1, 1))

 deposit_transaction_type = config.get_transaction_type("deposit")

 external_transactions = group_by_date([
     ExternalTransaction(transaction_type_name=deposit_transaction_type.name,
                         amount= Decimal(1000), value_date=date(2019, 1, 1))])

 valuation.forecast(date(2020, 1, 1), external_transactions)

 self.assertAlmostEqual(account.positions['current'].amount, Decimal(1030.41), places=1)
 self.assertAlmostEqual(account.positions['withholding'].amount, Decimal(30.41) * Decimal(0.2), places=1)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

transaction-accounts-0.0.4.tar.gz (12.0 kB view details)

Uploaded Source

File details

Details for the file transaction-accounts-0.0.4.tar.gz.

File metadata

  • Download URL: transaction-accounts-0.0.4.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.6

File hashes

Hashes for transaction-accounts-0.0.4.tar.gz
Algorithm Hash digest
SHA256 8c18c87a66129b44741636febeab9e8d160e71c65525d715094e18cabcb06c6c
MD5 5c046b71c29408bec2437b01f69ba497
BLAKE2b-256 e22d67af53564ffc493983e64f14947c3051417a860db79e62eb04082c3be449

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page