Calculate how much you might be able to borrow with a Home Equity Line of Credit (HELOC).
80%
85%
90%
Your Estimated HELOC Borrowing Power:
—
Understanding Your HELOC Borrowing Power
A Home Equity Line of Credit (HELOC) is a revolving credit facility, similar to a credit card, that allows homeowners to borrow against the equity built up in their home. The amount you can borrow is not arbitrary; it's primarily determined by the Loan-to-Value (LTV) ratio that lenders are willing to offer. Our HELOC Borrowing Power Calculator helps you estimate this potential amount.
How the Calculator Works: The Math Behind HELOCs
The calculation is straightforward and centers around your home's equity and the lender's maximum allowed Loan-to-Value (LTV) ratio.
Calculate Home Equity: This is the difference between your home's current market value and the total amount you owe on all existing mortgages.
Home Equity = Current Home Value – Outstanding Mortgage Balance
Determine Maximum Loan Amount: Lenders set a maximum LTV ratio, which is the maximum percentage of your home's value they are willing to lend against. This includes your existing mortgage and the proposed HELOC. For example, if a lender allows an 85% LTV and your home is worth $500,000, the maximum total debt they'd allow is $425,000 (85% of $500,000).
Maximum Total Debt = Current Home Value × (Maximum LTV Ratio / 100)
Calculate Maximum HELOC Amount: Subtract your outstanding mortgage balance from the maximum total debt allowed by the lender. This gives you the maximum amount you could potentially borrow with a HELOC.
Maximum HELOC Amount = Maximum Total Debt – Outstanding Mortgage Balance
Account for Closing Costs: HELOCs often come with closing costs, which can be a percentage of the line of credit. The calculator subtracts an estimated percentage for these costs from the calculated maximum HELOC amount to give you a more realistic picture of the net funds available.
Estimated Net HELOC = Maximum HELOC Amount × (1 – (Estimated Closing Costs / 100))
Key Terms Explained:
Current Home Value: The estimated market worth of your property. This can be based on recent appraisals or comparable sales in your area.
Outstanding Mortgage Balance: The total amount currently owed on all primary mortgages secured by your home.
Maximum Loan-to-Value (LTV) Ratio: The highest percentage of your home's value that a lender will finance. This is a crucial factor in determining how much equity you can tap into. Common LTV limits for HELOCs range from 80% to 90%.
Estimated Closing Costs: Fees charged by the lender to process and approve your HELOC. These can include appraisal fees, title insurance, recording fees, and others. They are often expressed as a percentage of the credit line.
Why Use a HELOC Calculator?
Before applying for a HELOC, understanding your potential borrowing capacity is essential. This calculator provides a quick estimate, helping you:
Gauge how much equity you can leverage for home improvements, debt consolidation, education expenses, or other significant financial needs.
Compare borrowing power across different LTV scenarios.
Prepare for conversations with lenders by having a realistic idea of what you might qualify for.
Remember, this calculator provides an estimate. Actual loan amounts, terms, and interest rates will vary based on the lender's underwriting process, your creditworthiness, and current market conditions.
function calculateHELOC() {
var homeValue = parseFloat(document.getElementById("homeValue").value);
var outstandingMortgage = parseFloat(document.getElementById("outstandingMortgage").value);
var maxLTV = parseFloat(document.getElementById("maxLTV").value);
var closingCosts = parseFloat(document.getElementById("closingCosts").value);
var resultElement = document.getElementById("result").getElementsByTagName("span")[0];
resultElement.textContent = "–"; // Reset result
// Input validation
if (isNaN(homeValue) || homeValue <= 0) {
resultElement.textContent = "Please enter a valid home value.";
return;
}
if (isNaN(outstandingMortgage) || outstandingMortgage < 0) {
resultElement.textContent = "Please enter a valid outstanding mortgage balance.";
return;
}
if (isNaN(maxLTV) || maxLTV 100) {
resultElement.textContent = "Please select a valid LTV ratio.";
return;
}
if (isNaN(closingCosts) || closingCosts homeValue) {
resultElement.textContent = "Outstanding mortgage cannot exceed home value.";
return;
}
// Calculations
var homeEquity = homeValue – outstandingMortgage;
var maxTotalDebt = homeValue * (maxLTV / 100);
var maxHELOC = maxTotalDebt – outstandingMortgage;
// Ensure HELOC is not negative (can happen if outstanding mortgage is very high relative to LTV)
if (maxHELOC < 0) {
maxHELOC = 0;
}
var estimatedNetHELOC = maxHELOC * (1 – (closingCosts / 100));
// Ensure net HELOC is not negative
if (estimatedNetHELOC < 0) {
estimatedNetHELOC = 0;
}
// Format result with commas and no dollar sign for the HELOC amount itself
var formattedNetHELOC = estimatedNetHELOC.toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
resultElement.textContent = "$" + formattedNetHELOC;
document.getElementById("result").getElementsByTagName("span")[0].innerHTML += "(Estimated, before lender review)";
}