-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
439 lines (395 loc) · 13.5 KB
/
Copy pathindex1.html
File metadata and controls
439 lines (395 loc) · 13.5 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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artiquant - Quantitative & Technical LLP</title>
<meta name="description" content="Artiquant is a quantitative and technical LLP specializing in utilizing technology to build and finance innovative solutions.">
<meta name="keywords" content="quantitative trading, technical trading, algorithmic trading, financial technology, risk management">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #007aff;
--secondary-color: #00c7ff;
--background-color: #0a0a0a;
--text-color: #e0e0e0;
--card-background: rgba(255, 255, 255, 0.05);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: var(--background-color);
color: var(--text-color);
overflow-x: hidden;
position: relative;
min-height: 100vh;
scroll-behavior: smooth;
}
#particles-js {
position: fixed;
width: 100%;
height: 100%;
z-index: 0;
}
header, nav, .container, footer {
position: relative;
z-index: 1;
}
header {
background-color: transparent;
color: #fff;
padding: 20px;
text-align: center;
font-size: 24px;
}
header img {
width: 150px;
height: auto;
transition: transform 0.3s ease;
}
header img:hover {
transform: scale(1.1);
}
nav {
background-color: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 15px;
text-align: center;
position: fixed;
top: 0;
width: 100%;
z-index: 2;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
nav.scrolled {
background-color: rgba(0, 0, 0, 0.95);
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-weight: 500;
font-size: 18px;
transition: color 0.3s;
position: relative;
}
nav a::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
bottom: -5px;
left: 0;
background-color: var(--primary-color);
transform: scaleX(0);
transition: transform 0.3s ease;
}
nav a:hover::after {
transform: scaleX(1);
}
.container {
max-width: 1200px;
margin: 120px auto 30px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.02);
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
overflow: hidden;
backdrop-filter: blur(10px);
}
section {
padding: 60px 20px;
text-align: center;
}
section h2 {
font-size: 42px;
margin-bottom: 20px;
color: var(--primary-color);
position: relative;
display: inline-block;
}
section h2::after {
content: '';
position: absolute;
width: 50%;
height: 3px;
bottom: -10px;
left: 25%;
background-color: var(--secondary-color);
}
section p {
font-size: 18px;
line-height: 1.8;
margin-bottom: 20px;
color: #ccc;
}
#expertise ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#expertise li {
flex: 1 1 calc(33.333% - 40px);
margin: 20px;
padding: 30px;
border-radius: 15px;
background-color: var(--card-background);
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
backdrop-filter: blur(10px);
cursor: pointer;
overflow: hidden;
position: relative;
}
#expertise li::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
transform: scale(0);
transition: transform 0.5s ease;
}
#expertise li:hover::before {
transform: scale(1);
}
#expertise li:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#expertise li h3 {
font-size: 24px;
margin-bottom: 10px;
color: #fff;
}
#expertise li p {
color: #ccc;
font-size: 16px;
}
.contact-info {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 30px;
}
.contact-info p {
flex: 1 1 300px;
margin: 10px;
font-size: 16px;
color: #ccc;
}
.contact-info a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s;
}
.contact-info a:hover {
color: var(--secondary-color);
}
footer {
background-color: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 20px;
text-align: center;
position: relative;
width: 100%;
z-index: 2;
}
/* Responsive Design */
@media only screen and (max-width: 768px) {
#expertise li {
flex: 1 1 calc(50% - 40px);
}
header img {
width: 100px;
}
section h2 {
font-size: 36px;
}
}
@media only screen and (max-width: 480px) {
#expertise li {
flex: 1 1 100%;
margin: 10px 0;
}
header img {
width: 80px;
}
section h2 {
font-size: 28px;
}
section p {
font-size: 16px;
}
}
</style>
</head>
<body>
<div id="particles-js"></div>
<header>
<img src="Artiquant Logo.png" alt="Artiquant Logo">
<h1>Artiquant - Quantitative & Technical LLP</h1>
</header>
<nav>
<a href="#about">About</a>
<a href="#expertise">Our Expertise</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="about">
<h2>About Us</h2>
<p>Artiquant is a quantitative and technical LLP, specializing in leveraging advanced technology to build and develop innovative financial solutions. Our approach combines sophisticated quantitative models with in-depth technical analysis, enabling systematic and informed decision-making in identifying lucrative trading opportunities across various markets.</p>
</section>
<section id="expertise">
<h2>Our Expertise</h2>
<ul>
<li>
<h3><i class="fas fa-chart-line"></i> Quantitative Trading Strategies</h3>
<p>Implementing data-driven trading strategies based on advanced quantitative analysis.</p>
</li>
<li>
<h3><i class="fas fa-analytics"></i> Technical Analysis</h3>
<p>Analyzing statistical trends and patterns derived from trading activity and market prices.</p>
</li>
<li>
<h3><i class="fas fa-robot"></i> Algorithmic Trading</h3>
<p>Executing orders using sophisticated, pre-programmed trading instructions for optimal performance.</p>
</li>
<li>
<h3><i class="fas fa-shield-alt"></i> Risk Management</h3>
<p>Assessing and mitigating potential risks in investment strategies using advanced modeling techniques.</p>
</li>
<li>
<h3><i class="fas fa-microchip"></i> Financial Technology Solutions</h3>
<p>Developing and implementing cutting-edge financial technology solutions to stay ahead of the curve.</p>
</li>
<li>
<h3><i class="fas fa-brain"></i> Engineering Financial Prompts for LLM</h3>
<p>Creating sophisticated prompts tailored for utilizing Large Language Models in the financial domain.</p>
</li>
<li>
<h3><i class="fas fa-cogs"></i> Systematic Trading</h3>
<p>Employing a disciplined, rule-based approach to investment management for consistent results.</p>
</li>
<li>
<h3><i class="fas fa-network-wired"></i> Machine Learning</h3>
<p>Developing advanced algorithms that enable computers to learn from data and make intelligent financial decisions.</p>
</li>
<li>
<h3><i class="fas fa-code-branch"></i> FinGPT</h3>
<p>Harnessing the power of GPT-based models for generating high-quality financial content and actionable insights.</p>
</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<div class="contact-info">
<p>We're always eager to discuss new opportunities and collaborations. Reach out to us:</p>
<p>Email: <a href="mailto:artiquant@gmail.com"><i class="fas fa-envelope"></i> artiquant@gmail.com</a></p>
<p>X: <a href="https://twitter.com/quant618" target="_blank"><i class="fab fa-twitter"></i> @quant618</a></p>
</div>
</section>
</div>
<footer>
<p>© 2026 Artiquant. All rights reserved. </p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<script>
particlesJS('particles-js', {
"particles": {
"number": {
"value": window.innerWidth <= 768 ? 50 : 100
},
"color": {
"value": "#007aff"
},
"shape": {
"type": "circle",
},
"opacity": {
"value": 0.5,
"random": true,
"anim": {
"enable": true,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#007aff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 2,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "grab"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 140,
"line_linked": {
"opacity": 1
}
},
"push": {
"particles_nb": 4
},
}
},
"retina_detect": true
});
// Navbar scroll effect
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 50) {
nav.classList.add('scrolled');
} else {
nav.classList.remove('scrolled');
}
});
</script>
</body>
</html>