-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
5222 lines (5140 loc) · 167 KB
/
Copy pathtemplate.html
File metadata and controls
5222 lines (5140 loc) · 167 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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700"
rel="stylesheet"
type="text/css"
/>
<style>
@import url("https://cdn.jsdelivr.net/npm/tailwindcss@^2/dist/tailwind.min.css");
@import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700");
</style>
</head>
<body>
<div>
<div
style="
background-image: linear-gradient(rgb(32, 56, 79), rgb(24, 33, 56));
top: 0;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
0 2px 4px -1px rgba(0, 0, 0, 0.06);
width: 100%;
height: 100px;
align-items: center;
background-color: #1f2937;
color: #1f2937;
gap: 0.25rem;
padding-top: 1rem;
padding-bottom: 1rem;
flex-direction: column;
"
>
<style>
@media (min-width: 200px) {
div[style*="display: none"] {
display: flex !important;
}
}
@media (min-width: 960px) {
ul[style*="gap: 1rem"] {
gap: 1.5rem !important;
}
}
@media (min-width: 1280px) {
ul[style*="gap: 1.5rem"] {
gap: 2.25rem !important;
}
}
a[style*=":hover"] {
transition-duration: 150ms;
}
a[style*=":hover"]:hover {
opacity: 0.9;
}
</style>
<div
style="
padding-left: 0.5rem;
padding-right: 0.5rem;
width: 95%;
margin-left: auto;
margin-right: auto;
padding-top: 0.25rem;
padding-bottom: 0.25rem;
"
>
<div class="menu" style="display: flex; flex-direction: row">
<div class="menu-item_logo">
<a href="https://matrixtrading.ai/">
<img
style="height: 60px; width: 200px"
src="https://matrixtrading.ai/_next/static/media/logo.ec0fa159.png"
alt="Logo"
/>
</a>
</div>
</div>
</div>
</div>
</div>
<div
style="
background-image: linear-gradient(rgb(32, 56, 79), rgb(24, 33, 56));
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
0 2px 4px -1px rgba(0, 0, 0, 0.06);
width: 100%;
height: auto;
align-items: center;
color: #1f2937;
background-color: #1f2937;
gap: 0.25rem;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
flex-direction: column;
"
>
<div style="text-align: center; color: aliceblue">
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1;
text-align: center;
color: #ffffff;
"
>
<span
style="
font-size: 30px;
padding: 5px;
font-weight: 500;
line-height: 30px;
"
>Funded Trader Agreement
</span>
</div>
</div>
</div>
<div
style="
display: flex;
justify-content: center;
background-color: rgb(42, 72, 100);
padding: 0 5%;
"
>
<div
class="mj-column-per-100 mj-outlook-group-fix"
style="
text-align: left;
direction: ltr;
display: inline-block;
vertical-align: middle;
margin: auto;
margin-top: 20px;
border-radius: 2px;
"
>
<table
border="0"
cellpadding="0"
cellspacing="0"
role="presentation"
style="vertical-align: middle"
width="100%"
>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 1;
text-align: left;
color: white;
"
>
This Funded Trader Agreement (the "Agreement") is entered into
by:
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 1;
text-align: left;
color: white;
"
>
(1) "you", "your", or the "Trader"
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
(2) MATRIX TRADING AI (trading as MATRIX AI), with License
number: CN-4948554 registered in Abu Dhabi, United Arab Emirates
("we", "our", or the "MATRIX TRADING AI").
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 20px 25px;
padding-bottom: 20px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 1;
text-align: left;
color: white;
"
>
IT IS AGREED AS FOLLOWS:
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 20px 25px;
word-break: break-word;
margin-top: 25px;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: bold;
line-height: 1;
text-align: center;
color: white;
"
>
1. PURPOSE OF THE AGREEMENT
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
1.1. The purpose of this Agreement is to set out the terms and
conditions under which: (i) the Trader shall be provided by
MATRIX TRADING AI with instruments for demo trading. including
access to a trading account for demo trading ("MATRIX TRADING AI
Account"), an electronic interface in which the Trader shall
perform demo trades in the FOREX-CFDs.
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
(ii) the Trader may perform such demo trades on the Trading
Platform via its MATRIX TRADING AI Account; and (iii) the Trader
shall be paid the Profit Split (as defined in clause 9.1.3) in
accordance with the terms and conditions of this Agreement.
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
1.2. When using the Services, and in particular when performing
demo trades, the Trader shall actin accordance with this
Agreement, any third parties' terms and conditions relating to
the use of the Trading Platform, applicable law, and any other
rules which the Trader is obligated to adhere to when using the
Services.
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 20px 25px;
word-break: break-word;
margin-top: 25px;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: bold;
line-height: 1;
text-align: center;
color: white;
"
>
2. TRADER OBLIGATIONS, REPRESENTATIONS AND WARRANTIES
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1. The Trader acknowledges and agrees:
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.1. MATRIX TRADING AI is not authorised or regulated by
Financial regulatory, nor does it undertake any Regulated
Activities (as defined in the Financial Conduct Authority
Handbook);
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.2. MATRIX TRADING AI provides a service that is for the
purpose of simulation, practice and Study .
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.3. there is no employment relationship between MATRIX
TRADING AI and the Trader.
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.4. the Trading Platform is a free and publicly available
third-party product, the use of which is solely at the Trader's
own risk. MATRIX TRADING AI makes no representation, warranty or
commitment and shall have no liability or obligation whatsoever
in relation to the content or use of, or correspondence with,
the trading Platform, or any transactions completed, and any
contract entered into by the Trader, with any third party
offering the Trading Platform. Any contract entered into and any
transaction completed via any third party is between the Trader
and the relevant third party, and not MATRIX TRADING AI. Whilst
operating entirely under demo conditions, you should be aware
that system response, execution price, speed, liquidity, market
data, and account access times are affected by many factors,
including market volatility, size and type of order, market
conditions, system performance, and other factors which MATRIX
TRADING AI does not have control of and shall have no liability
in respect of;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.5. MATRIX TRADING AI does not guarantee the accuracy,
timeliness, completeness, or usefulness of any third party
content, including but not limited to the free and publicly
available trading platform and is not responsible or liable for
any content, advertising, products, or other materials on or
available from third party websites.
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.6. all purchases and investments involve risks, including
the possible loss of capital;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.7. MATRIX TRADING AI is not an investment fund, prop fund or
hedge fund or a brokerage,nor does it not offer securities
(stocks, forex, cryptocurrencies and CFD's) to tradersdirectly
totrade, neither do we accept any deposits from investors or
traders to provide a return (profit) on same;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.8. the execution of this Agreement by MATRIX TRADING AI is
not an offer, solicitation of anoffer, or advice to buy or sell
securities or engage in currency (forex trading);
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.9. MATRIX TRADING AI does not provide investment advice or
other services and no Services provided by MATRIX TRADING AI to
the Trader under this Agreement may be considered as investment
services, in particular, MATRIX TRADING AI does not receive or
execute in any case,whether directly or indirectly, any trading
instructions, does not trade on its own account, does not
provide or conduct investment or other advice, research,
recommendations or analyses, and doesn't give or forward to the
Trader any trading instructions, does not receive any assets
from, or manage any assets for, the Trader, and does not provide
any related foreign exchange services;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.10. all trading that the Trader performs through the
Services is simulated only and that the execution of a demo
trade within the Services provided shall in no way constitute an
instruction totrade in real financial markets or with real
currency;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.11. the funds provided to the Trader for demo trading are
not real and that the Trader has no right to deal with them
beyond the scope of their use within the Services (in particular
that theycannot be used for actual trading), that the Trader is
not entitled to withdraw or transfer them, and that MATRIX
TRADING AI does not in any circumstancesreceive any funds or
other assets from, or manage any funds or other assets for, the
Trader within the Services;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.12. the demo capital has no monetary value and it's only a
part of the Services provided to the Trader and Trader has no
actual right, title or ownership tothe demo capital, and that
the MATRIX TRADING AI has all rights, interest and full
ownership to demo capital(as part of the Services);
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.13. trading performed through the Services is not indicative
of trading on real financial markets, and past performance and
demo gains are neither a guaranteenor an indication of any
further performance;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.1.14. MATRIX TRADING AI shall at all times have the right to
access the MATRIX TRADING AI Account for the purpose of
verifying the Trader's trading progress and compliance with this
Agreement.
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.2. The Trader represents and warrants:
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.2.1. they are over the age of 18 and acknowledges that MATRIX
TRADING AI does not permitany person under the age of 18 to use
the to register for a MATRIX TRADING AI Account;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.2.2. they are responsible for compliance with all local laws;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.2.3. that all information and documentation provided to MATRIX
TRADING AI when it purchasedan evaluation from MATRIX TRADING AI
or as requested by MATRIX TRADING AI as part of the registration
for a MATRIX TRADING AI Account is complete, true and accurate
in all respects. The information provided as part of your
registration for a MATRIX TRADING AI Account must correspond to
the information provided by you during the purchase ofan
evaluation.
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.3. In performing this Agreement, the Trader shall:
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.3.2. provide MATRIX TRADING AI with all necessary co-operation
in relation to this agreementand all necessary access to such
information as may be required by the Supplier in order
toprovide the Services;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.3.3. without affecting its other obligations under this
Agreement, comply with all applicable lawsand regulations with
respect to its activities under this Agreement andensure that
the Trader'sreceipt of the Services and use of the MATRIX
TRADING AI Account and Trading Platform is legaland lawful in
the jurisdiction in which it is located or established;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.3.4. obtain and shall maintain all necessary licences,
consents, and permissions necessary for MATRIX TRADING AI, its
contractors and agents to perform their obligations under this
Agreement, including without limitation the Services;
</div>
</td>
</tr>
<tr>
<td
align="left"
style="
padding: 10px 25px;
padding-bottom: 10px;
word-break: break-word;
"
>
<div
style="
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 30px;
text-align: left;
color: white;
"
>
2.3.5. ensure that its network and systems comply with the
relevant specifications provided by MATRIX TRADING AI from time
to time;
</div>
</td>