Array of income transactions where each transaction contains financial data
Array of expense transactions where each transaction contains financial data
An object containing calculated financial metrics including:
incomesTotal
: Total income amount formatted as Czech currencyexpensesTotal
: Total expense amount formatted as Czech currencynetIncome
: Net income (incomes - expenses) formatted as Czech currencysavingsRate
: Percentage of income saved, formatted to 1 decimal placeexpenseRatio
: Percentage of income spent, formatted to 1 decimal placeisPositive
: Boolean indicating if net income is positivestatus
: String describing financial status ('Surplus', 'Deficit', or 'Break Even')
Compares total incomes versus total expenses and calculates financial metrics.