Calculate your Debt-to-Income ratio to understand your financial health and see what lenders look for when you apply for a mortgage or loan.
Monthly Gross Income
Pre-tax income from all sources.
Monthly Debt Payments
Your Debt-to-Income Ratio is:
0%
function calculateDTIRatio() {
var grossIncome = parseFloat(document.getElementById('grossIncome').value) || 0;
var rent = parseFloat(document.getElementById('rentMortgage').value) || 0;
var car = parseFloat(document.getElementById('carPayment').value) || 0;
var student = parseFloat(document.getElementById('studentLoans').value) || 0;
var cards = parseFloat(document.getElementById('creditCards').value) || 0;
var other = parseFloat(document.getElementById('otherDebts').value) || 0;
var alimony = parseFloat(document.getElementById('childSupport').value) || 0;
var resultArea = document.getElementById('dti-result-area');
var percentageText = document.getElementById('dti-percentage');
var statusText = document.getElementById('dti-status');
var descText = document.getElementById('dti-description');
if (grossIncome <= 0) {
alert("Please enter a valid gross monthly income.");
return;
}
var totalMonthlyDebt = rent + car + student + cards + other + alimony;
var dtiRatio = (totalMonthlyDebt / grossIncome) * 100;
var roundedDTI = dtiRatio.toFixed(1);
resultArea.style.display = 'block';
percentageText.innerHTML = roundedDTI + "%";
if (dtiRatio 35 && dtiRatio 43 && dtiRatio <= 50) {
resultArea.style.backgroundColor = '#fff5f5';
statusText.style.color = '#c53030';
statusText.innerHTML = "High (Caution)";
descText.innerHTML = "A DTI above 43% is considered high. Most mortgage lenders require a DTI below 43% to qualify for a Qualified Mortgage.";
} else {
resultArea.style.backgroundColor = '#fff5f5';
statusText.style.color = '#9b2c2c';
statusText.innerHTML = "Very High";
descText.innerHTML = "A DTI over 50% indicates that half your income goes toward debt. This significantly limits your ability to borrow more money.";
}
}
What is the Debt-to-Income (DTI) Ratio?
Your Debt-to-Income (DTI) ratio is a personal finance measure that compares your total monthly debt payments to your monthly gross income. This percentage is one of the primary tools used by lenders (especially mortgage lenders) to measure your ability to manage monthly payments and repay borrowed money.
Mortgage Qualification: For most conventional mortgages, a DTI of 43% is the maximum allowed to qualify for a "Qualified Mortgage."
Interest Rates: Borrowers with lower DTI ratios are often rewarded with lower interest rates because they are viewed as lower risk.
Financial Flexibility: A lower DTI means you have more "disposable income" available for savings, investments, or emergencies.
Practical Example
Let's look at a realistic scenario:
Gross Monthly Income: $6,000
Monthly Expenses:
Mortgage: $1,500
Car Loan: $400
Student Loan: $300
Credit Card Minimum: $100
Total Monthly Debt: $2,300
Calculation: ($2,300 / $6,000) = 0.3833
DTI Ratio:38.3%
In this example, the borrower falls into the "Good" category. They would likely qualify for most home loans, though they should be cautious about taking on significant new debt.
Tips to Lower Your DTI Ratio
Increase your Gross Income: While not always easy, raises, bonuses, or side hustles increase the denominator of the equation.
Pay Down Principal: Focus on high-balance loans. Paying off a car loan or credit card entirely removes that monthly payment from your DTI calculation.
Avoid New Debt: If you are planning to buy a home soon, avoid financing new furniture or a new car, as this will immediately increase your DTI.
Refinance Existing Debt: If you can lower your monthly payments through refinancing (even if it extends the term), your DTI ratio will improve.