Financial Tracker
Detailed Problem Description
Nowadays, it is becoming more and more difficult to track one's finances. Purchasing goods has become one click away, making it harder to save money or start a budget.
Expected solution description
A financial tracker solution is required. It consists of a web application where users can register / sign-up to create an account.
Every user will be able to track his / her finances by performing the operation below :
Propreties
Every
income
/expense
can have atitle
,description
,amount
,currency
,date time
andcategory
(selection from alist
of categories that theuser creates
).
Constraint
Example
Filtering
Features
Users should be able to view the below reports
Filtering The View
The user should have the possibility to
display
the above reports in eitherpie charts
orbar charts
Every bar / chart represents a category (each category will have a color).
Saving Goal
Features
The user can create a goal saving. The
user
will have todefine
if the goal saving will beachieved
byweekly
ormonthly
savings.
Propreties
Goal saving consists of a
title
,total amount
,currency
anddue date
.
Constraint
The web application should validate if the proposed saving plan is achievable: the existing total expenses along with the saving,
should not exceed the total income amounts
.If the proposed plan is validated, the user can confirm and save the saving plan, which will be
created
as aspecial type
goalsaving expense
.
During the creation of another saving plan, all previously created goal savings will be counted in the total expenses.
When calculating the total amount of the incomes or expenses, the indicated currencies should be taken into account, meaning that the web application can have / pick a base currency and all other foreign currencies will be converted to calculate the sum.
The candidate can set the currencies rates to be fixed, however it would be a bonus if they can be fetched online every time they are required.
Example
The user would like to buy the new iPhone which costs 1000$. The user creates a goal saving by setting monthly savings of 100$ along with the start date.
Bonus Challenge
The web application will have Artificial Intelligence, where it can propose to the user how the saving plan can be achieved.
Example
The user creates a goal saving plan by setting the total amount required, currency and the due date. By indicating the priority as a drop down (either time or money), the web application will study what is best saving amount and frequency (weekly or monthly) to either help the user achieve the saving plan the soonest (time is priority) and before the due date, or the way with less financial impact (money is priority) by setting the smallest amount possible while still respecting the due date. All in all, the total expenses including the proposed saving plan should never exceed the total income.
Deliverable Format
The candidate should deliver a web application as described in the expected solution section.
Rules and Guidelines
Mandatory
All the business rules and requirements are very important and should be amended (unless otherwise stated or communicated).
Design
There are no restrictions on the user interface and design, it just needs to be user friendly and intuitive.
External Dependencies
The candidate should not be using packages or libraries that achieves / solves a key requirement of the solution.
For example,
the candidate cannot be using a library that is used to store incomes and expenses to perform calculations of any sort.
However, the candidate can be using packages to render pie or bar charts for the repots.
Evaluation Criteria
The evaluation criteria are divided into 2 main parts:
Overall project completion :
All the business rules and requirements should be achieved and met.
The solution should have the functional work flow as described in the expected solution.
The solution should be working properly and provided the expected results.
The code is to be examined to check for the good programming practices, including but not limited to :
Performance optimization,
Secure coding,
OOP (Object-oriented programming).
Re-usability and maintainability.
Last updated
Was this helpful?