republic8 commited on
Commit
1980258
·
1 Parent(s): ce8e1e1

update index.html

Browse files
Files changed (1) hide show
  1. index.html +78 -18
index.html CHANGED
@@ -1,19 +1,79 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Limit Order Book Dynamics in Matching Markets</title>
6
+ <link rel="stylesheet" href="style.css">
7
+ <style>
8
+ body {
9
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
10
+ padding: 40px;
11
+ max-width: 900px;
12
+ margin: auto;
13
+ line-height: 1.65;
14
+ }
15
+ h1 { font-size: 2.2em; }
16
+ .paper-links a {
17
+ background: #4e79ff;
18
+ color: white;
19
+ padding: 10px 16px;
20
+ border-radius: 8px;
21
+ text-decoration: none;
22
+ margin-right: 10px;
23
+ }
24
+ .code-link { background: #ff5f5f !important; }
25
+ .section { margin-top: 40px; }
26
+ </style>
27
+ </head>
28
+
29
+ <body>
30
+
31
+ <h1>Limit Order Book Dynamics in Matching Markets</h1>
32
+ <p><strong>Yao Wu, Westlake University</strong></p>
33
+
34
+ <div class="paper-links">
35
+ <a href="https://arxiv.org/abs/2511.20606" target="_blank">📄 arXiv Paper</a>
36
+ <a class="code-link" href="https://github.com/Republic1024/Limit-Order-Matching-Microstructure" target="_blank">💻 GitHub Code</a>
37
+ </div>
38
+
39
+ <div class="section">
40
+ <h2>Abstract</h2>
41
+ <p>
42
+ This project studies matching markets as a microstructure system built around
43
+ bid–ask spreads, liquidity droughts, and execution constraints.
44
+ It formalizes matching decisions as limit-order-book executions, demonstrating
45
+ that linear compensation cannot close structural preference gaps unless it
46
+ induces identity collapse. A dynamic execution threshold explains settling,
47
+ high-tier instant matches, and post-match regret (slippage).
48
+ </p>
49
+ </div>
50
+
51
+ <div class="section">
52
+ <h2>Repository Overview</h2>
53
+ <p>
54
+ This Space mirrors the GitHub repository and provides a lightweight static
55
+ homepage for the associated arXiv paper. All experiments, plots, and simulation
56
+ code are available on GitHub.
57
+ </p>
58
+ </div>
59
+
60
+ <div class="section">
61
+ <h2>How to Use</h2>
62
+ <ul>
63
+ <li>Visit GitHub for full code and figures</li>
64
+ <li>Read the arXiv paper for theoretical details</li>
65
+ <li>All images are hosted remotely to comply with HF static Space rules</li>
66
+ </ul>
67
+ </div>
68
+
69
+ <div class="section">
70
+ <h2>Citation</h2>
71
+ <pre>
72
+ Wu, Y. (2025). Limit Order Book Dynamics in Matching Markets:
73
+ Microstructure, Spread, and Execution Slippage.
74
+ arXiv:2511.20606.
75
+ </pre>
76
+ </div>
77
+
78
+ </body>
79
  </html>