-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1129 lines (1110 loc) · 55.2 KB
/
index.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
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 lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="keywords" content="Squareddirect">
<meta name="description" content="Squareddirect">
<title>squareddirect</title>
<link rel="icon" type="image/png" href="picture/squared_direct_64x64.ico">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/hallooou.css" rel="stylesheet">
<link href="css/color_main.css" rel="stylesheet">
<link href="css/owl.carousel.css" rel="stylesheet">
<link href="css/owl.theme.css" rel="stylesheet">
<link href="css/owl.transitions.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/jquery.mb.ytplayer.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/jquery.vidbacking.css" rel="stylesheet">
</head>
<body id="home">
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header pull-left">
<a class="navbar-brand page-scroll" href="#"><span class="brand-logo"><img src="picture/Squareddirect_Logo_50x255.png" , alt="Squareddirect" title="Squareddirect" class="img-responsive logo"></span></a>
</div>
<ul class="nav navbar-nav visible-lg">
<li><a href="#about" class="button">WHO WE ARE</a></li>
<li><a href="#wudo" class="button">WHAT WE DO</a></li>
<li><a href="#news" class="button">MARKET ACCESS</a></li>
<li><a href="#services" class="button">PRODUCTS</a></li>
<li><a href="#products" class="button">SUPPORT</a></li>
<li><a href="#contact" class="button">CONTACT</a></li>
</ul>
<div class="toolbar">
<div class="loginRegister">
<a href="">Login</a>
<a href="">Sign up </a>
<a href="" >Experience</a>
</div>
<select id="language_pc">
<option value="EN">English</option>
<option value="CH">中文</option>
</select>
</div>
<div class="main-nav pull-right">
<div class="button_container toggle">
<span class="top"></span><span class="middle"></span><span class="bottom"></span>
</div>
</div>
<div class="overlay" id="overlay">
<nav class="overlay-menu">
<ul>
<li><a href="#about" >WHO WE ARE</a></li>
<li><a href="#wudo" >WHAT WE DO</a></li>
<li><a href="#news" >MARKET ACCESS</a></li>
<li><a href="#services" >PRODUCTS</a></li>
<li><a href="#products" >SUPPORT</a></li>
<li><a href="#contact" >CONTACT</a></li>
<li>
<select id="language">
<option value="EN">English</option>
<option value="CH">中文</option>
</select>
<a href="">Login</a>
<a href="">Sign up </a>
<a href="" >Experience</a>
</li>
</ul>
</nav>
</div>
</div>
</nav>
<header id="intro-carousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<div class="fill video-back" style="background-image:url(images/cover-one.jpg)">
<!-- 图片 -->
<!-- style="background-image:url(images/cover-one.jpg)" -->
<!-- 视频 -->
<!-- <video poster="assets/screenshot1.jpg" autoplay muted loop class="vidbacking">
<source src="assets/Rallye.3gp" type="video/mp4">
</video> -->
</div>
<div class="carousel-caption">
<h1 class="wow animated slideInDown">Next Generation Trading for Professionals & Corporates</h1>
<p class="intro-text wow animated slideInUp">
We serve your FX, CFD and Deliverable Trading Needs
</p>
</div>
<div class="overlay-detail">
</div>
</div>
</div>
<div class="mouse">
</div>
</header>
<section id="about" class=" content-section alt-bg-light wow " data-wow-offset="10">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="products-container">
<div class="col-md-12">
<h2>WHO WE ARE</h2>
</div>
<div class="col-md-3 product-item wow fadeIn" data-toggle="modal" data-target="#c1" data-wow-offset="10">
<div class="media-left">
<span class="icon"><i class="fa icon-book icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">Our History</h3>
<p class="custom_color">
Incorporated in 2005, by our founders Philippe Ghanem and Georges Cohen, Squareddirect is an independent, full service broker, located in the heart of Dublin city centre and regulated by the Central Bank of Ireland (CBI).
</p>
</div>
</div>
<div class="col-md-3 product-item wow fadeIn" data-toggle="modal" data-target="#c2" data-wow-offset="10">
<div class="media-left">
<span class="icon"><i class="fa icon-trophy icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">LEADERSHIP</h3>
<p class="custom_color">
The senior management team at Squareddirect have over 30 years’ global experience in the financial markets, specialising in Multi Asset electronic brokerage.
</p>
</div>
</div>
<div class="col-md-3 product-item wow fadeIn" data-toggle="modal" data-target="#c3" data-wow-offset="10">
<div class="media-left">
<span class="icon"><i class="fa icon-group icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">BUSINESS STANDARDS</h3>
<p class="custom_color">
At Squareddirect we pride ourselves on our close relationships with our clients. We work together with them, on a one to one basis, to ensure that each client receives individual attention and the highest level of support.
</p>
</div>
</div>
<div class="col-md-3 product-item wow fadeIn" data-toggle="modal" data-target="#c4" data-wow-offset="10">
<div class="media-left">
<span class="icon"><i class="fa icon-globe icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">REGULATION & LEGAL</h3>
<p class="custom_color">
Squareddirect ® is regulated by the Central Bank of Ireland – Reference number C39679.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="c1" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>WHO WE ARE</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">Our History</h4>
<div class="modal-services-content">
<ul>
<li>
<h5>Our History</h5>
<img src="images/our-history-img.png" alt="Our History">
<p>Incorporated in 2005, by our founders Philippe Ghanem and Georges Cohen, Squareddirect is an independent, full service broker, located in the heart of Dublin city centre and regulated by the Central Bank of Ireland (CBI).</p>
<p>For over 10 years we have been providing global institutional clients with multi-asset execution across Tier 1 liquidity venues, together with prime brokerage services and cutting edge front-to-back technology. </p>
<p>We originally came to market with our own proprietary platform Squared Trader. We continue to develop and upgrade Squared Trader in response to market trends. To strengthen and expand client offering we added MT4 and MT5 to our product suite in recent years.</p>
</li>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
<div id="c2" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>WHO WE ARE</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">LEADERSHIP</h4>
<p>The senior management team at Squareddirect have over 30 years’ global experience in the financial markets, specialising in Multi Asset electronic brokerage. Their expertise in technical and business development strategies has enabled them to successfully manage the company’s business transition from non-regulated environments to today’s highly regulated marketplace.</p>
<div class="modal-services-content">
<ul>
<li>
<h5>Management:</h5>
<div>
<em class="em"><i class="i">Colm Morgan </i><br> CEO</em>
<em class="em"><i class="i">Jennie Bogue </i><br> Compliance and Risk</em>
<em class="em"><i class="i">Mike Quirk </i><br> Sales</em>
<em class="em"><i class="i">Paul Clinton </i><br> Front Office</em>
<em class="em"><i class="i">Anne Weadick </i><br> Human Resources</em>
<em class="em"><i class="i">Chris Nzekwe </i><br> Finance</em>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
<div id="c3" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>WHO WE ARE</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">BUSINESS STANDARDS</h4>
<div class="modal-services-content">
<ul>
<li>
<h5>Our History</h5>
<p>At Squareddirect we pride ourselves on our close relationships with our clients. We work together with them, on a one to one basis, to ensure that each client receives individual attention and the highest level of support. </p>
<p>The ongoing working partnerships that we develop with our clients give us the ability to not only create services tailored to fit their requirements, but also a familiarity that enables us to anticipate their future needs. Long standing relationships with our clients are a testament to the trust and confidence they place in us and reflect the collaborate and successful nature of our offering.</p>
</li>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
<div id="c4" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>WHO WE ARE</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">REGULATION & LEGAL</h4>
<p>Squareddirect ® is regulated by the Central Bank of Ireland – Reference number C39679.</p>
<div class="modal-services-content">
<ul class="Download">
<li>
<h5>Legal Policy Documents</h5>
<p><a href="https://www.Squareddirect.com/wp-content/uploads/Best-Execution-Policy.pdf" title="下载 Best Execution Policy">Best Execution Policy Download</a></p>
<p><a href="https://www.Squareddirect.com/wp-content/uploads/Execution-Quality-Summary-Statement.pdf" title="下载 Execution Quality Summary Statement">Execution Quality Summary Statement Download</a></p>
<p><a href="https://www.Squareddirect.com/wp-content/uploads/RTS28-Disclosure-Statement-2018-1.pdf" title="下载 RTS 28 Disclosure Statement">RTS 28 Disclosure Statement Download</a></p>
<p><a href="https://www.Squareddirect.com/wp-content/uploads/Conflicts-of-Interest.pdf" title="下载 Conflicts of Interest Policy">Conflicts of Interest Policy Download</a></p>
<p><a href="https://www.Squareddirect.com/wp-content/uploads/Risk-Warning.pdf" title="下载 Risk Warning">Risk Warning Download</a></p>
<p><a href="https://www.Squareddirect.com/wp-content/uploads/Terms-of-Business-2018.pdf" title="下载 Terms of Business">Terms of Business Download</a></p>
<p><a href="https://www.Squareddirect.com/wp-content/uploads/Privacy-Policy.pdf" title="下载 Privacy Policy">Privacy Policy Download</a></p>
<h5>COMPLAINTS</h5>
<p>Squareddirect is dedicated to providing a transparent and fair service. If you encounter any issues, we welcome you to let us know how we can assist. Please speak to our client service team [email protected].</p>
<h5>MARKETING DISCLAIMER</h5>
<p>Squareddirect does not produce independent investment research. The information contained on this website is intended for information purposes only and should not be relied upon as investment advice.</p>
</li>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
</section>
<section id="wudo" class=" content-section alt-bg-light wow " >
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>EMPOWER YOUR TRADING</h2>
<h3 class="my-3">DISCOVER THE SECRET OF PROFESSIONAL TRADERS</h3>
<p style="text-indent:2em;">
SquaredDirect is a True DMA/STP Brokerage Firm fully licensed and regulated by CySEC.
Our focus is You, the Trader. Your success is our primary concern.
</p>
<blockquote>
<h2>WHAT WE DO</h2>
</blockquote>
<div class="class="feature-grids row mb-lg-5 mb-3">
<div class="col-lg-4 p-0 aos-init aos-animate" data-aos="fade-up">
<div class="bottom-gd p-5 fadeIn">
<h3 class="my-3"> <span class="fa fa-crosshairs" aria-hidden="true"></span> Blazingly Fast Market Order Execution</h3>
<p>With our servers being hosted by EQUINIX
LD4 in London our Straight Through
Processing model provides Direct Market
Access at close to instant order execution
speeds and Live-Market Prices.
Our focus is You, the Trader. Your success
is our primary concern.</p>
</div>
</div>
<div class="col-lg-4 p-0 aos-init aos-animate fadeIn" data-aos="fade-up">
<div class="bottom-gd2-active p-5">
<h3 class="my-3"> <span class="fa fa-clone" aria-hidden="true"></span> WHITE LABEL SOLUTIONS</h3>
<p>Transparent pricing and execution</p>
<p>Choice of technologies to take to market</p>
<p>Access to market with our simple set up solutions</p>
</div>
</div>
<div class="col-lg-4 p-0 aos-init aos-animate fadeIn" data-aos="fade-up">
<div class="bottom-gd p-5">
<h3 class="my-3"> <span class="fa fa-crosshairs" aria-hidden="true"></span> Full Transparency 100% DMA-STP</h3>
<p>Our DMA/STP execution model makes the Dealing Desk obsolete, enabling Full Transparency in all processes and
guaranteeing no Conflict of Interest between us, the Broker, and you, the Client can ever exist.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="news" class="counter-section content-section">
<div class="container">
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-12 text-left">
<h1>MARKET ACCESS</h1>
<h4 class="white">Squareddirect offer our clients access to the financial markets via our proprietary trading solution, industry-leading MetaQuotes Platforms or fixed connectivity. We ensure that our clients have the tools they need to access our customised liquidity.</h4>
<div class="news-content scroll-style">
<div class="col-md-12">
<div class="products-container">
<div class="col-md-4 product-item wow fadeIn" data-toggle="modal" data-target="#TRADER" data-wow-offset="10" >
<div class="media-left">
<span class="icon"><i class="fa icon-bullhorn icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">SQUARED TRADER</h3>
<p>Squared Trader is designed to meet the requirements of today’s institutional and professional traders. Squared Trader is the ultimate Foreign Exchange and Bullion trading tool.</p>
</div>
</div>
<div class="col-md-4 product-item wow fadeIn" data-toggle="modal" data-target="#API" data-wow-offset="10" >
<div class="media-left">
<span class="icon"><i class="fa icon-book icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">FIX API</h3>
<p>Our FIX 4.4 API offers connectivity to our institutional multi-asset liquidity for the forex, CFD and precious metals markets.</p>
</div>
</div>
<div class="col-md-4 product-item wow fadeIn" data-toggle="modal" data-target="#MT4" data-wow-offset="10">
<div class="media-left">
<span class="icon"><i class="fa icon-trophy icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">MT4</h3>
<p>Trade on market-leading spreads and benefit from the wide array of powerful charting and automated trading capabilities that MT4 offers. This platform ensures execution is fast and reliable.</p>
</div>
</div>
</div>
</div>
<div style="text-align: center">
<a class="vm-btn" href=""> CHOOSE YOUR PLATFORM</a>
</div>
</div>
</div>
</div>
</div>
<div id="TRADER" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>MARKET ACCESS</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">SQUARED TRADER</h4>
<div class="modal-services-content">
<ul>
<li>
<h5>SQUARED TRADER</h5>
<p><img src="./images/c1e9c3c34f2317414305b6ce01ef7d7.png"></p>
<p>Squared Trader is designed to meet the requirements of today’s institutional and professional traders. Squared Trader is the ultimate Foreign Exchange and Bullion trading tool.</p>
<p>With deep liquidity, tight pricing and superior execution, Squared Trader provides access to a premium service that enables traders to get the most from their trading platform.</p>
<p>Using Squared Trader, clients can benefit from executable streaming prices with low rejection rates, low latency and no re-quotes on all major and minor currency pairs. With bank and non-bank liquidity, Squared Trader provides the trader with competitive pricing from all areas of the market place providing our customers with best execution.
</p>
<p>Squared Trader delivers efficient order handling and position management at all times We have a team of highly skilled client support staff available 24 hours Monday to Friday.</p>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
<div id="API" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>MARKET ACCESS</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">FIX API</h4>
<div class="modal-services-content">
<ul>
<li>
<h5>FIX API</h5>
<p>Our FIX 4.4 API offers connectivity to our institutional multi-asset liquidity for the forex, CFD and precious metals markets.</p>
<p>Our high quality market data and a full audit trail on the trading process is ideal for professional traders who want to run automated strategies and multi-currency trading models.</p>
<p>Full Technical and Trade support is available for both UAT and production environments ensuring a smooth and user friendly on boarding process for all clients. Specifications, connection parameters and UAT access are all available upon request.
</p>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
<div id="MT4" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>MARKET ACCESS</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">MetaTrader 4</h4>
<div class="modal-services-content">
<ul>
<li>
<h5>MT4</h5>
<p>
Access our award-winning FX liquidity and execution through the industry’s most popular platform, MetaTrader 4 (MT4).
Trade on market-leading spreads and benefit from the wide array of powerful charting and automated trading capabilities that MT4 offers. This platform ensures execution is fast and reliable, with no dealing desk intervention, forced slippage or order proximity limitations – just direct access to our multiple venues of liquidity.
The result is an institutional grade MT4 solution for the discerning trader. We understand that the benefits of an ECN platform are essential in answering the needs of our customers and with Squared MT4, there is no compromise.
</p>
<img src="picture/metatrader4-img-1.png" alt="MetaTrader 4"></li>
<li>
<h5>Advantages of MT4:</h5>
<p>Market leading automated trading</p>
<p>Trading Signals through the MetaTrader Signals Service</p>
<p>Available on smartphones and tablets</p>
<p>Multi-language interface</p>
<p>MQL4 language</p>
<p>Multiple chart timeframes and analysis tools</p>
</li>
<li>
<h5>DOWNLOAD PLATFORM</h5>
<p>
MetaTrader 4 gives you the ability to enjoy all the benefits of a popular and established platform to trade a variety of instruments. We also offer our clients the MT4 mobile platform, enabling them to trade on the move.
</p>
<p>
<a href="https://download.mql5.com/cdn/web/squared.financial.services/mt4/Squareddirectmt4setup.exe" target="_blank">Windows</a>
<a href="https://www.mql5.com/en/articles/1356" target="_blank" style="margin-left: 2em">IOS</a>
<a href="https://www.mql5.com/en/articles/1358" target="_blank" style="margin-left: 2em">Linux</a>
</p>
</li>
<li>
<h5>METATRADER 4 FOR iOS AND ANDROID</h5>
<p>
See live prices, trade all the MT4 order types and view your trading history with the easy to use MT4 mobile trading application. This application complements the Client Terminal with push notifications, alerts, news updates and the ability to speak to other traders.
</p>
<p>
<a href="https://download.mql5.com/cdn/mobile/mt4/ios?server=mt4.Squareddirect.com" target="_blank">IOS</a>
<a href="https://download.mql5.com/cdn/mobile/mt4/android?server=mt4.Squareddirect.com" target="_blank" style="margin-left: 2em">Android</a>
</p>
</li>
<li>
<h5>METATRADER 4 SETUP</h5>
<p>
Download the platform and follow the intuitive installer to proceed with installation.
</p>
<p>
When the installation is complete, launch the application.
</p>
<p>
In MT4 Client Terminal Select ‘File’ from the menu, then ‘Login to Trade Account’ and enter your MetaTrader 4 login details that were emailed to you to access your trading account.
</p>
<p>
When the installation is complete, launch the application.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
</section>
<section id="services" class="services content-section">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2>PRODUCTS</h2>
<p style="text-indent:2em;">
At Squareddirect we offer our clients access to a diverse range of markets to cater to your specific trading needs. We have carefully cultivated relationships with multiple liquidity providers to ensure that you get the best prices possible in the market place today. Prices are updated over ten times a second and our bridge connectivity allows our client’s trades to be executed immediately.
</p>
</div>
<div class="container">
<div class="row text-center">
<div class="col-md-6">
<div class="row services-item text-center wow flipInX" data-toggle="modal" data-target="#FX" data-wow-offset="10">
<i class="fa icon-cogs icon-3x"></i>
<h4>FX</h4>
<p>
In addition to spot FX on 50+ crosses, we also offer liquidity on spot precious metals and spot oils.
</p>
</div>
</div>
<div class="col-md-6">
<div class="row services-item text-center wow flipInX" data-toggle="modal" data-target="#FX" data-wow-offset="10">
<i class="fa icon-dashboard icon-3x"></i>
<h4>CFD</h4>
<p>
The CFD product line provides our clients with access to indices and commodities allowing further diversification of investments.
</p>
</div>
</div>
<div class="col-md-6">
<div class="row services-item text-center wow flipInX" data-toggle="modal" data-target="#FX" data-wow-offset="10">
<i class="fa icon-bullhorn icon-3x"></i>
<h4>Physical Delivery</h4>
<p>
Squareddirect specialise in foreign exchange solutions to save you money, avoid risk and increase your profitability.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="calendar" class="services content-section colored">
<div class="container">
<div class="text-center">
<h2>Our Service Packages</h2>
<p style="text-indent:2em;"></p>
<div style="width: 100%;height:600px">
<div id="economicCalendarWidget" ></div>
</div>
</div>
</div>
</section>
<div id="FX" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-header">
<h1>PRODUCTS</h1>
</div>
<div class="modal-body">
<div class="container modal-container">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="close-img"></i></button>
<h4 class="line-left">Products</h4>
<div class="modal-services-content">
<ul>
<li>
<h5>FX SWAP RATES</h5>
<div class="table-container fade-body">
<table style="border-collapse: collapse; width: 100%;" border="0" width="192" cellspacing="0" cellpadding="0">
<colgroup>
<col style="width: 48pt;" span="3" width="64"> </colgroup>
<tbody>
<tr style="height: 30.0pt;">
<td class="xl63" style="height: 30.0pt; width: 48pt;" width="64" height="40">Instrument</td>
<td class="xl63" style="width: 48pt;" width="64" align="right">Long</td>
<td class="xl63" style="width: 48pt;" width="64" align="right">Short</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">AUDCAD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-5.4</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-5.6</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">AUDCHF</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">AUDJPY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.1</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8.1</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">AUDNZD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-5</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-4.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">AUDUSD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-4.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-1.2</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">CADCHF</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-9.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">CADJPY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.7</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-7.3</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">CHFJPY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-5.2</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-1.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURAUD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-11.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">2.6</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURCAD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-12.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">4.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURCHF</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-3.1</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-5.1</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURGBP</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-5.1</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-0.2</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURJPY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-4</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-2.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURNOK</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-70</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">19</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURNZD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-15.3</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">2.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURSEK</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-27</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-31</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURTRY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-530</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">230</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">EURUSD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-12.1</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">7</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">GBPAUD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-2.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">GBPCAD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8.6</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">1.7</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">GBPCHF</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">1.4</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8.5</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">GBPJPY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.1</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8.4</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">GBPNZD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-10.6</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-3.5</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">GBPSEK</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">8</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-60</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">GBPUSD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-9.1</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">3.2</td>
</tr>
<tr style="height: 30.0pt;">
<td class="xl64" style="height: 30.0pt; width: 48pt;" width="64" height="40">Gold (Spot)</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-129</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">64</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">NOKSEK</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-31</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-26</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">NZDCAD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-4.5</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-4.8</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">NZDCHF</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-0.2</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">NZDJPY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.2</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-7.9</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">NZDUSD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-3.8</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-4.1</td>
</tr>
<tr style="height: 30.0pt;">
<td class="xl64" style="height: 30.0pt; width: 48pt;" width="64" height="40">Silver (Spot)</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-2.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.1</td>
</tr>
<tr style="height: 30.0pt;">
<td class="xl64" style="height: 30.0pt; width: 48pt;" width="64" height="40">UK Brent (Spot)</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-14</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-108</td>
</tr>
<tr style="height: 30.0pt;">
<td class="xl64" style="height: 30.0pt; width: 48pt;" width="64" height="40">US Crude (Spot)</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-60</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-46</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDCAD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">0.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-8.2</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDCHF</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">6</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-12.1</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDCNH</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-75</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-102</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDHKD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-58</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-89</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDJPY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">4.2</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-11.6</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDMXN</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-601</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">42</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDNOK</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">6</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-51</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDSEK</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">7</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-160</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDSGD</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-6.9</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-12</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDTRY</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-400</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">170</td>
</tr>
<tr style="height: 15.0pt;">
<td class="xl64" style="height: 15.0pt; width: 48pt;" width="64" height="20">USDZAR</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">-260</td>
<td class="xl64" style="width: 48pt;" align="right" width="64">61</td>
</tr>
</tbody>
</table>
</div>
</li>
<li>
<h5>CFD Dividend Rates</h5>
<div class="entry-content fade-body">
<div class="table-container"><table style="height: 340px;" width="100%">
<tbody>
<tr>
<td width="64"></td>
<td width="66">19 Aug 2019</td>
<td width="66">20 Aug 2019</td>
<td width="66">21 Aug 2019</td>
<td width="66">22 Aug 2019</td>
<td width="66">23 Aug 2019</td>
</tr>
<tr>
<td width="64">Index</td>
<td width="66">Monday</td>
<td width="66">Tuesday</td>
<td width="66">Wednesday</td>
<td width="66">Thursday</td>
<td width="66">Friday</td>
</tr>
<tr>
<td width="64">Dow Jones</td>
<td width="66">3.10</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
</tr>
<tr>
<td width="64">S&P 500</td>
<td width="66">0.16</td>
<td width="66">0.22</td>
<td width="66">0.13</td>
<td width="66">0.08</td>
<td width="66">0.03</td>
</tr>
<tr>
<td width="64">Nasdaq</td>
<td width="66">0.39</td>
<td width="66">0.53</td>
<td width="66">0.57</td>
<td width="66">0.07</td>
<td width="66">0.04</td>
</tr>
<tr>
<td width="64">FTSE 100</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">5.75</td>
<td width="66">0</td>
</tr>
<tr>
<td width="64">CAC 40</td>
<td width="66">0.23</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
</tr>
<tr>
<td width="64">Eurostoxx 50</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">0</td>
</tr>
<tr>
<td width="64">Hong Kong 50</td>
<td width="66">0</td>
<td width="66">0</td>
<td width="66">1.16</td>
<td width="66">7.90</td>
<td width="66">0</td>
</tr>
</tbody>
</table></div>
</div>
</li>
<li>
<h5>CFD Futures Expiries</h5>
<div class="entry-content fade-body">
<div class="table-container"><table width="100%">
<tbody>
<tr>
<td width="125">CURRENT SYMBOL</td>
<td width="139">EXPIRY</td>
<td width="240">NEW SYMBOL</td>
</tr>
<tr>
<td>CSI300.MAY9</td>
<td>16th May 2019</td>
<td>CSI300.JUN9</td>
</tr>
<tr>
<td>USOIL.JUN9</td>
<td>17th May 2019</td>
<td>USOIL.AUG9</td>
</tr>
<tr>
<td>CHINA$.MAY9</td>
<td>29th May 2019</td>
<td>CHINA$.JUN9</td>
</tr>
<tr>
<td>HSENG$.APR9</td>
<td>29th May 2019</td>
<td>HSENG$.JUN9</td>
</tr>
<tr>
<td>HTOIL.JUN9</td>
<td>30th May 2019</td>
<td>HTOIL.JUL9</td>
</tr>
</tbody>
</table></div>
</div>
</li>
</ul>
</div>
<h4 class="line-left" style="margin-top: 20px">Clients</h4>
<div class="modal-services-content">
<ul>
<li>
<h5>Clients </h5>
<div>
<p>Squareddirect service a broad range of clients outside of the retail market, from brokers to banks and professional traders. We offer clients market leading pricing and execution through our relationships with top-tier liquidity providers and our focus on cutting edge technology. We provide bespoke solutions based on the specified needs of the client.</p>
<p>Squareddirect’s Prime of Prime offering appeals to e-FX Brokerage Firms that require robust and reliable liquidity, excellent execution and margin trading. It is also an ideal option for proprietary trading groups, smaller fund managers and private banks.</p>
</div>
</li>
<li>
<h5>Professional Clients</h5>
<div>
<p>Our professional clients benefit from some of the most competitive spreads available in the OTC market. Our ability to leverage our liquidity relationships, along with our extensive market knowledge, allows us to consistently deliver exceptional quality.</p>
<p>As a professional trader, this means the opportunity to take advantage of a range of options, better risk management and ultimately a greater chance of sustained profits.</p>
<p>Squareddirect Services Limited is authorised to hold client assets in accordance with the Client Asset Requirements and is required to have external auditors assess, at least on an annual basis, its compliance with these requirements.</p>
</div>
</li>
<li>
<h5>Money & Asset Managers</h5>
<div>
<p>At Squareddirect we work closely with our clients to help them develop their own online trading solution.</p>
<p>Sourcing a platform, adding liquidity from multiple providers, addressing operational issues and posting significant margins can seize most of a new broker’s capital, that would be much better spent in marketing and client capture.</p>
<p>Squareddirect offer our clients the ability to leverage our industry-leading, bespoke solutions, enabling you to quickly and inexpensively provide a Forex and CFD trading platform to your clients. This can be built to a client’s individual specifications across all of the platforms that we offer.</p>
<p>In addition, we also offer an Omnibus White Label solution, which gives you the ability to extend to your clients the same level of premium service that we deliver to our own base.</p>
</div>
</li>
<li>
<h5>Pro Institutions, Banks & Funds</h5>
<div>
<p>Regardless of your individual requirement, we strive to deliver a bespoke product offering tailored to meet your needs.</p>
<h6>PRICING</h6>
<p>With Squareddirect you can access a superior pricing environment across a variety of platforms and execution venues, while also taking advantage of our deep liquidity, prime brokerage and bespoke services.</p>
<h6>FAST EXECUTION</h6>
<p>Squareddirect orders are executed in milliseconds with co-located servers in the major eFX suites globally. We continue to invest in technology, alongside our relationships, to ensure that we are always at the forefront of technological advancements.</p>
<h6>PROACTIVE EXPERIENCE SUPPORT</h6>
<p>Our experienced support team are on hand from 10pm GMT Sunday to 10pm GMT Friday to assist with whatever challengers you may encounter.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="modal-back">
<a data-dismiss="modal" title="返回上一页"><i class="fa icon-angle-left"></i></a>
</div>
</div>
<section id="products" class="products content-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="products-container">
<div class="col-md-12">
<h2>SUPPORT</h2>
</div>
<div class="col-md-6 product-item wow fadeIn" data-wow-offset="10">
<div class="media-left">
<span class="icon"><i class="fa icon-book icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">Phone Support</h3>
<p>Our dedicated support team is here to respond to all your queries throughout the trading week. If your request requires urgent attention, please call us on <a style="color:#ff5a00" href="tel:00353016622036">00353 1 662 2036</a>/<a style="color:#ff5a00" href="tel:00 353 1 6610500">00 353 1 6610500</a> during market hours.</p>
</div>
</div>
<div class="col-md-6 product-item wow fadeIn" data-wow-offset="10">
<div class="media-left">
<span class="icon"><i class="fa icon-trophy icon-3x"></i></span>
</div>
<div class="media-body">
<h3 class="media-heading">Email Support</h3>
<p>Click below to send an email to support.E-MAIL:<a style="color:#ff5a00" href="[email protected]">[email protected]</a></p>
</div>
</div>
</div>
</div>
</div>