-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplc.html
195 lines (186 loc) · 6.3 KB
/
plc.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<html>
<head>
<title>Bitcoin - Power Law Corridor (PLC) Charts</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/chart-icon.png" />
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<link rel="stylesheet" type="text/css" href="css/responsive.css"/>
<link rel="stylesheet" type="text/css" href="css/home.css"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-152601513-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-152601513-2');
</script>
</head>
<body>
<div class="nav-wrap">
<div class="nav">
<a class="home" href="/">
<span></span>
<span></span>
<span></span>
</a>
<a href="/nlb.html">NLB</a>
<a class="selected" href="/plc.html">PLC</a>
<!-- <a href="/stock-to-flow.html">Stock to Flow</a> -->
</div>
</div>
<div class="content">
<h1>Bitcoin's Power Law Corridor of Growth</h1>
<p class="intro">
As described in
<a href="https://medium.com/coinmonks/bitcoins-natural-long-term-power-law-corridor-of-growth-649d0e9b3c94">this article</a>
by
<a href="https://twitter.com/hcburger1">Harold Christopher Burger</a>
</p>
<div class="text-block">
<p>Bitcoin's Power Law Corridor is the channel within which Bitcoin has
been growing in price since its inception, when charted on log price
over square-root time scales.</p>
<p>The top top edge is a linear regression through Bitcoin's three bubble
peaks. The bottom line is the linear regression through the daily price,
minus standard deviation.</p>
</div>
<div id="basic">
<div class="chart-header">
<h2>Power Law Corridor</h2>
<div class="chart-data chart-data-top">
<div class="date"></div>
<div>
Price: <span class="price"></span>
Max: <span class="deviation d-max"></span>
Expected: <span class="expected"></span>
Min: <span class="deviation d-min"></span>
</div>
</div>
</div>
<div class="chart-wrapper">
<table class="chart-data chart-data-overlay">
<tr>
<td>Date</td>
<td class="date"></td>
</tr>
<tr>
<td>Price</td>
<td class="price"></td>
</tr>
<tr>
<td>Max</td>
<td class="deviation d-max"></td>
</tr>
<tr>
<td>Expected</td>
<td class="expected"></td>
</tr>
<tr>
<td>Min</td>
<td class="deviation d-min"></td>
</tr>
</table>
<div id="basic_chart" class="chart">
<div class="chart-loading">
<div>Loading…</div>
</div>
</div>
</div>
<div class="slider-container">
<input type="range" id="basic_chart_range" class="chart-range" min="0" max="150" value="100">
</div>
</div>
<div class="text-block">
<p>If we plot the same values on linear scales, we can see Bitcoin's
exponential growth within this corridor.</p>
</div>
<div id="extrapolation">
<div class="chart-header">
<h2>Linear Scales</h2>
<div class="chart-data chart-data-top">
<div class="date"></div>
<div>
Price: <span class="price"></span>
Max: <span class="deviation d-max"></span>
Expected: <span class="expected"></span>
Min: <span class="deviation d-min"></span>
</div>
</div>
</div>
<div class="chart-wrapper">
<table class="chart-data chart-data-overlay">
<tr>
<td>Date</td>
<td class="date"></td>
</tr>
<tr>
<td>Price</td>
<td class="price"></td>
</tr>
<tr>
<td>Max</td>
<td class="deviation d-max"></td>
</tr>
<tr>
<td>Expected</td>
<td class="expected"></td>
</tr>
<tr>
<td>Min</td>
<td class="deviation d-min"></td>
</tr>
</table>
<div id="extrapolation_chart" class="chart">
<div class="chart-loading">
<div>Loading…</div>
</div>
</div>
</div>
<div class="slider-container">
<input type="range" id="extrapolation_chart_range" class="chart-range" min="0" max="150" value="100">
</div>
</div>
<h2>Data Points</h2>
<div class="data-points">
<div>
<h3>Today</h3>
<table>
<tr class="deviation">
<td>Max price</td>
<td id="today_max"></td>
</tr>
<tr class="expected">
<td>Expected price</td>
<td id="today_expected"></td>
</tr>
<tr class="deviation">
<td>Min price</td>
<td id="today_min"></td>
</tr>
</table>
</div>
<div>
<h3>5 Years</h3>
<table id="year_data_points"></table>
</div>
<div>
<h3>Goals</h3>
<table id="magnitude_data_points"></table>
</div>
</div>
<div class="credits">
<a class="original-article" href="https://medium.com/coinmonks/bitcoins-natural-long-term-power-law-corridor-of-growth-649d0e9b3c94">
Original Article by Harold Christopher Burger
</a>
</div>
<div class="footer">
<p class="true-til-not">
It's true until it's not.
<span class="take-a-while">But that might take a while.</span>
</p>
<p><a href="https://github.com/cilphex/bitcoin-never-look-back">Open source</a></p>
</div>
</div>
</body>
<script type="module" src="js/charts/plc/index.js"></script>
</html>