forked from Etyre/elityre.com
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrading-bootcamp.html
More file actions
108 lines (92 loc) · 3.29 KB
/
trading-bootcamp.html
File metadata and controls
108 lines (92 loc) · 3.29 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
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
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ricki Heicklen</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-2CYW1CTPDD"
></script>
<script src="js/gtag.js"></script>
<script src="nav.js"></script>
</head>
<body>
<!--Navigation bar-->
<div id="nav-placeholder"></div>
<div class="main text">
<div>
<p>
I run a
<a
href="https://www.complexsystemspodcast.com/episodes/teaching-trading-ricki-heicklen/"
target="_blank"
>trading bootcamp</a
>, which teaches the fundamentals of quantitative trading —
markets, order books, auctions, risk and sizing, adverse selection,
arbitrage, how quant trading firms make money — typically over the
course of four days.
</p>
<p>
The philosophy of this bootcamp is that the best way to learn to trade
is by trading. We use a fake economy and exchange, run through many
sessions of trading games designed to teach progressively more complex
concepts, and auction off prizes at the end using our internal currency.
</p>
<p>
It's an immersive program and participants are expected to attend for
the entirety of the bootcamp, since the content is dense and cumulative.
We generally have 15-30 students.
</p>
<p>
I teach trading bootcamp with 2-3 instructors (if you've taken the
bootcamp and are interested in instructing, please reach out). As of
October 2024, it has been run 10 times.
</p>
<p>
You can sign up for an upcoming session or register interest in future
iterations below.
</p>
<h1>November Bootcamp Signup</h1>
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSe9auB4NCIXGHMcv41jFsvS1go2ufVVbcKmqUk9aByFdoIigA/viewform?embedded=true"
width="740"
height="1200"
frameborder="0"
marginheight="0"
marginwidth="0"
>Loading…</iframe
>
<h1>General Interest Form</h1>
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSeJMLumy0HFNdddjqG-rmMIe0CmktmMVCyF1stNLcyX09WpcA/viewform?embedded=true"
width="740"
height="500"
frameborder="0"
marginheight="0"
marginwidth="0"
>Loading…</iframe
>
</div>
</div>
<div id="last-updated"></div>
<script>
var urlArray = window.location.href.split("/");
var nameOfThisPage = urlArray[urlArray.length - 1];
const getCommits = async pageName => {
var result = await fetch(
"https://api.github.com/repos/rickiheicklen/rickiheicklen.github.io/commits?path=" +
encodeURIComponent(pageName)
);
var data = await result.json();
var timestamp = new Date(data[0].commit.author.date);
var formattedDate = timestamp.toDateString();
console.log(formattedDate);
document.getElementById("last-updated").innerHTML =
"<p><br><i>This page was last updated on " +
formattedDate +
".</i></p>";
};
getCommits(nameOfThisPage);
</script>
</body>