forked from HighLO/highlo.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (47 loc) · 2.66 KB
/
index.html
File metadata and controls
61 lines (47 loc) · 2.66 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
---
---
<!DOCTYPE html>
<html dir="ltr" lang="en">
{% include head.html %}
<body>
<script src="https://kit.fontawesome.com/e441288905.js" crossorigin="anonymous"></script>
<div id="main">
{% include topnav.html %}
<div class="banner">
<div class="container center">
<img src="assets/logo-files/svg/highlo-color-on-light-bg.svg" alt="Project HighLO" width="600px">
</div>
</div>
{% for page in site.posts reversed %}
{% capture id %}{{ page.id | remove:'/' | downcase }}{% endcapture %}
<div id="section-{{id}}" class="sectiondivider">
</div>
<div id="{{id}}" class="section p-{{id}}">
<div class="container {{ page.style }}">
{{ page.content }}
{% if page.title == 'Vision' %}
<button class="collapsible">Background</button>
<div class="content">
<p style="text-align: justify;">
Around the 2000s, financial markets such as stocks, futures and options markets began to shift from being physical markets to being almost fully electronic. This shift transformed trading, as it also became possible for computers (algorithms) to trade. Algorithms now account for the majority of trading activity. They act automatically and much faster: sometimes their actions are not even perceivable by the human eye. This also creates new challenges for regulators as data size has increased tremendously and new types of market manipulation have emerged. Where do you start looking when there is so much data?
<br>
<br>
This is where particle physics can help.
<br>
<br>
Particle physics has decades of experience in storing, processing and handling big, high-speed data. There are similarities between the billions of particle collisions in CERN's particle accelerator (Large Hadron Collider; LHC) and the high-speed trading on financial markets in which multiple orders per nanosecond are placed. Most collisions in the LHC show no anomalies, but when they do, this may lead to new ground-breaking insights for physicists. Project HighLO uses similar algorithms and tools CERN uses, to identify anomalies on financial market data. When there are anomalies in financial markets, market participants, exchanges and authorities want to know what happened, how the market responded and how they should respond.
<br>
<br>
Applying particle physics tools to financial data opens up a whole new world of analysis and research. It makes us able to see behavior and patterns that we did not see before.
</p>
<br>
</div>
{% endif %}
</div>
</div>
{% endfor %}
{% include footer.html %}
</div>
<script type="text/javascript" src="{{ site.baseurl }}/assets/js/javascripts/collapsible.js"></script>
</body>
</html>