-
Notifications
You must be signed in to change notification settings - Fork 0
/
algorithms.html
376 lines (335 loc) · 20.8 KB
/
algorithms.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
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
<!DOCTYPE html>
<html lang="it">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XFT0RC0GBQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XFT0RC0GBQ');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<title>Nabla</title>
</head>
<body>
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">
<img src="assets/img/logo.png" alt="">
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="academy.html" class="nav__link">Academy</a>
</li>
<li class="nav__item">
<a href="healthcare.html" class="nav__link">Healthcare</a>
</li>
<li class="nav__item">
<a href="algorithms.html" class="nav__link active-link">Algorithms</a>
</li>
<li class="nav__item">
<a href="faq.html" class="nav__link">FAQ</a>
</li>
<li class="nav__item">
<a href="#footer" class="nav__link">Contatti</a>
</li>
</ul>
<div class="nav__close" id="nav-close">
<i class="ri-close-line"></i>
</div>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class="ri-function-line"></i>
</div>
</nav>
</header>
<main class="main">
<div id="particles-js"></div> <!-- stats - count particles -->
<script src="particles.min.js"></script>
<script>
particlesJS("particles-js", {
particles: {
number: { value: 138, density: { enable: true, value_area: 800 } },
color: { value: "#ffffff" },
shape: {
type: "circle",
stroke: { width: 0, color: "#000000" },
polygon: { nb_sides: 5 },
image: { src: "img/github.svg", width: 100, height: 100 }
},
opacity: {
value: 0.5,
random: false,
anim: { enable: false, speed: 1, opacity_min: 0.1, sync: false }
},
size: {
value: 3,
random: true,
anim: { enable: false, speed: 20, size_min: 0.1, sync: false }
},
line_linked: {
enable: true,
distance: 150,
color: "#ffffff",
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: "window",
events: {
onhover: { enable: true, mode: "repulse" },
onclick: { enable: true, mode: "push" },
resize: true
},
modes: {
grab: { distance: 400, line_linked: { opacity: 1 } },
bubble: { distance: 400, size: 40, duration: 2, opacity: 8, speed: 3 },
repulse: { distance: 200, duration: 0.4 },
push: { particles_nb: 4 },
remove: { particles_nb: 2 }
}
},
retina_detect: true
});
var count_particles, stats, update;
stats = new Stats();
stats.setMode(0);
stats.domElement.style.position = "absolute";
stats.domElement.style.left = "0px";
stats.domElement.style.top = "0px";
document.body.appendChild(stats.domElement);
count_particles = document.querySelector(".js-count-particles");
update = function () {
stats.begin();
stats.end();
if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) {
count_particles.innerText = window.pJSDom[0].pJS.particles.array.length;
}
requestAnimationFrame(update);
};
requestAnimationFrame(update);
</script>
<section class="home section" id="home">
<div class="home__container container grid">
<div>
<img src="assets/img/algorithms.png" alt="" class="home__img">
</div>
<div class="home__data">
<div class="home__header">
<br><br><br><br><br><h5 class="home__subtitle">Nabla Algorithms</h5>
<p class="home__description">
</p>
</div>
<div class="home__footer">
</div>
</div>
</div>
</section>
<section class="discount section">
<br>
<div class="discount__containers container grid">
<div class="discount__animate">
<b>Nabla Algorithms offre soluzioni di trading innovative e altamente personalizzate, progettate per massimizzare le opportunità di profitto. Con un team di esperti e tecnologie brevettate, garantiamo strumenti avanzati che forniscono un vantaggio competitivo unico, trasformando l'analisi dei mercati in strategie efficienti e performanti.</b>
</div>
</div>
</section>
<section class="discount section">
<div class="discount__container container grid">
<img src="assets/img/trading4.png" alt="" class="discount__img">
<div class="discount__animate">
<h2 class="discount__title"><font color="#99ffc2">Software Linee</font></h2>
<span class="specs__subtitle">
<b>Il Software Linee è un potente strumento che semplifica l'analisi tecnica.<br> Ti invia automaticamente screenshot in tempo reale, <br>evidenziando punti chiave e supporti/resistenze. Perfetto per chi cerca un<br>supporto semplice e rapido per decisioni di trading basate su analisi<br>visive senza dover monitorare continuamente i mercati.</b>
</span><br><br>
<a href="https://wa.me/393311480607" class="button button--flex">
<i class="ri-whatsapp-line button__icon"></i> <b>Contattaci</b>
</a>
</div>
</div>
</section>
<section class="discount section">
<div class="discount__container container grid">
<img src="assets/img/trading1.png" alt="" class="discount__img">
<div class="discount__animate">
<h2 class="discount__title"><font color="#99ffc2">Indicatore HCA ©</font></h2>
<span class="specs__subtitle">
<b>L'Indicatore HCA © è uno strumento avanzato che combina l'analisi ciclica<br>con la strategia brevettata delle linee di confluenza, unica nel suo genere.<br>Questo indicatore fonde due potenti metodologie per identificare<br>con precisione punti di svolta nei mercati, massimizzando le opportunità<br>di profitto. Grazie alla complessità dei suoi algoritmi, l'HCA offre ai<br>trader segnali estremamente accurati, basati su una visione<br>unica e brevettata del mercato.</b>
</span><br><br>
<a href="https://wa.me/393311480607" class="button button--flex">
<i class="ri-whatsapp-line button__icon"></i> <b>Contattaci</b>
</a>
</div>
</div>
</section>
<section class="discount section">
<div class="discount__container container grid">
<img src="assets/img/trading2.png" alt="" class="discount__img">
<div class="discount__animate">
<h2 class="discount__title"><font color="#99ffc2">Automatic Cyclic Analysis</font></h2>
<span class="specs__subtitle">
<b>Automatic Cyclic Analysis è il tuo alleato per l'analisi dei cicli di mercato.<br>Il software traccia automaticamente i cicli più rilevanti, aiutandoti a identificare<br>i momenti migliori per entrare e uscire dalle operazioni. Sfrutta l'andamento<br>naturale dei mercati per ottimizzare le tue performance di trading.</b>
</span><br><br>
<a href="https://wa.me/393311480607" class="button button--flex">
<i class="ri-whatsapp-line button__icon"></i> <b>Contattaci</b>
</a>
</div>
</div>
</section>
<section class="discount section">
<div class="discount__container container grid">
<img src="assets/img/trading3.png" alt="" class="discount__img">
<div class="discount__animate">
<h2 class="discount__title"><font color="#99ffc2">Sviluppa con noi la tua strategia</font></h2>
<span class="specs__subtitle">
<b>Il servizio 'Sviluppa con noi la tua strategia' è pensato per i trader che vogliono<br>creare una strategia su misura. Lavoriamo fianco a fianco con te per costruire,<br>testare e ottimizzare un piano di trading personalizzato che si adatta perfettamente<br>alle tue esigenze e al tuo stile di trading. Una soluzione premium per chi cerca<br>il massimo controllo e personalizzazione.</b>
</span><br><br>
<a href="https://wa.me/393311480607" class="button button--flex">
<i class="ri-whatsapp-line button__icon"></i> <b>Contattaci</b>
</a>
</div>
</div>
</section>
<section class="products section" id="products">
<div class="products__containerex container grid">
<article class="products__cardex">
<div class="products__contentex">
<img src="assets/img/trading4.png" alt="" class="products__img">
<h3 class="products__title">Software Linee</h3>
<span class="products__price"><b>€350</b>/mese +iva</span>
<a href="https://updates.actiwise.biz/widget/form/pM8P4Jcyf9yMLDhJqL1v">
<button class="button button--flex products__button">
<i class="ri-shopping-bag-line button__icon"></i>
</button>
</a>
</article>
<article class="products__cardex">
<div class="products__contentex">
<img src="assets/img/trading1.png" alt="" class="products__img">
<h3 class="products__title">Indicatore HCA</h3>
<span class="products__price"><b>€1500</b>/mese +iva</span>
<a href="https://updates.actiwise.biz/widget/form/wczrlVuojkpzRrldjBIW">
<button class="button button--flex products__button">
<i class="ri-shopping-bag-line button__icon"></i>
</button>
</a>
</div>
</article>
<article class="products__cardex">
<div class="products__contentex">
<img src="assets/img/trading2.png" alt="" class="products__img">
<h3 class="products__title">Automatic Cyclic Analysis</h3>
<span class="products__price"><b>€500</b>/mese +iva</span>
<a href="https://updates.actiwise.biz/widget/form/B3kuNHMUV9zSwGN5bnCK">
<button class="button button--flex products__button">
<i class="ri-shopping-bag-line button__icon"></i>
</button>
</a>
</div>
</article>
</div>
</section>
<footer class="footer section" id="footer">
<div class="footer__container container grid">
<a href="#" class="footer__logo">
<img src="assets/img/logo.png" alt="">
</a>
<div class="footer__content">
<h3 class="footer__title">Nabla</h3>
<ul class="footer__links">
<li>
<a href="index.html" class="footer__link">Home</a>
</li>
<li>
<a href="academy.html" class="footer__link">Academy</a>
</li>
<li>
<a href="healthcare.html" class="footer__link">Healthcare</a>
</li>
<li>
<a href="algorithms.html" class="footer__link">Algorithms</a>
</li>
<li>
<a href="faq.html" class="footer__link">FAQ</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Contatti</h3>
<ul class="footer__links">
<li>
<a href="mailto:mgmt@nablainvest.it" class="footer__link">mgmt@nablainvest.it</a>
</li>
<li>
<a href="tel:00393311480607" class="footer__link">+39 3311480607</a>
</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Follow us</h3>
<ul class="footer__links">
<li>
<a href="https://www.instagram.com/nabla_invest" target="_blank" class="footer__social-link">
<i class="ri-instagram-line"></i>
</a>
<a href="https://www.tiktok.com/@nabla_crypto_finance" target="_blank" class="footer__social-link">
<i class="ri-tiktok-fill"></i>
</a>
<a href="https://x.com/nablainvest" target="_blank" class="footer__social-link">
<i class="ri-twitter-x-line"></i>
</a>
<a href="https://www.facebook.com/profile.php?id=61558621568799" target="_blank" class="footer__social-link">
<i class="ri-facebook-line"></i>
</a>
</li>
<li>
<a href="https://t.me/+p9UtnzKrjjdkNjRk" target="_blank" class="footer__social-link">
<i class="ri-telegram-line"></i>
</a>
<a href="https://www.linkedin.com/company/nabla-invest-srl/" target="_blank" class="footer__social-link">
<i class="ri-linkedin-box-fill"></i>
</a>
<a href="https://youtube.com/@nabla_crypto_fiance" target="_blank" class="footer__social-link">
<i class="ri-youtube-fill"></i>
</a>
<a href="https://discord.gg/yjeX7TPZgM" target="_blank" class="footer__social-link">
<i class="ri-discord-fill"></i>
</a>
</li>
</ul>
</div>
</div>
<p class="footer__copy">
<img src="assets/img/cysec.png" alt="" class="sponsor__img">
<img src="assets/img/fca.png" alt="" class="sponsor__img">
<br><br>
<a href="conditions.html" target="_blank" class="footer__copy-link">Termini e Condizioni<br><br>© Nablainvest Srl Uni. - P.Iva 01750040535.<br>All rights reserved<br>Coded by Rams</a>
</p>
</footer>
<a href="#" class="scrollup" id="scroll-up">
<i class="ri-arrow-up-s-line scrollup__icon"></i>
</a>
<script src="https://unpkg.com/scrollreveal"></script>
<script>document.addEventListener('contextmenu', event => event.preventDefault());</script>
<script src="assets/js/main.js"></script>
</body>
</html>