Calculate APY

Overview

calculate_apy

Using CalculateAPY class to calculate APY (Annual Percentage Yield)

Annual percentage yield is a normalized representation of an interest rate,

based on a compounding period of one year. APY figures allow a reasonable, single-point comparison of different offerings with varying compounding schedules.

We have 2 ways to calculate APY

The first with Compound. You can use these below methods

1. CalculateAPY.calculateAPYInDaysWithCompound(double moneySaving, double interestRate, int dayNumber)

You can calculate APY in DAYs with Compound by this function.

moneySaving is the origin money you deposit

interestRate as the APY

dayNumber is the number of day you will deposit

E.g. You will deposit 2000$ in 14 days with 10% interest APY

moneySaving = 2000$

interestRate = 10%

dayNumber = 14

2. CalculateAPY.calculateAPYInMonthWithCompound(double moneySaving, double interestRate, int monthNumber)

Like the 1 function you can calculate APY in MONTHs with Compound by this function.

And the other without Compound. You can use these below methods

3. CalculateAPY.calculateAPYPerYear(double moneySaving, double interestRate)

Like the 1 function you can calculate APY per YEAR without Compound by this function.

4. CalculateAPY.calculateAPYPerMonth(double moneySaving, double interestRate)

Like the 1 function you can calculate APY per MONTH without Compound by this function.

5. CalculateAPY.calculateAPYPerDay(double moneySaving, double interestRate)

Like the 1 function you can calculate APY per DAY without Compound by this function.

You might also like...

A flutter app which calculate your heart beat and takes few inputs and predict whether you have heart disease or not.

A flutter app which calculate your heart beat and takes few inputs and predict whether you have heart disease or not.

Heart Care App 🫀 🩸 ❤️ ⭐️ Features: ⚡️ Lets you sign up and login ⚡️ Montioring your heart failure risk and heart beat through charts ⚡️ View Medical

Oct 31, 2022

Imc flutter - A flutter app to calculate a body mass index

Imc flutter - A flutter app to calculate a body mass index

Imc flutter - A flutter app to calculate a body mass index

Jan 22, 2022

Age2 - A Flutter package to calculate someone's age in days, months, and years

age A Flutter package to calculate someone's age in days, months, and years; in

Feb 6, 2022
Owner
Truong Thanh
Mobile Developer
Truong Thanh
A simple and lightweight math library, that can parse and calculate string expressions.

Documentation Create local instance of expression parser. final ExpressionParser expressionParser = ExpressionParser(); Then you can calculate your "s

Ismael Shakverdiev 18 Nov 20, 2022
A simple app to calculate BMI, with a beautiful and minimalistic UI.

practice A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this

Laksh Mittal 0 Nov 6, 2021
Flutter app to calculate percentages

An app made in Flutter to quickly calculate percentage differences in stock prices. Additional buttons to quickly determine what the price would need to reach to get that percentage.

null 0 Jul 21, 2022
Library that can calculate fusions in Persona 5 game

p5_fusion_dart Library that can calculate fusions in Persona 5 game. Example SkillRepository skillRepository = new SkillRepository(); final PersonaRep

Ensar Emir EROL 2 Oct 6, 2022
Calculate your pizza recipe in a few seconds! 🍕

Calcolapizza Calcolapizza lets you calculate the exact recipe for your pizza doughs in a few seconds. Set how many dough balls you want to make, their

Domenico Majorana 44 Dec 26, 2022
Flutter package and sample app to calculate Flight CO2 emissions

Flight CO2 Calculator About This plugin provides a collection of classes that can be used to: Load a list of airports from the OpenFlights.org dataset

Andrea Bizzotto 58 Sep 11, 2022
Attendancelist - App to add Students attendance based on roll numbers and calculate percentage.

attedance A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if thi

null 0 Jan 1, 2022
Bmi calculator flutter - Calculate your BMI(Body Mass Index) with this app made with flutter.

bmi_calculator_flutter A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you s

Joel Nickson 1 Jan 2, 2022
Flutter Calculate - Flutter app

Flutter_Calculate 计算小助手 功能: 矩阵常规计算(如矩阵相乘,相减,与某个数相乘等) 三角函数计算(包括度分秒,度与弧度之间的转换,sin,arctan等三角函数) 自定义函数(可以通过自定义函数大大简化计算工作) 定积分计算 多项式计算(通过求矩阵特征值) 线性方程组求解 矩阵

MIT.Xiaoming 7 Dec 16, 2022
BMI Calcaluator - Flutter app to calculate Body mass index (BMI)

flutter_learn A new Flutter application. Getting Started This project is a starting point for a Flutter application. A few resources to get you starte

Ahmed Abdultawab 0 Jan 3, 2022