The Debt-to-Income Ratio (DTI) is a personal finance metric that compares your total monthly debt payments to your gross monthly income. Lenders use DTI to assess your ability to manage monthly payments and repay debts. A lower DTI generally indicates a lower risk for lenders, making it easier to qualify for loans, especially mortgages.
For example, if your total monthly debt payments are $1,500 and your gross monthly income is $5,000, your DTI would be calculated as:
($1,500 / $5,000) * 100 = 30%
What Does Your DTI Mean?
Lenders often use DTI to determine loan eligibility and the amount they are willing to lend. While specific thresholds can vary by lender and loan type, here are general guidelines:
Below 36%: Generally considered good. You likely have a manageable debt load.
36% to 43%: Acceptable for some loans, particularly mortgages, but may require additional scrutiny.
43% or higher: Considered high. It may be difficult to qualify for new credit or loans, and you might be at a higher risk of financial distress.
Why is DTI Important?
Understanding your DTI is crucial for several reasons:
Loan Qualification: It's a primary factor lenders consider when approving loans, especially mortgages.
Financial Health: A high DTI can signal that you might be overextended financially.
Budgeting: It helps you understand how much of your income is already committed to debt, aiding in better financial planning.
What Debts to Include?
When calculating your DTI, ensure you include all recurring monthly debt obligations. This typically includes:
Mortgage or Rent Payments
Minimum Credit Card Payments
Auto Loan Payments
Student Loan Payments
Personal Loan Payments
Alimony or Child Support Payments
Note: Expenses like utilities, groceries, insurance premiums (unless part of a mortgage escrow), and other living costs are generally NOT included in DTI calculations.
function calculateDTI() {
var monthlyGrossIncomeInput = document.getElementById("monthlyGrossIncome");
var totalMonthlyDebtPaymentsInput = document.getElementById("totalMonthlyDebtPayments");
var resultDiv = document.getElementById("result");
var resultValueSpan = document.getElementById("result-value");
var dtiCategoryP = document.getElementById("dti-category");
var monthlyGrossIncome = parseFloat(monthlyGrossIncomeInput.value);
var totalMonthlyDebtPayments = parseFloat(totalMonthlyDebtPaymentsInput.value);
if (isNaN(monthlyGrossIncome) || isNaN(totalMonthlyDebtPayments)) {
alert("Please enter valid numbers for all fields.");
resultDiv.style.display = 'none';
return;
}
if (monthlyGrossIncome <= 0) {
alert("Monthly Gross Income must be greater than zero.");
resultDiv.style.display = 'none';
return;
}
if (totalMonthlyDebtPayments < 0) {
alert("Total Monthly Debt Payments cannot be negative.");
resultDiv.style.display = 'none';
return;
}
var dti = (totalMonthlyDebtPayments / monthlyGrossIncome) * 100;
var formattedDti = dti.toFixed(2);
var category = "";
if (dti = 36 && dti <= 43) {
category = "Good. Your DTI is between 36% and 43%. This is often acceptable for mortgage lenders, but managing debt carefully is advised.";
} else {
category = "High. Your DTI is above 43%. This may make it challenging to qualify for new loans and suggests a high debt burden.";
}
resultValueSpan.textContent = formattedDti + "%";
dtiCategoryP.textContent = category;
resultDiv.style.display = 'block';
}