.yes-bank-fd-container {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
max-width: 900px;
margin: 20px auto;
color: #333;
line-height: 1.6;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
background-color: #fff;
}
.fd-calculator-header {
background-color: #0054a6;
color: white;
padding: 25px;
text-align: center;
}
.fd-calculator-header h2 {
margin: 0;
font-size: 24px;
font-weight: 700;
}
.fd-calculator-body {
padding: 30px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
@media (max-width: 768px) {
.fd-calculator-body {
grid-template-columns: 1fr;
}
}
.input-section {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
}
.input-group {
margin-bottom: 20px;
}
.input-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #444;
}
.input-group input, .input-group select {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
}
.calc-btn {
background-color: #ed1c24;
color: white;
border: none;
padding: 15px 25px;
font-size: 18px;
font-weight: bold;
border-radius: 4px;
cursor: pointer;
width: 100%;
transition: background 0.3s;
}
.calc-btn:hover {
background-color: #c4131a;
}
.result-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #eef6ff;
border-radius: 8px;
padding: 20px;
border: 1px dashed #0054a6;
}
.result-box {
text-align: center;
margin-bottom: 15px;
}
.result-label {
font-size: 14px;
color: #666;
text-transform: uppercase;
}
.result-value {
font-size: 28px;
font-weight: 800;
color: #0054a6;
}
.article-section {
padding: 30px;
border-top: 1px solid #eee;
}
.article-section h3 {
color: #0054a6;
margin-top: 25px;
}
.fd-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
.fd-table th, .fd-table td {
border: 1px solid #ddd;
padding: 12px;
text-align: left;
}
.fd-table th {
background-color: #f2f2f2;
}
Total Maturity Amount
₹ 1,07,449
Total Interest Earned
₹ 7,449
Understanding Yes Bank Fixed Deposits
A Yes Bank Fixed Deposit (FD) is a secure investment vehicle that allows you to deposit a lump sum for a fixed period at a pre-determined interest rate. Unlike market-linked investments, Yes Bank FDs offer guaranteed returns and higher capital safety, making them ideal for conservative investors and retirees.
Current Yes Bank FD Interest Rates 2024 (Approximate)
| Tenure |
General Public (p.a.) |
Senior Citizens (p.a.) |
| 7 days to 14 days |
3.25% |
3.75% |
| 181 days to 271 days |
6.10% |
6.60% |
| 1 Year to < 18 Months |
7.25% |
7.75% |
| 18 Months to < 24 Months |
7.50% |
8.00% |
| 36 Months to < 60 Months |
7.25% |
8.00% |
How to Use the Yes Bank FD Calculator
- Deposit Principal: Enter the amount you wish to invest.
- Investor Category: Choose "Senior Citizen" if you are above 60 years of age to avail of the additional 0.50% rate benefit.
- Interest Rate: Input the prevailing Yes Bank FD rate for your chosen tenure.
- Tenure: Specify the duration in years and months.
- Compounding: Most bank FDs compound quarterly. For short-term FDs (less than 6 months), simple interest usually applies.
Benefits of Investing in Yes Bank FDs
- Flexible Tenure: Choose durations ranging from 7 days to 10 years.
- Liquidity: Avail of overdraft facilities up to 90% of the FD value without breaking the deposit.
- Payout Options: Opt for monthly or quarterly interest payouts for regular income, or reinvestment for compounding growth.
- Automatic Renewal: Hassle-free renewal of your deposit upon maturity.
Calculation Logic
The calculator uses the compound interest formula for tenures greater than 6 months:
A = P (1 + r/n)^(n*t)
Where:
– A is the Maturity Amount
– P is the Principal Amount
– r is the Annual Interest Rate (decimal)
– n is the compounding frequency per year
– t is the total tenure in years
function updateRate() {
var investor = document.getElementById("investorType").value;
var rateInput = document.getElementById("fdRate");
var currentRate = parseFloat(rateInput.value);
// Basic logic: if switching to senior, add 0.5, if switching to general, subtract 0.5
// This is a helper for the user interface
if (investor === "senior") {
rateInput.value = 7.75;
} else {
rateInput.value = 7.25;
}
}
function calculateFD() {
var p = parseFloat(document.getElementById("depositAmount").value);
var r = parseFloat(document.getElementById("fdRate").value);
var y = parseFloat(document.getElementById("tenureYears").value) || 0;
var m = parseFloat(document.getElementById("tenureMonths").value) || 0;
var n = parseFloat(document.getElementById("compoundingFrequency").value);
if (isNaN(p) || p <= 0) {
alert("Please enter a valid deposit amount.");
return;
}
if (isNaN(r) || r <= 0) {
alert("Please enter a valid interest rate.");
return;
}
// Convert tenure to total years
var t = y + (m / 12);
if (t <= 0) {
alert("Please enter a valid tenure.");
return;
}
var maturity;
var interest;
// If tenure is less than 6 months (0.5 years), banks usually use Simple Interest
if (t < 0.5) {
maturity = p + (p * (r / 100) * t);
} else {
// Compound Interest Formula: A = P(1 + r/n)^(nt)
var ratePerPeriod = (r / 100) / n;
var totalPeriods = n * t;
maturity = p * Math.pow((1 + ratePerPeriod), totalPeriods);
}
interest = maturity – p;
// Formatting results
document.getElementById("maturityAmount").innerHTML = "₹ " + maturity.toLocaleString('en-IN', {
maximumFractionDigits: 0,
minimumFractionDigits: 0
});
document.getElementById("interestEarned").innerHTML = "₹ " + interest.toLocaleString('en-IN', {
maximumFractionDigits: 0,
minimumFractionDigits: 0
});
}
// Initial calculation on load
window.onload = function() {
calculateFD();
};