Enter your details above to see your financial health analysis.
Understanding Your Debt-to-Income (DTI) Ratio
Your Debt-to-Income (DTI) ratio is one of the most critical metrics lenders use to assess your ability to manage monthly payments and repay debts. It compares how much you owe each month to how much you earn.
Why Does DTI Matter?
Whether you are applying for a mortgage, a car loan, or a personal line of credit, lenders look at your DTI to determine your risk level. A lower DTI indicates a good balance between debt and income, while a high DTI suggests you may be overextended.
How is DTI Calculated?
The formula for calculating your DTI is relatively straightforward:
Example Scenario:
If your annual salary is $60,000, your gross monthly income is $5,000. If you pay $1,500 for rent, $300 for a car, and $200 for student loans (Total Debt = $2,000), your DTI is ($2,000 / $5,000) = 40%.
Interpreting Your Results
35% or less: Generally viewed as favorable. You have manageable debt and likely have disposable income for savings.
36% to 43%: This range is often manageable but may limit your borrowing power for large loans like mortgages.
44% to 50%: You are approaching financial distress. Lenders may deny applications or charge higher interest rates.
Above 50%: This is considered critical. More than half your income goes to debt, leaving little for living expenses or emergencies.
Front-End vs. Back-End Ratio
This calculator primarily determines your back-end ratio, which includes all monthly debts. Mortgage lenders also look at the front-end ratio, which only considers housing costs (mortgage, insurance, property taxes) against your income. Typically, lenders prefer a front-end ratio below 28%.
How to Lower Your DTI
If your ratio is high, consider these strategies:
Increase Income: Side hustles, requesting a raise, or overtime can boost the denominator of the equation.
Pay Down Debt: Focus on high-interest credit cards or paying off smaller loans to eliminate monthly payments completely (Snowball Method).
Avoid New Debt: Pause applying for new credit cards or loans until your ratio improves.
function calculateDTI() {
// Get Inputs by ID
var annualIncome = document.getElementById('annualGrossIncome').value;
var mortgage = document.getElementById('monthlyMortgage').value;
var car = document.getElementById('monthlyCar').value;
var student = document.getElementById('monthlyStudentLoan').value;
var credit = document.getElementById('monthlyCreditCard').value;
var other = document.getElementById('monthlyOtherDebt').value;
// Validation: Ensure Annual Income is entered
if (annualIncome === "" || parseFloat(annualIncome) === 0) {
alert("Please enter a valid Annual Gross Income greater than zero.");
return;
}
// Convert inputs to floats, default to 0 if empty
var incomeVal = parseFloat(annualIncome);
var mortgageVal = mortgage === "" ? 0 : parseFloat(mortgage);
var carVal = car === "" ? 0 : parseFloat(car);
var studentVal = student === "" ? 0 : parseFloat(student);
var creditVal = credit === "" ? 0 : parseFloat(credit);
var otherVal = other === "" ? 0 : parseFloat(other);
// Calculate Monthly Income
var monthlyIncome = incomeVal / 12;
// Calculate Total Monthly Debt
var totalMonthlyDebt = mortgageVal + carVal + studentVal + creditVal + otherVal;
// Calculate DTI Ratio
var dtiRatio = (totalMonthlyDebt / monthlyIncome) * 100;
// Round to 1 decimal place
dtiRatio = Math.round(dtiRatio * 10) / 10;
// Display Results
var resultBox = document.getElementById('dti-result-box');
var percentageText = document.getElementById('dti-percentage');
var feedbackDiv = document.getElementById('dti-feedback');
var analysisText = document.getElementById('dti-analysis-text');
resultBox.style.display = 'block';
percentageText.innerHTML = dtiRatio + "%";
// Logic for Feedback Status
var statusHtml = "";
var analysisMsg = "";
if (dtiRatio <= 35) {
statusHtml = 'Healthy';
analysisMsg = "Your DTI is in an excellent range (" + dtiRatio + "%). Lenders view you as a low-risk borrower, and you likely have good cash flow for savings and investments.";
} else if (dtiRatio > 35 && dtiRatio <= 43) {
statusHtml = 'Manageable';
analysisMsg = "Your DTI (" + dtiRatio + "%) is acceptable to most lenders, including mortgage providers (Qualified Mortgage limit is often 43%). However, try to reduce debt before taking on new large obligations.";
} else if (dtiRatio > 43 && dtiRatio <= 50) {
statusHtml = 'High Risk';
analysisMsg = "Your DTI (" + dtiRatio + "%) is high. You may face difficulties getting approved for loans or credit cards. Focus aggressively on paying down debt.";
} else {
statusHtml = 'Critical';
analysisMsg = "Your DTI is " + dtiRatio + "%, which is considered critical. With over half your income going to debt, you are at risk of default. Consider credit counseling or aggressive debt repayment strategies immediately.";
}
feedbackDiv.innerHTML = statusHtml;
analysisText.innerHTML = "Monthly Income: $" + monthlyIncome.toFixed(2) + "Total Monthly Debt: $" + totalMonthlyDebt.toFixed(2) + "" + analysisMsg;
}