Sampath Bank Fixed Deposit Rates Calculator

.sampath-calculator-container { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); color: #333; } .sampath-header { text-align: center; border-bottom: 3px solid #f39c12; margin-bottom: 25px; padding-bottom: 10px; } .sampath-header h2 { color: #004a99; margin: 0; font-size: 24px; } .sampath-row { display: flex; flex-wrap: wrap; margin-bottom: 15px; } .sampath-col { flex: 1; min-width: 250px; padding: 10px; } .sampath-label { display: block; font-weight: 600; margin-bottom: 8px; color: #444; } .sampath-input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .sampath-select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; background-color: white; } .sampath-button { background-color: #004a99; color: white; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; margin-top: 10px; transition: background-color 0.3s; } .sampath-button:hover { background-color: #f39c12; } .sampath-result-box { margin-top: 25px; padding: 20px; background-color: #f9f9f9; border-left: 5px solid #004a99; border-radius: 4px; } .sampath-result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 18px; } .sampath-result-value { font-weight: bold; color: #004a99; } .sampath-article { margin-top: 40px; line-height: 1.6; color: #444; } .sampath-article h3 { color: #004a99; border-left: 4px solid #f39c12; padding-left: 10px; } .sampath-article p { margin-bottom: 15px; } .sampath-example { background-color: #fff9e6; padding: 15px; border-radius: 8px; border: 1px dashed #f39c12; }

Sampath Bank Fixed Deposit Rate Calculator

At Maturity Monthly Payout
Total Interest Earned: LKR 0.00
Monthly Interest Payout: LKR 0.00
Maturity Amount: LKR 0.00

Maximize Your Savings with Sampath Bank Fixed Deposits

Sampath Bank is renowned in Sri Lanka for offering some of the most competitive Fixed Deposit (FD) rates, providing a secure and reliable way to grow your wealth. Whether you are saving for a future goal or seeking a regular monthly income, understanding how your interest is calculated is crucial for financial planning.

Our Sampath Bank FD Calculator helps you estimate your returns based on the latest prevailing rates. Fixed deposits are ideal for investors who prefer low-risk investments with guaranteed returns compared to the volatile stock market.

How Interest is Calculated

The calculation for a Sampath Bank Fixed Deposit depends primarily on whether you choose to receive your interest monthly or at the end of the term (maturity). For At Maturity deposits, the formula used is:

Interest = (Principal × Rate × Term in Months) / (12 × 100)

Key Features of Sampath Bank FDs

  • Flexible Tenures: Choose from short-term periods (1 month) to long-term periods (5 years).
  • Monthly Income: Option to have interest credited to your savings account every month to meet living expenses.
  • Loan Facilities: You can typically obtain a loan or overdraft against your FD up to 90% of the deposit value.
  • Senior Citizen Benefits: Often, Sampath Bank provides higher interest rates for citizens over the age of 60.

Calculation Example:

If you deposit LKR 1,000,000 at an annual interest rate of 11% for a period of 12 months:

  • Total Interest (At Maturity): LKR 110,000
  • Total Payout: LKR 1,110,000
  • If Monthly: Approximately LKR 9,166.67 per month.

Factors Influencing FD Rates in Sri Lanka

Fixed Deposit rates are not static; they are influenced by the Central Bank of Sri Lanka's monetary policy, market liquidity, and inflation trends. It is always advisable to check the current "Sampath Bank Fixed Deposit Rates" directly with the bank before finalizing your investment.

function calculateSampathFD() { var principal = parseFloat(document.getElementById('depositAmount').value); var rate = parseFloat(document.getElementById('annualRate').value); var term = parseFloat(document.getElementById('termMonths').value); var payout = document.getElementById('payoutType').value; if (isNaN(principal) || isNaN(rate) || isNaN(term) || principal <= 0 || rate <= 0 || term <= 0) { alert("Please enter valid positive numbers for all fields."); return; } // Calculation Logic // Interest = P * R * (T/12) / 100 var totalInterest = (principal * rate * (term / 12)) / 100; var maturityAmount = principal + totalInterest; var monthlyInterest = (principal * rate / 100) / 12; // Format numbers to LKR var formatter = new Intl.NumberFormat('en-LK', { style: 'currency', currency: 'LKR', minimumFractionDigits: 2 }); document.getElementById('resInterest').innerHTML = formatter.format(totalInterest).replace("LKR", "LKR "); document.getElementById('resMaturity').innerHTML = formatter.format(maturityAmount).replace("LKR", "LKR "); var monthlyRow = document.getElementById('monthlyRow'); if (payout === "monthly") { document.getElementById('resMonthly').innerHTML = formatter.format(monthlyInterest).replace("LKR", "LKR "); monthlyRow.style.display = "flex"; } else { monthlyRow.style.display = "none"; } document.getElementById('resultArea').style.display = "block"; }

Leave a Comment