Overview
Developed the Yomoni Pro offer, allowing businesses and self-employed professionals to invest their treasury and prepare for retirement effectively. This project involved creating a new front-end interface and a robust financial simulation module.
Key Contributions
Corporate Subscription Flow
Built a dedicated React application for corporate onboarding and subscription, handling complex regulatory requirements and document validation.
Financial Simulation Module
Engineered a Node.js module to perform investment simulations and projections, integrated into the core banking system.
// Financial projection calculation (simplified)
export function calculateProjection(initialAmount, monthlyContribution, durationYears, riskProfile) {
const rate = getRateForRiskProfile(riskProfile);
let total = initialAmount;
for (let i = 0; i < durationYears * 12; i++) {
total = total * (1 + rate / 12) + monthlyContribution;
}
return Math.round(total * 100) / 100;
}Full Stack Integration
Collaborated with the backend team to integrate the new frontend with existing Java/Spring microservices and AWS infrastructure.