forked from aerokam/Treasuries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvision.html
More file actions
81 lines (71 loc) · 5.04 KB
/
vision.html
File metadata and controls
81 lines (71 loc) · 5.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Treasury Investors Portal — Project Vision</title>
<style>
body { font-family: system-ui, sans-serif; line-height: 1.6; max-width: 800px; margin: 0 auto; padding: 40px 20px; background: #fafafa; color: #1e293b; }
h1 { font-size: 28px; border-bottom: 2px solid #1a56db; padding-bottom: 12px; margin-bottom: 32px; color: #1a56db; }
h2 { font-size: 22px; margin-top: 40px; color: #334155; }
h3 { font-size: 18px; margin-top: 24px; color: #475569; }
p { margin-bottom: 16px; }
ul { margin-bottom: 24px; padding-left: 20px; }
li { margin-bottom: 8px; }
code { background: #f1f5f9; padding: 2px 4px; border-radius: 4px; font-family: monospace; font-size: 0.9em; }
.mission-box { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; margin-bottom: 32px; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.mission-box p { font-style: italic; color: #64748b; margin-top: 12px; }
hr { border: none; border-top: 1px solid #e2e8f0; margin: 40px 0; }
.back-link { display: inline-block; margin-bottom: 24px; text-decoration: none; color: #64748b; font-weight: 600; font-size: 14px; }
.back-link:hover { color: #1a56db; }
footer { margin-top: 64px; font-size: 13px; color: #94a3b8; text-align: center; border-top: 1px solid #e2e8f0; padding-top: 24px; }
</style>
</head>
<body>
<a href="./index.html" class="back-link">← Back to Portal</a>
<h1>Treasury Investors Portal — Project Vision</h1>
<div class="mission-box">
<h2>The Mission</h2>
<p>To provide the community with clear, free, and transparent tools for managing Treasury portfolios, with a specialized focus on TIPS (Treasury Inflation-Protected Securities). This is a contribution to the <strong>Bogleheads</strong> tradition of evidence-based investing, intended to replace "black box" financial tools with open, educational infrastructure.</p>
<p>We don't just show results; we show the <strong>work</strong>.</p>
</div>
<hr>
<h2>Core Principles</h2>
<h3>1. The Understandability Reward</h3>
<p>Understandability is our primary metric. Every UI adjustment and logic decision should be a positive reward for improving the clarity of the information displayed. If a change makes the tool more powerful but more opaque, it doesn't belong here.</p>
<ul>
<li><strong>Traceability</strong>: Every number on screen must be explainable.</li>
<li><strong>Visual Intuition</strong>: Use charts and grids to make complex relationships (like duration matching) feel obvious.</li>
<li><strong>Language Alignment</strong>: Adhere to market-standard terms (e.g., "Ref CPI", "Dated Ref CPI") to build real-world financial literacy.</li>
</ul>
<h3>2. "Drill Baby Drill" (in a good way) — Progressive Disclosure</h3>
<p>Knowledge is layered. A user should be able to start at a high-level summary and "drill" all the way down to the legal authority.</p>
<ul>
<li><strong>Level 1: The UI</strong>: Clean, actionable, and distraction-free.</li>
<li><strong>Level 2: The Drill-Down</strong>: Interactive popups showing the exact calculation chain.</li>
<li><strong>Level 3: The Specification</strong>: Internal knowledge documents that define our implementation.</li>
<li><strong>Level 4: The Authority</strong>: Direct references to the source of truth, such as the <strong>Code of Federal Regulations (CFR)</strong> or official BLS/Treasury methodology.
<ul>
<li><em>Example</em>: Explaining that Ref CPI for the 1st of the month is equal to the CPI-U (NSA) from three months prior, per 31 CFR § 356.</li>
</ul>
</li>
</ul>
<h3>3. Multi-Level Education</h3>
<p>TIPS are notoriously counter-intuitive. We aim to explain concepts like <strong>Seasonal Adjustments</strong> at various levels:</p>
<ul>
<li><strong>Common Sense</strong>: "Prices change with the seasons. We flatten those waves so you can see the real value of the TIPS."</li>
<li><strong>Institutional Logic</strong>: Explaining why traders look at seasonally-adjusted yields to make "fair value" comparisons.</li>
<li><strong>The Math</strong>: Using linear regression and backwards-anchored sliding windows to isolate idiosyncratic outliers.</li>
</ul>
<hr>
<h2>Community Commitment</h2>
<ul>
<li><strong>Always Free, Always Open</strong>: No accounts, no tracking, and no hidden logic. All calculations run locally in your browser.</li>
<li><strong>Community-First</strong>: Designed by and for those who value transparency and rigor. The goal is to simplify the complex without removing the rigor.</li>
<li><strong>Educational First Principles</strong>: If you can't drill into a value to understand where it came from, we haven't finished building it.</li>
</ul>
<footer>
A free contribution to the <a href="https://www.bogleheads.org/" style="color: #94a3b8; text-decoration: none; border-bottom: 1px dotted #cbd5e1;">Bogleheads</a> community.
</footer>
</body>
</html>