Calculator Tools Calculator Tools

SIPC Coverage Calculator for Couples

Mar 21, 2024

About this app

This calculator helps married couples determine how many accounts and types of accounts they need to open to ensure all their assets are covered by SIPC protection at Schwab. It considers the $500,000 protection limit, including a $250,000 limit for cash, and explains the coverage for different account capacities like joint tenant or sole owner.

SIPC Coverage Calculator for Couples SIPC Coverage Calculator for Couples Total Cash Asset Value ($) Total Securities Asset Value ($) Calculate

Put this on your site

Source

index.html
                    <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIPC Coverage Calculator for Couples</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="container py-5">
<h2 class="text-center mb-4">SIPC Coverage Calculator for Couples</h2>
<form id="coverageCalculator">
<div class="mb-3">
<label for="cashValue" class="form-label">Total Cash Asset Value ($)</label>
<input type="number" class="form-control" id="cashValue" placeholder="Enter total value of cash assets">
</div>
<div class="mb-3">
<label for="securitiesValue" class="form-label">Total Securities Asset Value ($)</label>
<input type="number" class="form-control" id="securitiesValue" placeholder="Enter total value of securities assets">
</div>
<button type="submit" class="btn btn-primary">Calculate</button>
</form>
<div id="result" class="mt-4">
<!-- Results will be displayed here -->
</div>
</div>
</body>
</html>