Loan Transaction Volume Calculator
About this app
A step-by-step calculator to estimate conservative lending income from current and future loan transaction volumes, considering various assumptions.
Loan Transaction Volume Calculator Loan Transaction Volume Calculator Current Loan Transaction Volume: Future Loan Transaction Volume: Capture Rate (as a decimal): Average Loan Size: Select Plan: Pro Plan ($495/month, 100% commissions) Starter Plan ($95/month, $795 fee per closed loan) Calculate Lending Income
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Loan Transaction Volume Calculator</title>
<meta name="description" content="A step-by-step calculator to estimate conservative lending income from current and future loan transaction volumes, considering various assumptions.">
<meta name="keywords" content="loan calculator, lending income estimate, mortgage calculator, financial planning, loan transaction volume">
<!-- Libraries -->
<!-- jQuery (3.6.0) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS (5.3.3) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Bootstrap JS (5.3.3) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous">
</script>
<!-- Font Awesome (6.6.0) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
// Initial variable declarations
let currentVolume = 0;
let futureVolume = 0;
let captureRate = 0.01; // Default capture rate (1%)
let avgLoanSize = 0;
let planType = ''; // 'pro' or 'starter'
let feePerLoan = 0;
let commissionsEarned = 0;
// Display function for results
function displayResults() {
const incomeEstimate = ((currentVolume + futureVolume) * captureRate * avgLoanSize) - feePerLoan;
$('#incomeEstimate').text(`Estimated Lending Income: $${incomeEstimate.toFixed(2)}`);
}
// Event listeners
$('#calculateBtn').on('click', function() {
currentVolume = parseFloat($('#currentVolume').val()) || 0;
futureVolume = parseFloat($('#futureVolume').val()) || 0;
captureRate = parseFloat($('#captureRate').val()) || 0.01;
avgLoanSize = parseFloat($('#avgLoanSize').val()) || 0;
planType = $('input[name=plan]:checked').val();
feePerLoan = (planType === 'starter') ? 795 : 0;
displayResults();
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to right, #4facfe, #00f2fe);
color: #333;
}
#main-container {
background: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
margin-top: 50px;
}
h1 {
color: #fff;
text-align: center;
}
.results {
margin-top: 20px;
font-size: 1.2em;
font-weight: bold;
color: #1976d2;
}
.input-group, .btn {
margin-bottom: 15px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Loan Transaction Volume Calculator</h1>
<div class="mb-3">
<label for="currentVolume" class="form-label">Current Loan Transaction Volume:</label>
<input type="number" class="form-control" id="currentVolume" placeholder="Enter amount in dollars">
</div>
<div class="mb-3">
<label for="futureVolume" class="form-label">Future Loan Transaction Volume:</label>
<input type="number" class="form-control" id="futureVolume" placeholder="Enter amount in dollars">
</div>
<div class="mb-3">
<label for="captureRate" class="form-label">Capture Rate (as a decimal):</label>
<input type="number" step="0.01" class="form-control" id="captureRate" value="0.01">
</div>
<div class="mb-3">
<label for="avgLoanSize" class="form-label">Average Loan Size:</label>
<input type="number" class="form-control" id="avgLoanSize" placeholder="Enter amount in dollars">
</div>
<div class="mb-3">
<label class="form-label">Select Plan:</label>
<div>
<input type="radio" id="pro" name="plan" value="pro" checked>
<label for="pro">Pro Plan ($495/month, 100% commissions)</label>
<br>
<input type="radio" id="starter" name="plan" value="starter">
<label for="starter">Starter Plan ($95/month, $795 fee per closed loan)</label>
</div>
</div>
<button id="calculateBtn" class="btn btn-primary">Calculate Lending Income</button>
<div class="results" id="incomeEstimate"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!