forked from binary-com/deriv-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.json
4641 lines (4641 loc) · 402 KB
/
messages.json
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
{
"3670321": "<0>IVV.US</0> The iShares Core S&P 500 ETF tracks the performance of an index of large-capitalisation US equities.",
"3965745": "Your payout can potentially grow by 1% or 5% on average per tick.",
"4506932": "How do I add a Deriv X account?",
"5629598": "Company website/social media URL*",
"5681962": "EUR/USD DFX10 Index",
"6959268": "Opening accumulator contracts for a specific instrument and growth rate may be temporarily unavailable when our internal aggregate stake limits have been reached for that particular combination. If this happens, you can choose another instrument or the same instrument with a different growth rate.",
"7128051": "How can I adjust or remove my self-exclusion limits?",
"7228511": "Determine your commission per transaction, subject to our established thresholds.",
"7359443": "Focused accounts for a focused strategy",
"7588258": "2. Click Trade on your preferred MT5 account, then click the pencil icon next to the password section.",
"11019706": "Your available balance for Deriv P2P may not reflect your entire Deriv balance. This is because deposits made via some payment methods won’t be available for Deriv P2P. See <0>Why is my Deriv P2P balance different from my Deriv account balance?</0> for more info.",
"13119092": "clients",
"15238581": "Go to the first item in the media gallery and click <0>Get media</0> code.",
"17217397": "Cryptocurrency",
"19552684": "USD Basket",
"20135418": "100,000",
"22146527": "Secure, responsive platform",
"22354933": "Your money is held in secure financial institutions and is always available to you, should you wish to withdraw. We don't use your money for our business purposes.",
"22360354": "Enjoy trading a wide range of offerings that mimic characteristics of financial markets or are derived from them.",
"22418565": "exchanged to date",
"22632484": "Can I close a turbo options contract before the end of the contract duration?",
"22995280": "The platform to start with. It’s powerful yet easy to use.",
"24062713": "0.2 },",
"24763773": "Sony Group Corp",
"24900606": "Gold Basket",
"26480598": "General",
"26596220": "Finance",
"27830635": "Deriv (V) Ltd",
"28681430": "Join great marketing minds at Deriv’s office in Ciudad del Este, Paraguay. Be part of a vibrant team that develops the company’s growth in the region.",
"29394238": "<0> 280,000</0>",
"29654660": "Deriv X:",
"33219178": "We'll pay your IB commission into your MT5 (Derived account daily).",
"33430960": "How dynamic leverage is calculated",
"33727397": "You can fund your margin account with EUR, USD and GBP. If you wish to use other currencies, please reach out to us and we will review your request.",
"34997376": "Deriv in numbers",
"36380780": "<p>Here's how to open a Touch/No Touch contract:</p><ul><li>Choose an instrument to trade.</li><li>Set the duration of your contract.</li><li>Set your preferred barrier.</li><li>Enter your stake or desired potential payout.</li><li>Place your trade.</li></ul>",
"39595561": "See how your bot is performing as it executes each trade and receive notifications via Telegram.",
"41078219": "Get into the Deriv Trader experience",
"41570825": "Are High/Low Ticks options available on Deriv Trader?",
"48132512": "Join and grow with us.",
"48235639": "The potential payout and loss (your initial stake) amounts are clearly displayed before you open the trade.",
"48469443": "Complete <0>this form</0>, and we'll get in touch with you in a couple of days.<br/>You'll need a real Deriv trading account, too. If you don't have one, sign up <1>here</1>.",
"48763975": "What if I am unhappy with the outcome of my complaint?",
"49321507": "Do you offer micro forex pairs on Deriv MT5?",
"49940599": "swap free",
"50041988": "View current openings at Deriv’s office in the Cayman Islands. Join us and be part of a talented team that analyses compliance and trading strategies.",
"50089383": "Join the Deriv affiliate partnership programme and introducing broker (IB) programme to earn commissions from various income opportunities.",
"51072754": "Help centre | Frequently asked questions | Deriv X | Deriv",
"51462026": "- Select Up or Down depending on your market predictions.",
"53686232": "How do I place an In/Out trade on Deriv?",
"53801223": "Hong Kong 50",
"54316667": "Trade natural resources that are central to the world’s economy and profit from the opportunities created by the markets.",
"55296241": "10 - 6,000",
"55916349": "All",
"56705073": "<0>ERX.US</0> The Direxion Daily Energy Bull 2X Shares tracks the Energy Select Sector Index.",
"56714378": "Frequently asked questions - Deriv P2P",
"57395040": "Point Value",
"57885236": "Your card issuer may have blocked your transaction. Please contact your card issuer to check.",
"59521256": "Page not found",
"59699543": "Yes, you can open multiple vanilla options contracts at the same time, depending on your options trading strategies.",
"60772773": "USD/RUB",
"61452818": "Predict whether the last digit of the exit price will be higher or lower than your selected number.",
"61663093": "Continuous indices",
"63192246": "Can I offer prospective clients an incentive to sign up to Deriv using my affiliate link?",
"64577063": "A referred client based in the EU deposits USD 100 in one transaction",
"65207943": "Call option",
"65228456": "Deriv Trader | Online Trading Platform | Deriv.com",
"65433881": "TRADE TYPES",
"66236354": "20B+ USD in daily trades from 90,000 daily clients with almost instant uptime.",
"67066283": "Client trades multipliers with a stake of USD 100. The commission generated from the client’s trade is USD 0.60.",
"67611998": "How can I deposit funds into my Deriv MT5 real money account?",
"67923436": "No, Deriv Bot will stop running when your web browser is closed.",
"69523331": "If the selected barrier is close to the current price of the underlying instrument, the probability of the spot price touching the barrier in a \"Touch\" contract is higher compared to a \"No Touch\" contract. In this scenario, the potential payout amount for a \"Touch\" contract is lower.",
"69859952": "Please enter your company name.",
"70668746": "If you select 'Rise', you receive the payout if the exit price is higher than the entry price.",
"71016232": "OMG/USD",
"71057750": "Go to {{platform_name}} dashboard",
"71263224": "How can I cancel my withdrawal?",
"71535160": "Calculate the overnight fees for holding any open positions. The fees can be positive or negative depending on your swap rate.",
"71630191": "Do not share your account information and other personal details with anyone via Telegram.",
"71650838": "Speak simply and plainly, and not hide behind ambiguity",
"74138086": "Take control of your trades on Deriv MT5",
"74593350": "3. Select Real account or Demo account.",
"76083876": "<0>A social media admin</0><br/>Promote our products and services on your social media pages, and earn commission when you convert your audience into traders.",
"76802666": "We've sent a message to {{email}} with a link to activate your account.",
"79251870": "Ctrader logo",
"79497287": "Exchange-traded funds",
"80411232": "Keep your login details secure and <0>enable two-factor authentication</0> to prevent unauthorised usage of your account.",
"80429744": "Fast and stable",
"84123624": "Partnership Programme | Deriv",
"84402478": "Where do I find the blocks I need?",
"84605906": "The Deriv MT5 Financial account offers you leverage to trade contracts for difference (CFDs) on forex, stocks, stock indices, commodities, synthetic indices, and cryptocurrencies.",
"85248718": "Memorandum and articles of association",
"85633362": "Can I exit an Only Ups/Only Downs contract before it expires?",
"85952646": "Yes, you can open multiple contracts with different parameters simultaneously.",
"86747176": "They provide rewards that sound too good to be true.",
"89633652": "A chart illustrating a losing Differs trade type contract",
"89863448": "Top trading assets and unique market indices",
"92905834": "With these indices, there is an average of one drop (crash) or one spike (boom) in prices that occur in a <0>series of 500, or 1,000 ticks</0>.",
"94340092": "Asian options are available on the SmartTrader and Deriv Bot trading platforms. You can trade Asian options on synthetics.",
"94412618": "Yes, you can customise the trade duration of your Only Ups/Only Downs contracts. The available time periods range from 2 ticks to 5 ticks.",
"95016326": "Kindly follow the steps:",
"96820070": "<0>50 lots</0> with 100 leverage:",
"97278922": "Max effective leverage",
"97694950": "Trade wisely, and don’t let your emotions influence your decisions. Do not trade when you are tired or are under the influence of alcohol.",
"98233667": "Copy trading on Deriv cTrader",
"98801789": "A chart illustrating winning a payout if the Reset Call exit price exceeds the entry price",
"100976940": "How does the commission scheme work?",
"101279915": "qr code",
"101415754": "DSI20",
"103740464": "<p>To open a Up/Down contract, you'll need to:</p> <ul><li> Select your preferred market and trading asset.</li><li>Choose the type of Up/Down option you want to trade (Rise/Fall; Rise Equals/Falls Equals; Higher/Lower).</li><li>Set other optional contract parameters.</li><li> Choose the contract duration.</li><li> Enter your stake or preferred potential payout amount.</li><li> Open your contract.</li></ul>",
"104744952": "Complete the form and click Submit.",
"105613424": "What is the minimum amount to open a position on Deriv MT5?",
"106492474": "high-close option trade",
"106560608": "Instagram",
"108602506": "Pay on the go with your phone for instant convenience.",
"109865596": "Enjoy weekend trading on Deriv and get the most out of your trades",
"110140669": "If you are a professional trader, the MT5 trading signals service allows you to share your strategies with other traders for free or a subscription fee that you determine. When traders subscribe to your signal, your deals are automatically replicated on their accounts each time you place a trade.",
"111464658": "<0>5 lots</0> traded with DL on <0>BTC/USD</0> is split between:",
"113378532": "ETH/USD",
"115911783": "Of course, this list isn’t complete. Every day, impersonators come up with new ways to try to steal your information and money.",
"117174749": "Can I close an open position before expiry?",
"117273069": "<0>Wall Street 30</0> follows the stock performance of the top 30 listed companies in the US.",
"117318539": "Password should have lower and uppercase English letters with numbers.",
"117920584": "As per <0>our terms</0>, we only allow one account per client, which you can open in the currency of your choice (either fiat or crypto). If you want to trade with other currencies, you can add multiple cryptocurrency accounts to your profile.",
"118164751": "This plan is available exclusively for EU-based clients. <0>Please note that according to regulations, you cannot have clients who reside in Portugal or Spain.</0>",
"119888059": "Who can apply",
"120094726": "GDX.US",
"120180174": "0–19.999%",
"121961018": "If you're residing in the EU or UK, <0>contact us via live chat</0>, and we'll help you with it.",
"123005346": "No artificial barriers to customer withdrawals",
"126976445": "Earn when your clients trade on an MT5 Swap Free account.<br><br>All commission rates are quoted in USD, per round trade.",
"127307725": "A politically exposed person (PEP) is someone appointed with a prominent public position. Close associates and family members of a PEP are also considered to be PEPs.",
"127545561": "* Availability of payment methods and processing speeds may vary based on location and selected payment option",
"132319176": " take profit level",
"135121884": "What’s next?",
"135210620": "Deriv is <0>regulated</0> by several entities including the Malta Financial Services Authority (MFSA), the Labuan Financial Services Authority (Labuan FSA), the Vanuatu Financial Services Commission (VFSC), and the British Virgin Islands Financial Services Commission.",
"138055021": "Synthetic indices",
"138627645": "- Entering your stake or preferred potential payout amount.",
"139148084": "<0>One tick</0> is generated <0>every second</0> for volatility indices <0>10 (1s), 15 (1s), 25 (1s), 30 (1s),50 (1s), 75 (1s), 90 (1s), 100 (1s), 150 (1s), and 250 (1s)</0>.",
"139668017": "By pressing “Create demo account”, you confirm that you are 18 or older. You understand that we may use your email address to send you information about Deriv products and services as well as market news. You can always unsubscribe from these emails in your account settings. For more information, please take a look at Deriv’s <0>Security and privacy policy</0>.",
"140083133": "Fund your account. Start trading on the mobile app, desktop app, or web browser.",
"141909159": "You’ll be brought back to the Cashier page. Click <0>Review pending</0> and select the transaction that you'd like to cancel.",
"143734792": "Terms that govern keeping and transferring funds in Deriv and the bonuses you might get",
"144377171": "Daily withdrawal limits",
"146650698": "Take me to DP2P",
"148355417": "Rapid trade execution speeds for your clients",
"148382928": "American Airlines Group Inc",
"149494223": "Blue sky and buildings - Kigali",
"149834389": "USD ≤ 20,000 per month",
"150593055": "Currency exchangers",
"151178438": "Enjoy zero commission trading on all assets. Plus, pay no swap charges on overnight positions for selected derived indices and financial assets.",
"152299772": "Why should I join your affiliate programme?",
"152524253": "Trade the world’s markets with our popular user-friendly platform.",
"154463429": "Our demo trading experience will represent real-money trading, especially with contract pricing and trading restrictions.",
"154545319": "Country of residence is where you currently live.",
"154883335": "Exclusive access to innovative assets",
"155518428": "graph",
"158507315": "Fund your account securely through our peer-to-peer deposit and withdrawal service.",
"158763587": "Check the profit",
"159648667": "A chart illustrating a winning Over trade type contract",
"160123390": "European <0></0>indices",
"161870324": "Pick the best rates and place an order, or create an ad for the rates you want.",
"163040015": "Join Deriv’s affiliate and IB programmes and get a chance to be a partner with a trusted online trading provider.",
"164316225": "<0>Scroll up on this page for more information on the commission plan.</0>",
"165821674": "human resources department",
"166309424": "Zero charges with prompt monthly and daily payouts",
"166527033": "Phishing websites often have URLs that:",
"167985771": "You can unsubscribe by going to the <0>Personal details</0> page. Uncheck the checkbox that says \"Get updates about Deriv products, services and events.\" at the bottom of the page, and click <1>Submit.</1>",
"170450188": "Leave your positions open overnight without worrying about extra charges.",
"171183406": "For Up turbo options, the payout per point indicates the amount of potential payout you gain for each point above the barrier, at the contract’s expiry.",
"171302334": "So in this scenario, you would set your stop loss amount at <0>-7.23 USD</0>.",
"171586173": "Discover career opportunities at Deriv across our office locations around the globe.",
"171638706": "Variables",
"171678405": "Can I choose the duration of a Touch/No Touch contract?",
"175074759": "Trade when you’re free from the distractions of weekday responsibilities.",
"176773798": "0.5%",
"176823932": "We may decline your verification documents if they are insufficiently clear, invalid, expired, or have cropped edges.",
"176972763": "<0>GLD.US</0> The SPDR Gold Shares ETF tracks the price of gold bullion in the over-the-counter (OTC) market.",
"177720589": "If you hit <0>Yes</0>, the details you entered will be lost, and you’ll need to restart the registration process.",
"181754600": "How can I identify emails from impersonators of Deriv customer support?",
"182234515": "Choose the type of partner account you want to register",
"182438100": "Frequently asked questions - DBot",
"183032954": "No, the High/Low Ticks options are only available on the SmartTrader and Deriv Bot trading platforms, and are available to trade on synthetics.",
"186459036": "Your net profit will depend on how much the final price is above the predetermined strike price, with the maximum potential gains growing if the price of the underlying asset rises significantly. Your losses are limited to the initial stake required to purchase the call option.",
"188128139": "CFDs - ETFs",
"189421598": "What are the durations for Reset Call/Reset Put contracts?",
"191690145": "24/7 support",
"192531494": "Advanced charting widgets",
"192890975": "Can I open multiple accumulator contracts at the same time?",
"193611235": "Exchange in minutes. Less waiting, more trading. Deposit and withdraw in minutes.",
"194431525": "Provide a representative demo experience",
"195031216": "Complaints procedure",
"195335391": "Earn based on your sub-affiliate’s commission.",
"198900889": "Can I open more than one Deriv account?",
"200040108": "Zero",
"200347746": "You’ll be brought back to the <0>Cashier</0> page. Click Review pending and select the transaction that you'd like to cancel.",
"201096446": "UNG.US",
"202712649": "Fast and secure deposit and withdrawal options",
"203271702": "Try again",
"203346919": "Already have a Deriv account? <0>Log in</0>",
"204755762": "Check out our quick video walkthrough of how to trade accumulators on Deriv Trader.",
"205183907": "What can I do when I find any unrecognised transactions on my Deriv cashier account?",
"209516313": "The MT5 trading signals service allows you to copy the trades of more experienced traders to your MT5 account. Once you’ve subscribed to a signal, the provider’s deals will be automatically replicated on your Deriv MT5 trading account each time they place a trade.",
"209799068": "A contract for difference (CFD) allows you to trade on the price movement of an asset, without buying the underlying asset.",
"210989591": "Add a Deriv X real account.",
"211232058": "Yes, you can close an open Ups/Downs position before its expiry regardless of trade duration.",
"213113093": "Sharp prices",
"213171673": "Chevron",
"213336563": "<0>3351.46</0>",
"213942851": "Check our <0>Status page</0> to see if there is any system or website maintenance going on.",
"214754372": "USD/CHF DFX20 Index",
"215636541": "MT5 Financial STP",
"216114973": "Stocks & indices",
"216777430": "Log in.",
"218274863": "Digital options",
"218708637": "On Deriv, you can trade CFDs with:",
"221408375": "Deriv partnership programme is free to join. There are absolutely no charges or hidden fees to worry about.",
"222685906": "( 1",
"223464180": "Clients in the rest of the world (except for certain countries such as the USA, Canada, and Hong Kong) who wish to trade CFDs on financial instruments (via MT5 Financial accounts) and derived indices (via MT5 Derived accounts) can have Deriv MT5 and Deriv X accounts under Deriv (V) Ltd.",
"224650827": "IOT/USD",
"228957856": "Let’s say you want to keep 0.01 lots of Volatility 75 Index with an asset price of 400,000 USD and swap rate of -7.5 open for one night.",
"229604337": "Crash 900 Index",
"229966861": "Use it on your",
"230596356": "Customise your DBot strategy",
"230864514": "The stop loss and/or take profit level helps you to manage your risk when you are selling a contract.",
"231339904": "To open a Reset Call/Reset Put contract, you'll need to:",
"231711709": "Trade anytime",
"231722280": "What are commodities?",
"233475101": "Read <0>this article</0> to learn more about trading CFDs on Deriv.",
"233774478": "60+ global payment methods. Deposit instantly starting from just USD 5. Withdraw in minutes.*",
"233805198": "Most trusted award",
"234187697": "trader tools",
"234782678": "You can reset your affiliate password <0>here</0>.",
"236080779": "Feature-rich charts",
"236686595": "24-hour trading (Monday-Friday), based on forex market hours",
"236845507": "What are contracts for difference (CFDs)?",
"237637819": "Where can I trade Touch/No Touch options?",
"238084240": "What’s the minimum amount to open a position on Deriv cTrader?",
"239216026": "XMR/USD",
"239429137": "Useful menus where you can find out how each asset’s margin impacts your trade before placing them.",
"241331061": "Deriv GO is really good! I've been looking for an app like this which is easy to use.",
"242356757": "Submit a report",
"243072878": "15 - 5,000",
"243084503": "Estimate the stop loss and/or take profit levels as well as the pip value for your contract to mitigate your risk when buying or selling a position.",
"243731910": "18-20 June 2024",
"244046593": "Start trading stocks & indices on Deriv in 3 simple steps",
"247341426": "Browse, find, and apply for jobs in IT, compliance, and accounts at our Labuan office.",
"247754618": "Do I need a Deriv account to become a payment agent?",
"247817566": "With a Digits contract, you predict whether the last digit of the last tick of your contract will meet specified criteria, depending on the contract type you select.",
"248446741": "Predict which will be the highest or the lowest tick in a series of five ticks.",
"250159252": "web browser logo",
"250681139": "How do I log in to Deriv X?",
"251340836": "Help centre | Frequently asked questions | Deriv MT5 | Deriv",
"253683843": "Yes, both trade types allow you to choose the trade duration or expiry time. You'll just need to select the timeframe within which you expect the asset's price to move in your predicted direction.",
"255124284": "HKD/JPY",
"255460854": "Mobile payments",
"256855210": "A fast and secure peer-to-peer deposit and withdrawal service.",
"256942335": "Multiple income opportunities and generous commissions",
"256966056": "To manage your funds, please click the button below.",
"257449963": "Follow these steps to see your earnings:",
"258310842": "Workspace",
"259593484": "real account",
"260003723": "Example 2",
"261878007": "If you select 'Matches', you receive the payout if the last digit of the exit price is the same as your prediction.",
"263232709": "1 - 2 working days",
"263938952": "If the reset spot is beneficial based on your market prediction, it replaces your original entry price (or strike price). For it to be beneficial, the reset spot needs to be:",
"264391901": "Enjoy synthetic markets that emulate the excitement of real-world markets without unpredictable real-world disruptions.",
"265269975": "Your local currency",
"265644304": "Trade types",
"268305063": "<0>Log in</0> to your Deriv account. Don’t have one? <1>Sign up</1> for free.",
"270484328": "Can I buy or sell turbo options on Deriv?",
"271560771": "Enter the amount you wish to trade with.",
"272283021": "You can now log in to Deriv MT5 with your new password.",
"273133328": "EEM.US",
"273847089": "ends between/ends outside option trade",
"273946464": "Contact us via <0>live chat</0>.",
"274268819": "Volatility 100 Index",
"274392779": "the Labuan Financial Services Authority",
"274438767": "The order amount is locked in escrow until both parties confirm that the transaction has been completed from their end.",
"275116637": "Deriv X",
"275316510": "Impersonators ask you to send confidential information over an unsecure platform, for example via SMS, WhatsApp, email, etc.",
"276482397": "No, you can't.",
"278001160": "With these indices, there is an average of one drop (crash) or one spike (boom) in prices that occur in a series of <0>300, 500, 600, 900 or 1,000 ticks</0>.",
"278499050": "Use your local currency to make deposits into and withdrawals from your Deriv account.",
"279593550": "Partner Signup Page | Deriv",
"281247370": "Margin Calculator",
"284321953": "Can I close a lookbacks contract before the expiry time?",
"286131911": "Frequently asked questions - Fraud Prevention",
"286667499": "Open a real account, make a deposit, and start trading derived FX and other markets.",
"286879509": "When do I need to verify my account?",
"288004682": "No hidden fees or commissions.",
"288565174": "How much does it cost to register for the IB programme?",
"288719886": "Czech Republic",
"289008060": "Facebook Inc",
"291605393": "Greece",
"291856470": "Please generate an address on the cryptocurrency deposit page whenever you want to make a deposit. Always use a freshly generated address to ensure accuracy.",
"292497263": "Click on your account balance and click <0>Add or manage account.</0>",
"292647067": "Earn a potentially high payout by trading vanilla options on Deriv, if your market prediction is right within a limited timeframe.",
"294335245": "Update your browser to get the best Deriv experience",
"295072338": "The email is poorly written, with incorrect grammar and many typos.",
"300201586": "Open a demo account on Deriv and practise with an unlimited amount of virtual funds on our award-winning platforms.",
"301441673": "Select your citizenship/nationality as it appears on your passport or other government-issued ID.",
"301901540": "Make fast deposits using PIX, Brazilian banks’ most popular payment solution.",
"302542488": "background pattern",
"302938619": "<0>100 lots</0> traded with DL on <0>US Tech 100</0> is split between:",
"304202010": "How can I place a High/Low Ticks trade?",
"305281565": "Are Only Ups/Only Downs available to trade on Deriv Trader?",
"305547463": "User-friendly features",
"306846388": "Online trading is exciting but involves risks and can lead to an addiction. At Deriv, we look out for our customers’ best interests and encourage them to practise <0>secure and responsible trading</0>. If you are new to this, you can also practise trading with unlimited virtual funds before you risk your money.",
"307902006": "Enjoy high leverage and low spreads on our Deriv MT5 platform, now offering a range of stocks and stock indices from the brands you love.",
"309180597": "Expand your client base by helping traders fund their accounts through local bank wires and e-payments. Facilitate and earn from every transaction.",
"309993304": "Try Deriv at no risk",
"311457810": "Our pip calculator helps you to estimate the pip value in your trades so that you can better manage your risk.",
"311876462": "Send us an email with the following:",
"315192357": "Swap rate",
"315778047": "<0>Everyone is verified</0>",
"316920917": "Oops, sorry...",
"317551740": "$ 8.00",
"317744607": "Discover DBot now",
"317753588": "Second website/social media URL",
"318239044": "Pfizer",
"318433321": "Instruments available for options trading",
"318815297": "Trade the way you like",
"319997065": "These indices correspond to simulated markets with constant volatilities of 50%, 75%, 100%, 150%, and 250%.",
"320565687": "<0>Gold Basket</0> measures the value of gold against a basket of five global currencies (EUR, GBP, JPY, AUD, USD), each weighted by 20%.",
"322368988": "Multipliers - Synthetics: Volatility 250 (1s) Index",
"326242312": "Volume in lots",
"328362983": "0.4%",
"331304444": "- Setting the duration of your trade.",
"332492567": "-10 ]",
"332641574": "Total commission earned: USD 0.60 * 40% = USD 0.24",
"332961148": "How can I add, remove or change my accepted payment methods?",
"333367028": "(-(3400",
"334005764": "What is Deriv Trader?",
"334011253": "1999",
"335040248": "About us",
"337431163": "24/7 trading on synthetics indices",
"337900732": "Denmark",
"339084000": "LEGAL",
"339879944": "GBP/USD",
"339999882": "{ -24",
"341589956": "Air France KLM SA",
"343021270": "Trade with a real CFDs account. Get access to leverage and trade positions larger than your existing capital.",
"343586987": "So in this scenario, you would set your take profit level at <0>6.83 USD</0>.",
"343897818": "Forex Topics",
"346997549": "When you purchase a 'Close-Low' contract, your payout will be equal to the difference between the exit price and the lowest price over the duration of the contract multiplied by the multiplier.",
"348548765": "4. You can trade via the desktop app, web terminal, or mobile app.",
"349994198": "Multipliers on Crash and Boom",
"350443733": "Fedex",
"351335938": "ABOUT US",
"351773825": "We keep your personal data and funds safe.",
"351897258": "Check Icon",
"352494339": "Get trading with Deriv MT5",
"353928381": "Why should I join the affiliate programme?",
"354060979": "<0>1 lot</0> with 1000 leverage:",
"354180176": "You can trade volatility indices, a type of derived indices, with accumulator options.",
"356733895": "Know your potential profit with fixed payouts, or maximise potential profit with variable payouts if your predictions are right.",
"357105933": "Go to the Trader’s hub and choose the Demo option.",
"358257887": "Once your submitted document has been approved, go to Cashier > DP2P to register your Deriv P2P account.",
"358369253": "Can I close In/Out options before the end of the trade duration?",
"360357815": "High/Low ticks | Digital options contract | Deriv",
"361051814": "Let’s say you want to calculate the take profit level and pip value when you want to sell 3 lots of Volatility 50 Index priced at 249.5961 USD with a take profit amount of 84 USD.",
"362961755": "No, the accumulated payout for accumulator options is not correlated with the direction of the underlying index.",
"364422126": "Available 24/7 with varying levels of volatility, our synthetic indices are priced based on algorithms that are audited for fairness by an independent third party.",
"365224830": "Basket indices trading online | Basket indices trading demo account | Deriv",
"368545289": "Use a weak password.",
"369107014": "25 - 1,500",
"369418918": "<0>Stop loss and/or take profit level = asset price - {stop loss OR take profit amount ÷ (volume × contract size)}</0>",
"370132757": "What is a Deriv X password?",
"372045575": "Verification code was sent to {{email}}. If you have received the code please continue. If you didn't receive the code please make sure you didn't have any account already.",
"372500096": "Cryptocurrency market | Crypto trading | Deriv",
"373168737": "Can I go to the regulator directly instead of contacting you first?",
"373753849": "Easy to use trading features",
"375485199": "24/7 customer support via live chat on our website",
"376073087": "<0>Deriv MT5 (DMT5)</0> and <1>Deriv X</1> are both multi-asset trading platforms where you can trade CFDs with leverage on multiple asset classes. The major difference between them is the platform layout — MT5 has a simple all-in-one view, while on Deriv X you can customise the layout according to your preference.",
"376358538": "- Select your preferred trading asset.",
"376773528": "Deriv Life",
"378043056": "Each of these indices replicates the performance of top publicly traded companies in a financial market in the Asia/ Oceania region.",
"379401010": "Partners",
"381970124": "If you select 'Odd', you receive the payout if the last digit of the exit price is an odd number (e.g. 1, 3, 5, 7, 9).",
"383145223": "Stocks Ebook",
"383607920": "The stop loss and take profit amount for a contract on DTrader is calculated based on the formula:",
"386236966": "Trade smartly",
"386443705": "How and when will I receive my Deriv IB commissions?",
"387541185": "Many of our clients are looking for ways to fund their accounts using payment methods that are not directly available on Deriv. As a payment agent, you'll be able to help them fund their accounts while charging a fixed commission per transaction.",
"388794040": "Only Ups/Only Downs Icon",
"389616032": "<p>The closer the barrier is to the spot price, the higher the chance for your turbo options contract to expire worthless (which means, your contract will expire without any payout or profit).</p><p>Deriv offers a higher potential payout per point to compensate for this risk. The amount you’ll potentially receive at your contract’s expiry will be higher for every point above or below the barrier, as long as the barrier is not touched or breached throughout the contract duration.</p>",
"390409172": "3 steps for faster deposits and withdrawals",
"390647540": "Real account",
"391187276": "Enjoy trading on a secure, intuitive platform built for new and expert traders.",
"393215173": "the British Virgin Islands Financial Services Commission",
"393841045": "<0>Note:</0>",
"393899903": "You can only service Deriv clients in your country of residence.",
"395057342": "Who we are",
"395698348": "<0>1 lot</0> with 1,500 leverage:",
"396319850": "How to register for Deriv P2P?",
"396992773": "Deriv is the best broker in the world so far in terms of the assets they offer, ease of withdrawals and deposits, plus other services. Keep on giving us the best, Deriv!",
"399056226": "How can I recognise phishing websites?",
"400968378": "locations",
"401039438": "Have consistent, regular sign ups via your referral link",
"401450104": "> 3 - 5 billion",
"405110755": "You can trade forex, cryptocurrencies, and derived on Deriv Trader. Some markets may not be available in certain countries.",
"405259925": "Fast CFDs platform with inbuilt copy trading.",
"406403062": "Can I change my growth rate after opening the contract?",
"407739127": "A monthly service fee of USD 1,500 will be charged at the end of each month. The fee is accrued and only charged if the minimum volume requirements are not exceeded.",
"408925924": "Up to x1000",
"410425831": "JP Morgan Chase",
"411474127": "help centre",
"411594407": "Take a look at Deriv GO’s product roadmap, give us your feedback on what we’re building, and suggestions on what to build next.",
"411774174": "-0.12 ",
"412433839": "I agree to the <0>terms and conditions</0>.",
"413762216": "Can I exit an open Reset Call/Reset Put contract before expiry?",
"415028859": "Local currency",
"415543200": "This depends on the margin required for each asset. You’ll be able to see the required margin for each asset before opening your position.",
"417690017": "Touch / No Touch",
"417855021": "Name is required",
"418173024": "Markets available for CFD trading",
"419648873": "Trade global stocks and stock indices now on our DMT5 platform.",
"420909743": "You call the stocks",
"421097985": "<p>Yes, you can enter multiple contracts at the same time. If you open multiple contract simultaneously, you'll get to diversify your trading portfolio and take advantage of various market opportunities.</p><p>Do note that the specific rules and limitations on the number of contracts you can enter simultaneously may vary depending on trade type. Some may have restrictions on the number of contracts you can open, while others may have other specific conditions that may allow for greater flexibility.</p>",
"421158556": "You may refer to <0>our terms</0> for more information. If you need help getting into your account, <1>contact us via live chat.</1>",
"421232681": "Additional terms",
"421563171": "What are vanilla options?",
"426923558": "The closer the barrier is to the spot price, the higher the chance for your turbo options contract to expire worthless (which means, your contract will expire without any payout or profit).",
"427008206": "Be transparent",
"429395367": "Guide and tutorial for DBot",
"429483909": "<0>2 lots</0> with 100 leverage:",
"432518896": "Client trust is our highest priority, and that’s why millions of users choose us. Here are some of the things that make us a leading online trading service provider.",
"432775041": "Get Trading",
"433348384": "Real accounts are not available to politically exposed persons (PEPs).",
"434113887": "Frequently asked questions - Deriv MT5",
"434669878": "Best forex spread award",
"435601722": "Arrow",
"436791456": "4. Your new Deriv cTrader account is ready.",
"437269575": "Minimise the potential risks associated with your chosen trading strategies.",
"437330008": "Full disclosure of each providers’ performances.",
"437894033": "Or sign up with",
"440651350": "Example of dynamic leverage calculation for forex",
"441137968": "- Enter your stake or preferred potential payout amount.",
"441557166": "Deriv X - a multi-asset CFD trading platform available on Deriv",
"442871824": "Predict which of the next 5 price ticks will be the highest or the lowest.",
"443075033": "25 - 100",
"443594501": "For your Deriv MT5 and Deriv X real accounts, log in to close any open positions.",
"443887309": "Your credit card balance may be insufficient.",
"445501522": "<0>LQD.US</0> The iShares iBoxx $ Investment Grade Corporate Bond ETF tracks the performance of an index of US dollar-denominated, investment-grade corporate bonds.",
"446255815": "Then, you’ll need to verify your identity by submitting your document(s).",
"447611673": "All Deriv partnership programmes are free. Get your affiliate commissions paid to your method of choice every month and IB commissions paid to your Deriv MT5 account daily.",
"448045694": "If you select 'Only Downs', you receive the payout if all consecutive ticks fall successively after the entry.",
"449277904": "What is Deriv GO",
"450215437": "2",
"451624200": "XTZ/USD",
"452170875": "Pip calculator",
"452461550": "MT5 Swap Free",
"453450172": "<0>Note:</0> For a wider selection of signal providers for Deriv, go to <1>MQL5 showcase page</1> and search for <0>Deriv</0> under the <0>Broker</0> server field.",
"454217012": "<0>Note:</0> Your buy and sell limits on Deriv P2P are set at our discretion.",
"455544956": "A chart illustrating a winning Fall trade type contract",
"455738681": "The <0>DSI30</0> switches between regimes every <1>30 minutes</1> on average.",
"455897892": "Cryptocurrencies Ebook",
"456795878": "Malta Senglea Church",
"456825069": "Trading experts",
"457224397": "The potential payout and potential loss (your initial stake) will be clearly displayed before you enter the trade.",
"459292723": "community",
"459886707": "E-wallets",
"460878453": "5 - 10,000",
"462589616": "How can I open a turbo options trade on Deriv?",
"463393690": "Coming soon",
"465003790": "DMT5 login",
"467126962": "We’ll seek more info on the transaction by reaching out to you and the trader you are dealing with, and we’ll try to resolve the issue within 6 hours. We’ll keep you informed of the status.",
"467389382": "background svg",
"469222213": "Click on the <0>My Statistics</0> tab and select your signal provider.",
"469552854": "Want to know more about CFD trading conditions for the instruments we offer?",
"469798381": "Years of service",
"472630909": "It will take 1-3 working days for your application to be reviewed.",
"472915014": "Deriv is one of the world’s largest online brokers. We offer CFDs and other derivatives on forex, stocks & indices, cryptocurrencies, commodities, and derived indices to millions of registered users across the globe.",
"473760456": "We speak plainly to avoid ambiguity, disclose the terms of all contracts, and are clear about the risks of trading and how we make money.",
"474616293": "The trading platform to fit your style",
"475611258": "Help centre | Frequently asked questions | About Deriv | Deriv",
"476241116": "Provide expert tips and opinions on online trading via a website, blog, YouTube channel, webinars, or other forms of digital media.",
"476381528": "commission",
"476621330": "Opening an account",
"477729987": "Trade on",
"478097455": "Deriv (FX) Ltd (Company No. LL13394), incorporated on the 18th January 2017, is registered in the Federal Territory of Labuan (Malaysia) with its registered office located at Unit No. 3A-16, Level 3A, Labuan Times Square, Jalan Merdeka, 87000, Federal Territory of Labuan, Malaysia. Deriv (FX) Ltd is licensed by the Labuan Financial Services Authority (<0>view licence</0>) and is a member of the Labuan Fintech Association.",
"479311128": "Open trades at a lower cost and increase your potential gains.",
"479852820": "With High/Low Ticks, you predict which of the 5 ticks within the trade duration will be the highest or lowest.",
"480930125": "Start trading ETFs on Deriv in 3 simple steps",
"481274667": "How can I withdraw funds from my Deriv MT5 real money account?",
"481411401": "Regulation",
"483166710": "You can open an Asians trade by:",
"485805015": "Can I close a High/Low Ticks contract before the contract expires?",
"486632400": "Open a digital options contract with a High/Low ticks trade type on Deriv’s trading platforms and earn payouts with accurate market predictions.",
"486935836": "I forgot my Google/Facebook/Apple account password. How can I log in to my Deriv account?",
"487017462": "Smart support team",
"487236738": "How it’s calculated",
"489679731": "SGD/JPY",
"489777784": "EFA.US",
"492590863": "Please enter a valid URL format",
"492921093": "25 - 500",
"493240844": "Signup to Deriv.com and trade online with as little as $1 USD on major currencies, stocks, indices, and commodities.",
"493380976": "A chart illustrating a winning Stays Between trade type contract",
"493622337": "How can we help?",
"494843334": "You can trade forex, stock indices, commodities, and synthetic indices on DTrader.",
"495251898": "A chart illustrating a vanilla put option trade with no payout",
"495686884": "Why choose us for your online trading | Deriv",
"497469280": "We aim to provide our customers with reliable systems that have high uptime and low latency, even on low-speed mobile data networks. We provide good security and cross-device compatibility for all major desktop and mobile devices.",
"497567508": "Your Deriv MT5 history will be downloaded as an XML file.",
"497905436": "How do I check my available balance for Deriv P2P?",
"500325680": "Make instant deposits using your local voucher system.",
"500999639": "Some trade types may not be available in certain countries.",
"501763239": "Major pairs",
"502070112": "<0>VEA.US</0> The Vanguard FTSE Developed Markets ETF tracks a benchmark index that measures the investment return of stocks issued by companies located in Canada and the major markets of Europe and the Pacific region.",
"502374174": "Earn commission from your clients' trades on Deriv's CFD trading platforms.",
"504465748": "We'll email you a verification link. Click that link and set a new password for your Deriv account.",
"506442463": "What is the onboarding procedure?",
"506797447": "<0>EUR Basket</0> measures the value of the Euro against a basket of five global currencies (USD, AUD, GBP, JPY, CAD), each weighted by 20%.",
"509964491": "Trade even when most financial markets are closed",
"510416775": "Turbo options allow you to earn a potentially high payout if your market predictions are right and if the spot price does not touch or breach a predetermined barrier.",
"510912921": "If the selected condition is not met or if the exit price is equal to either barrier, your stake is lost.",
"511244573": "If you select 'Touch', you receive the payout if the market price touches the barrier at any time during the contract period.",
"512031600": "The percentage of position value required as collateral. Calculated as (% x trade size).",
"512075488": "The products offered on our website are complex derivative products that carry a significant risk of potential loss. CFDs are complex instruments with a high risk of losing money rapidly due to leverage. You should consider whether you understand how these products work and whether you can afford to take the high risk of losing your money.",
"514514217": "If the selected condition is not met, your stake is lost.",
"515077577": "<0>10 lots</0> traded with DL on <0>XAU/USD</0> is split between:",
"517286342": "<p>To place a vanilla options contract, you’ll need to:</p><ul><li>Select the underlying asset you want to trade.</li><li>Determine your contract duration or end time.</li><li>Predict the asset’s price movement by choosing Call or Put.</li><li>Select your preferred strike price</li><li>Enter your stake.</li><li>Purchase the contract</li></ul>",
"517833647": "Volatility 50 (1s) Index",
"517844699": "Alibaba Group Holding Ltd",
"518906831": "Can I use the same address to make a cryptocurrency deposit?",
"519988278": "Fox Corp Class B",
"520136698": "Boom 500 Index",
"520696532": "Your trusted broker with intuitive forex trading platforms, convenient payment options, and a 24/7 support team.",
"521140114": "Start trading commodities on Deriv in 3 simple steps",
"521161227": "DSI30",
"524082501": "As a payment agent, you are an independent exchanger. You can:",
"524230462": "How can I sign up as a Deriv IB?",
"524459540": "How do I create variables?",
"524469079": "An intuitive interface",
"524640779": "Please enter a valid password",
"524754401": "Instruments available for multipliers trading",
"526128866": "<p>Payout per point indicates the payout you will receive for each point above or below the strike price (which is selected before you enter the contract) within the contract period. This amount will depend on your stake.</p><p>For Call options, payout per point indicates the amount of payout you’ll gain for each point above the predetermined strike price, at the contract's expiry.</p><p>For Put options, payout per point indicates the amount of payout you’ll gain for each point below the predetermined strike price, at the contract's expiry.</p><p>Please note that this payout does not equal to potential profit. You'll only earn potential profit once the payout amount exceeds your stake amount.</p>",
"527660774": "Trading tools | Swap, pip, and margin calculators | Deriv",
"528858838": "Lead/USD",
"529056539": "Options",
"530866080": "What information should I include when making a complaint?",
"533462850": "Who is Deriv Prime?",
"534798809": "Our intelligent routing to servers worldwide ensures rapid execution speeds and a stable, uninterrupted price feed with 99.97% uptime.",
"535867011": "Sign up in minutes and explore Trader’s Hub — all your trading needs, in one place.",
"538228086": "Close-Low",
"539261300": "OS icon",
"539645627": "We aim to deliver market-leading products that are trusted around the world.",
"540538076": "40+ stocks",
"541218901": "Full name*",
"541543954": "<0>Revenue share</0><br/>Earn commission of up to 45% based on the monthly net revenue generated by your clients. The higher their net revenue, the higher your commission payout.",
"542274641": "High leverage, tight spreads",
"543111387": "Deposit and withdraw in Bitcoin, the world’s first cryptocurrency.",
"544305269": "We’ll deposit your commissions directly into your trading account on or around the 15th of every month.",
"545720337": "potential profit",
"548533437": "This is available to all Deriv affiliates.",
"548719701": "You are responsible for any connectivity or bridging fees charged by third-party providers to transact through our platform.",
"548820232": "The basics of forex trading",
"549849868": "Predict whether the market will touch or not touch a target at any time during the contract period.",
"550365780": "Open a demo account and practise with an unlimited amount of virtual funds.",
"550921370": "No matter if you are large, small, or have just started, Deriv Prime will provide top-of-book liquidity solutions with very fast execution at unmatched fair pricing and conditions.",
"551739457": "3. Under <strong>CFDs</strong>, look for <strong>Deriv cTrader</strong> and hit <strong>Trade</strong>.",
"551958626": "Excellent",
"552929836": "How does the Reset Call/Reset Put contract type differ from the Rise/Fall contract type?",
"554014185": "Online trading is exciting, but it can be addictive. Deriv.com provides you with the opportunity to either self-exclude or set limits on your trading activities on this website.",
"554199203": "Start trading synthetic indices on Deriv in 3 simple steps",
"554620691": "Please enter a valid number",
"554672635": "3. Use a logic block to check if <0>Total profit/loss</0> is more than the <0>Stop loss threshold</0> amount. You can find the <0>Total profit/loss</0> variable under <0>Analysis > Stats</0> on the <0>Blocks menu</0> on the left. Your bot will continue to purchase new contracts until the <0>Total profit/loss</0> amount exceeds the <0>Stop loss threshold</0> amount.",
"554856552": "To register as a Deriv IB, you must meet the following criteria:",
"556230348": "Drift Switch Indices",
"557095822": "Click the <0>Renew</0> button to renew the service or the <0>Unsubscribe</0> button to cancel the subscription.",
"558735677": "Can I open multiple Asians contracts simultaneously?",
"559921804": "<0>You call the stocks.</0> Take a position on your favourite stocks and indices.",
"560142031": "Available 24/7, our synthetic indices emulate price movements of real-world markets with varying levels of volatility. As they aren't based on actual underlying assets, they are unaffected by real-world market events. The pricing of our synthetic indices is backed by algorithms that are audited for fairness by an independent third party. Read <0>this article</0> to learn more about trading synthetic indices on Deriv.",
"560243784": "Liquidity solutions provider | Deriv Prime",
"560338255": "<0>UNG.US</0> The United States Natural Gas Fund ETF tracks in percentage terms the movements of natural gas prices.",
"561359365": "1. Select the market and asset you want to trade.",
"562528971": "Zinc/USD",
"562753315": "Guernsey | Our office – Channel Islands | Deriv",
"564216330": "<0>1 lot</0> with 300 leverage:",
"566274201": "1. Market",
"567322404": "Antivirus",
"567739189": "Why do my Deriv MT5 positions always start with a loss?",
"568729968": "responsive platform",
"570656160": "You can use your Deriv MT5 demo account for as long as you want. However, if your account is inactive for 30 days, we'll deactivate it automatically.",
"571990120": "You can also search for the blocks you want using the search bar above the categories.",
"573384365": "If you are still having issues, please contact our support team via ",
"573706432": "Select market to trade",
"574805081": "<0>SPXS.US</0> The Direxion Daily S&P 500 Bear 3X Shares ETF seeks to reflect 300% of the inverse of the performance of the S&P 500.",
"575534504": "Low spreads",
"576355707": "Select your country and citizenship:",
"576643640": "<p>Reset Call/Reset Put contracts offer the ability to reset the strike price at a potentially more advantageous level. In this contract, your market prediction is your contract's exit price against the reset price (instead of the entry price). Reset contract types also typically offer a lower fixed payout percentage compared to Rise/Fall contracts.</p><p> Meanwhile, Rise/Fall contracts consider the contract's exit price against the contract's entry price, based on your market prediction.</p><p>In both instances, the potential payout is fixed upon entry.</p>",
"576793632": "0 - 15 million <0>(Crypto)</0>",
"577779861": "Withdrawal",
"580973510": "higher/lower option trade",
"581168980": "Legal",
"581576971": "Hit <0>Reset</0> at the bottom of stats panel.",
"582048648": "Contact Us | Online Trading | Deriv.com",
"582179280": "Yes, your contract will close automatically if the market price touches the selected barrier at any time during the contract period, no matter which contract type you are trading.",
"582187360": "Deriv (FX) Ltd is licensed by the Labuan Financial Services Authority.",
"582602639": "If you have been contacted by a potential impersonator or if you have any questions, contact us <0>via live chat</0>.",
"583345172": "Deriv X widgets to customise your CFD trading",
"586006302": "<0>Over/Under:</0> Predict whether the last digit of the last tick of a contract will be higher or lower than a specific number.",
"586157262": "<0>3350.11</0>",
"588230867": "Deriv Trader is an advanced trading platform that allows you to trade more than 50 assets in the form of digitals, multiplier, and lookback options.",
"589124954": "This amount is calculated based on your stake and the barrier you have selected.",
"589650317": "Lookbacks | Digital options contract | Deriv",
"590141689": "Yes, Deriv cTrader offers stop loss, take profit, pending orders, and other risk-management tools.",
"590149919": "Ensure that you make payment to the correct seller within 1 hour.",
"590858519": "Say goodbye to overnight charges, keep your positions open for as long as you want.*",
"591295543": "Dynamic tiers — Stock indices",
"592964176": "Join over 2.5 million traders",
"595022058": "100",
"595278941": "Asset price",
"595722471": "Return to player (RTP) % for lookbacks for a multiplier of 1 and 1m duration is around 87% on average.",
"596287611": "Markets available",
"596893160": "Botswana",
"600260061": "Frequently asked questions - Security",
"601623685": "<0>Learn more</0>",
"601830517": "3. Set your preferred tick duration and last digit prediction.",
"602265590": "Stop loss works slightly differently in Crash/Boom/Range break indices. This is because sudden fluctuations in market price from one tick to the next can sometimes surpass the stop loss you have set. When the market price exceeds your stop loss amount, your contract will be automatically closed at that point, instead of exactly at the stop loss level.",
"603094883": "However, it is important to note that the availability of early exit may vary depending on the specific trade type. Some trade types may have restrictions or it may only be available within a certain timeframe.",
"604031157": "A software developer with your own trading platform that can be linked to Deriv’s API. Head to the <0>Deriv API page</0> for more info on how our API works.",
"605798512": "There is a minimum of USD 0.01 if you would like to transfer funds to another platform.",
"606371596": "How to trade the forex market",
"607535944": "5 - 30 minutes",
"607853927": "The price barrier in Touch/No Touch contracts refers to the specified price level that the underlying instrument's price needs to touch or not touch during the contract duration.",
"612131072": "Clients in the rest of the world (except for restricted countries such as the USA, Canada, and Hong Kong) can have accounts under Deriv (SVG) LLC.",
"613877038": "Chart",
"613971219": "Email image",
"617759430": "Earn commissions when your referral deposits 100 USD – whether it's a single deposit or accumulated over time.",
"618098617": "Your IB commissions earned from MT5 and Deriv EZ are credited directly into your Deriv MT5 account daily. You can transfer the funds to your Deriv account and withdraw them via your preferred payment method.",
"618453683": "On Deriv, you can trade CFDs with high leverage, enabling you to pay just a fraction of the contract’s value. It will amplify your potential gain and also increase your potential loss.",
"619354706": "Max(6.83, -10) ",
"619481945": "Mobile number is required",
"619610610": "Close your account at any time you want.",
"622253642": "Save time – no need to open, monitor, and close trades.",
"623188171": "Trade cryptocurrencies and synthetic indices anytime, even on weekends and holidays.",
"623694668": "VWO.US",
"624256060": "Define optional parameters that give you more control over your trading, including stop loss, take profit, and deal cancellation.",
"627774646": "Additional income stream from monthly subscriptions.",
"627845959": "Things to keep in mind when trading multipliers",
"628661446": "If the selected condition is not met or if the last tick is equal to the average of all the ticks, your stake is lost.",
"628823666": "Can I enter many High/Low Ticks contracts at the same time?",
"629081848": "Higher/Lower Icon",
"630520732": "The Deriv IB Programme is completely free.",
"630831015": "Dtrader trading platform",
"631600257": "Strong regulatory compliance that instils confidence in clients from all over the world.",
"632417472": "Trade multipliers on synthetics 24/7, 365 days a year. Trade multipliers on forex and cryptocurrencies round the clock on weekdays.",
"633498400": "You should enter 8-13 numbers",
"633640589": "${GENERAL}",
"635121138": "Affiliate and IB programme | Deriv",
"635805347": "Dos and don'ts of promoting our products and services",
"636073620": "Subscribe to Deriv MetaTrader 5 trading signals to copy the trades of experienced traders, or become a signal provider and share your strategies.",
"636857983": "Take advantage of a highly liquid market with round-the-clock trading. Profit from correctly predicting the movement of the world's most popular cryptocurrencies.",
"636968212": "If you encounter any issues with a transaction on Deriv P2P, first try to resolve it with the trader you’re dealing with. If they’re not willing to help, please let us know via <0>live chat</0>, and we’ll help you resolve it.",
"637013579": "Our classic \"drag-and-drop\" tool for creating trading bots, featuring pop-up trading charts, for advanced users.",
"640979467": "<0>IWM.US</0> The iShares Russell 2000 ETF tracks the investment results of an index of small-capitalisation US equities.",
"642995056": "Email",
"643714136": "Binary bot for creating trading bot",
"645294370": "<0>A trading mentor</0><br/>Do you mentor other traders? Help them become better traders and earn commission when they sign up and trade on our platforms.",
"645317079": "We'll remove the <0>withdrawal limit</0> once your account has been verified.",
"645902266": "EUR/NZD",
"645954408": "When the market price climbs to 8,700 USD, you decide to set the stop loss level at 8,200 USD. After a few ticks, the price dives to 8,100 USD, surpassing your stop loss level. Your trade will automatically close at 8,100 USD.",
"646017912": "Our flagship app for trading options and multipliers.",
"647610263": "synthetic indices",
"648610617": "The requested URL was not found",
"649962941": "2. Trade type",
"651200588": "Markets including metals and energies.",
"652884735": "How much does it cost to register for the affiliate programme?",
"653618948": "Monitor the chart",
"655249194": "Deriv X is our second CFD platform, after MT5. It’s packed with features and built to fit your trading style.",
"655519080": "Deutsche Bank AG",
"655902997": "You may reactivate your account by <1>logging in</1> with your email address and password. If you're unable to do so, please <0>contact us via live chat</0>, and we'll help you further.",
"656430237": "How do I rate or recommend my trade partners on Deriv P2P?",
"657066292": "You can connect to your trusted bridge partner via a FIX API protocol connection.",
"658337631": "Got a <0>Binary.com</0> account? You can <1>log in</1> to <0>Deriv</0> with your <0>Binary.com</0> username and password",
"659338852": "Stop loss or ",
"661969161": "Execution speed",
"662615740": "10 world indices",
"663180477": "Customer-first trading experience",
"663689984": "Diagonal",
"664572363": "stays between/goes outside option trade",
"665599274": "Fill up the form and click <0>Confirm</0>.",
"665617825": "CPA (EU-based clients only)",
"665777772": "XLM/USD",
"666057433": "Trade popular assets in the commodities market such as silver, gold, oil, and more without owning the underlying asset. Speculate on the price movements and benefit from our high leverage and competitive spreads.",
"666146179": "Financial institutions",
"666585046": "Choose your growth rate to tailor risk/reward. ",
"668322984": "Automated copying – no extra work from you.",
"671884384": "Trade the commodities market and speculate on the price movements of oil and precious metals like gold and silver. Enjoy low spreads and zero commission.",
"672008428": "ZEC/USD",
"674916985": "Stocks, Stock Indices & <br>ETFs",
"675017060": "payments department",
"678886974": "USD > 20,000 per month",
"680204734": "The minimum amount for withdrawal will vary depending on the latest exchange rates. The figures shown here have been rounded.",
"680953516": "MARKETS",
"682063263": "Your Deriv P2P account may be blocked for one of the following reasons:",
"682108610": "Whether you’re a beginner or a seasoned trader, our trading experience is something you’ll love.",
"682418965": "Jordan – Our office | Deriv",
"683810917": "Check your daily IB commission",
"686215092": "Stop loss with Crash/Boom",
"686385193": "Let’s say you want to calculate the take profit level when you open a position for Volatility 100 Index priced at 3376.24 USD with a stake amount of 10 USD, a multiplier value of x100, and a take profit amount of 7.54 USD in Down direction.",
"686387939": "How do I clear my transaction log?",
"686707119": "Are In/Out options available on Deriv Trader?",
"686961748": "<0>Deriv Trader</0> is an advanced trading platform where you can trade digital and lookback options and multipliers on more than 50 assets.",
"688617121": "High leverage",
"688625639": "We will acknowledge receipt of your complaint via email and aim to provide a final response within fifteen (15) business days.",
"689068852": "Where can I see my ads?",
"689400450": "It's the best broker in the world. I will recommend it to anyone every day all the time. Their support agents are really helpful in all areas.",
"690959930": "Reset password | Deriv",
"693342485": "Community managers",
"696057317": "World indices",
"698401220": "1.17524)|",
"699722384": "1. You must have an MQL5 community account to subscribe to trading signals. If you don't have an account yet, please go to <0>MQL5.com</0> to register.",
"700128691": "We’re steadfast in our commitment to high ethical standards. Find more reasons to know why Deriv is the choice of online traders.",
"700971061": "You can find your Deriv MT5 server name on your <0>Deriv MT5 dashboard</0>. Click Trade on your preferred MT5 account and look for the server below the broker name.",
"701775446": "Volatility 200 Index",
"701840176": "Commission per USD 100k turnover",
"702074152": "PARTNERS",
"702303938": "affiliate ib",
"704465777": "After making your payment, share the receipt with the seller via the chat feature in Deriv P2P.",
"704532260": "Sign up with just your email. No credit card or minimum deposit required.",
"704777433": "Deep, reliable liquidity with fast execution for professionals, seasoned institutions, start-ups, and more",
"705397132": "Automated trading. No coding required.",
"706043807": "A dedicated account manager to help you with any questions",
"706069088": "About Deriv",
"706434010": "Deriv X logo",
"706717249": "5 - 800",
"706931524": "When you purchase a 'High-Close' contract, your payout will be equal to the difference between the highest price and the exit price over the duration of the contract multiplied by the multiplier.",
"710137133": "Apply now",
"712547410": "total trade turnover",
"714321435": "laptop mt5",
"714478782": "<0>AUD Basket</0> measures the value of the Australian dollar against a basket of five global currencies (USD, EUR, GBP, JPY, CAD), each weighted by 20%.",
"715753532": "Find your role with us by browsing Deriv job opportunities in Cyberjaya, Malaysia.",
"717379127": "Enjoy multiple chart views, 90+ indicators, and 13 drawing tools.",
"720519019": "Reset my password",
"721271099": "If you select 'Ends Between', you receive the payout if the exit price remains between the high and low barriers.",
"722183289": "Predict whether consecutive ticks will rise or fall successively after the entry.",
"723828787": "restart conditions",
"723998774": "Log in or sign up for a Deriv account.<0 />",
"726009006": "<0>5 lots</0> with 500 leverage:",
"726056166": "How do I log in to my Deriv cTrader account?",
"727308009": "They ask you to download files containing malware or virus that can infect your device.",
"728710085": "No, it isn’t. <0>Deriv P2P</0> is a peer-to-peer service for our clients to make deposits and withdrawals using their local currency. As our payment agent, you can use Deriv P2P to offer your services to Deriv clients in your country.",
"728740336": "Will my contract close automatically if the market price touches the barrier at any time during the \"Touch\" contract period?",
"728921347": "Use analysis tools, indicators, and smart logic such as take profit and stop loss to maximise your profits and limit losses.",
"730281403": "Make instant bank transfers to all the major banks in your country.",
"730787483": "A chart illustrating a turbos Down contract payout",
"731382582": "BNB/USD",
"731636050": "Can I open multiple turbo options contracts simultaneously?",
"733057061": "Learn how to trade cryptocurrencies with Deriv",
"733615113": "No, it isn’t. DP2P is a peer-to-peer service for our clients to make deposits and withdrawals using their local currency. As our payment agent, you can use the DP2P platform to offer your services to Deriv clients in your country",
"733921210": "For instance, if you are trading the USD/JPY forex pair, the swap charge will be computed in Japanese Yen (JPY) which is the quote currency. On the other hand, if you are trading oil, then the swap charge will be computed in US Dollar (USD), which is the denomination of the underlying asset – oil.",
"733955450": "Trading online can be exciting, but it’s important to keep in mind that there are risks involved including addiction and financial losses. To avoid the danger of addiction, it is important that you engage in a careful self-analysis to check if you are at risk, and follow some basic principles and guidelines.",
"736376851": "If you select 'Higher', you receive the payout if the exit price is above the barrier.",
"736634601": "explore it on appgallery",
"737466973": "The contract size is one standard lot of Volatility 75 Index = 1",
"737537871": "Mobile app for multipliers trading on the go.",
"739412906": "<0>Stays Between/Goes Outside:</0> Predict whether the market will stay inside or go outside two price targets at any time during the contract period.",
"739759950": "Tick counters are available between consecutive barrier crosses to help you make smart trading decisions.",
"740609768": "What should I do if I have a dispute with the trader I’m dealing with?",
"741504928": "For marketers, influencers and introducing brokers to monetise their network. Earn competitive commissions and get access to high-quality promotional materials.",
"743105449": "How can I deposit funds into my Deriv X real money account?",
"743107247": "USD 20,000 x 30% = USD 6,000",
"743673813": "Go to <0>Bot Builder</0>.",
"744748902": "Max 1 hour",
"746666368": "Deriv Group has a history that dates back to 1999 when we laid the groundwork for the world’s first fixed-odds trading service. Since then, we have grown from strength to strength, garnering the trust of traders around the world.",
"746928132": "Yes, you’ll need a Deriv real account to process deposits and withdrawals for our clients.",
"750427805": "matches/differs option trade",
"751378879": "Potential loss is limited to the initial amount you decide to trade.",
"752024971": "Reached maximum number of digits",
"754014828": "Start trading derived FX on Deriv in 3 simple steps",
"754435349": "200+",
"755433132": "What are digital options?",
"755567027": "Can payment agent offer their services to a premium payment agent?",
"756066527": "I agree to the <0>terms and conditions</0>",
"756258759": "The <0>DEX 600DN</0> has frequent small spikes and occasional major drops, which occur <0>every 600 seconds</0> on average.",
"756310599": "We will be transparent about the terms of all contracts so that customers can make informed choices.",
"756453521": "Pie chart explaining relation between margin and leverage",
"757475465": "DSI10",
"758038191": "Find your role with us by browsing Deriv job opportunities in Melaka, Malaysia.",
"759844711": "Yes, it's completely free of charge <0>to join</0>.",
"760192418": "Trade wisely, and don’t let your emotions influence your decisions. Don’t trade when you’re prone to bad judgement.",
"762926186": "A quick strategy is a ready-made strategy that you can use in Deriv Bot. There are 3 quick strategies you can choose from: Martingale, D'Alembert, and Oscar's Grind.",
"763072092": "MT5 trading signals subscriptions expire automatically after one month. To renew or cancel a subscription, follow these steps.",
"763514492": "Get integrated help",
"764856444": "We have a huge mission, an incredible team, and rapid growth.",
"764879840": "GLD.US",
"764958509": "Trade on global financial markets and multiply your potential profit without losing more than your stake.",
"768795461": "Start trading cryptocurrencies on Deriv in 3 simple steps",
"769728384": "<0>USD 100</0> Volume",
"770100372": "Instant access",
"771178720": "We provide marketing materials such as banners, videos, and text ads that you can use to bring new clients to our platform.",
"773309981": "Oil/USD",
"775706054": "Do you sell trading bots?",
"775826029": "In the <strong>Copy</strong> tab of your Deriv cTrader account, search for strategy providers. Pick your favourite strategies, allocate funds, and start copy trading.",
"777203273": "Trade CFDs, Options, and Multipliers",
"778624300": "Take advantage of Deriv's trading calculators that help you to calculate your swap, pip, profit, and losses for the CFD and multiplier trading.",
"779522948": "Ipoh | Our office – Malaysia | Deriv",
"780041225": "If you already have a demo account, here’s how to add a real account:",
"781916470": "<0>Tight spreads</0> — The spread is the difference between the buy price and sell price. The tighter the spread, the lower the cost to enter the market.",
"783153785": "Unlimited virtual funds",
"783391379": "To receive the minimum commission (0.01 in any currency) allowed by the system, the minimum volume requirement is calculated based on the following formulas:",
"783545585": "Correctly predict the price movements of the world's most popular cryptocurrencies. Over 17 crypto pairs to trade on.<0 />",
"783815409": "Configure your trading and risk management parameters. Then click OK to complete the process.",
"784262660": "New and promising",
"785833862": "Open a digital options contract with a Digits trade type on Deriv’s trading platforms and earn payouts with accurate market predictions.",
"785969488": "Jump 75 Index",
"785973496": "Portugal",
"788015089": "*available for selected pairs:",
"788744327": "Click <0>Change</0> next to the password field, then click <0>Change Deriv MT5 password</0>.",
"789376489": "USD/HKD",
"790534726": "Implement controls to prevent unlawful activity",
"794990233": "Via Trader's Hub",
"795493132": "Poland",
"798954978": "Go to your MT5 desktop app terminal and click on the Signals tab to view the list of signal providers. Not available on the web version.",
"799457743": "Simple.",
"799923297": "<0>Turnover</0><br/>Earn up to 1.5% commission for each contract bought by your clients. The lower the probability of winning, the higher your commission payout.",
"800934856": "Explore our office locations | Deriv",
"802021852": "If you're buying, you'll need to make payment and share your payment confirmation with the seller. Once the seller has confirmed that they've received your payment, the exchange amount will be credited into your Deriv account.",
"802622821": "Explore trading on markets with multipliers on Deriv. Trade forex, cryptocurrencies, and more and maximise potential profit without risking more than your stake.",
"803547668": "paid out since inception",
"803989222": "The Synthetics account allows you to trade on Deriv’s proprietary synthetic indices that are available 24/7 and simulate real-world market movements.",
"806165583": "Australia 200",
"808426886": "We don’t practise hard-selling, offer financial or trading advice, nor make promises of guaranteed returns. We don’t encourage vulnerable people to trade and implement controls to prevent any unlawful activity.",
"809146176": "Not applicable",
"809414451": "<0>Forex at your fingertips.</0> Currency trading with major and minor pairs.",
"809480545": "If you'd like to log in using your email address instead, follow these steps:",
"809734567": "In the <0>MQL5 signals showcase page</0>, click the Create signal button.",
"809743883": "Trading forex pairs on Deriv GO",
"811665902": "What is Deriv MetaTrader 5 (Deriv MT5)?",
"812101045": "Stop loss and/or take profit calculator for margin",
"813485850": "Remember the 5 Don'ts:",
"813911098": "<p>Here's how to place a High/Low Ticks trade:</p><ul><li>Choose your preferred trading asset.</li><li>Predict which of the next 5 ticks will be the highest or lowest in the series.</li><li>Enter your stake or preferred potential payout amount.</li><li>Open your trade.</li></ul>",
"814009433": "Total trade turnover",
"814289409": "Then, withdraw your funds.",
"815602603": "Sign in to your Deriv account. If you don’t have one, sign up for free.",
"817575649": "How do I find ads in different currencies?",
"817909711": "Plus",
"818087675": "Get trading on Deriv",
"818603208": "If you have active orders, keep the app open (either on your phone or computer) until your orders are completed. Try to complete your orders within 1 hour.",
"818659471": "6. Stop loss",
"821579030": "QID.US",
"822013794": "<0>Contact us via live chat</0> to get help with changing your account currency.",
"822932128": "Help centre | Frequently asked questions | Deriv",
"824381946": "This gives you the margin requirement in the quote currency for forex pairs, or in the denomination of the underlying asset for other instruments.",
"825675433": "Stocks & indices trades available on Deriv",
"826324021": "Deriv.com on laptop and mobile",
"826511719": "USD/SEK",
"829379369": "You can automate your trading strategy using a trading bot. A trading bot is an automated computer program that purchases trade contracts for you while following a specific set of instructions that you provide.",
"829457879": "1. <0>Log in</0> to your Deriv account.",
"829579058": "Secure",
"831164350": "Let’s say you want to calculate the stop loss level and pip value when you want to buy a lot of EUR/USD priced at 1.17524 USD with a stop loss amount of 24 USD.",
"831282685": "Drop us an email",
"831784233": "Close-Low Icon",
"832324110": "Our locations",
"832827564": "This plan is not available for IBs who promote to clients residing in the EU.",
"833547634": "Currency weight",
"833981027": "Open a real account, make a deposit, and start trading basket indices and other markets.",
"835766128": "Check performance of your bot",
"836171053": "Partnership opportunity",
"836198432": "Benefits of subscribing to MT5 signals",
"837161837": "Select 'Rise' to receive the payout if the exit price is higher than or equal to the entry price.",
"837251632": "Trade global stocks and stock indices now on our Deriv MT5 platform",
"837396666": "<0>IEMG.US</0> The iShares Core MSCI Emerging Mkts ETF tracks an index of large-, mid-, and small-capitalisation emerging market equities.",
"838017583": "Not all payment methods are available in your country. Kindly check your cashier for further information. Withdrawals may take up to 15 working days to reflect in your bank account.",
"840305493": "Nickel/USD",
"840339773": "For fair resolution of any complaints, please contact us via <0>live chat</0>. To learn more, see our <1>complaint policy</1>.",
"841698576": "What are the contract duration ranges for Digits contract types?",
"842404857": "One or more disputes were raised against you. Please contact us via <0>live chat</0> for more information.",
"842624077": "For Down turbo options, the payout per point indicates the amount of potential payout you gain for each point below the barrier, at the contract’s expiry.",
"847028103": "Trade diverse vanilla and exotic options across platforms and markets without risking more than your initial stake. ",
"847028402": "Check your email",
"850220566": "You can trade forex, stock indices, commodities, cryptocurrencies, and derived on Deriv Trader. Some markets may not be available in certain countries.",
"850240893": "USD/JPY DFX10 Index",
"850368662": "Experience the power of copy trading on Deriv cTrader - The intuitive CFD trading platform with a wide range of features for an enhanced trading experience.",
"850735123": "Topic suggestions",
"851827893": "Find your role with us by browsing Deriv job opportunities in Ipoh, Malaysia.",
"852527030": "Step 2",
"854414022": "Deriv GO mobile trading app",
"855941254": "The MT5 Derived account offers contracts for difference (CFDs) on derived indices. These indices include our proprietary synthetic indices as well as indices derived from the price movement of real financial markets. Selected derived indices can be traded 24/7, even on weekends and holidays, while the others are available for trade round the clock on weekdays.",
"856157434": "20+ years of experience",
"856801593": "We are registered with the Financial Commission, an international independent organisation dedicated to resolving disputes within the financial services industry (<0>view membership</0>).",
"856928872": "Yes, as long as you pass our checks. Initially, you'll start with a 500 USD limit for buy and sell orders.",
"860052562": "Airbnb",
"861659702": "Easy-to-use platforms, superior charts",
"862283602": "Phone number*",
"862480295": "Our swap calculator helps you to estimate the swap charges required to keep your positions open overnight on Deriv MT5.",
"866130068": "product department",
"866196404": "What are the major differences between DTrader, Deriv MT5 and Deriv X?",
"867182964": "6,000 + 2,250 = USD 8,250",
"867244595": "We’re unable to process your sign-up request at this time. Please try again.",
"867458310": "No, the trade barrier can only be set before you open a contract. Once your turbo options contract is opened, the barrier cannot be changed.",
"867582421": "Help centre | Frequently asked questions | Account | Deriv",
"868154618": "Accounts",
"868287466": "You’ll need to:",
"868499940": "Start trading with Deriv",
"869176308": "Do not worry, if you encounter any issue along the process, please reach out to our support through <0>Live Chat</0> for further assistance.",
"870239780": "What markets can I trade on Deriv Trader?",
"870345918": "1-5% growth rate",
"872087592": "For Rise/Fall, contract durations range from 1 tick and 365 days.",
"874881951": "Browse job opportunities available at our Dubai office. Find your role in IT, marketing, and human resources.",
"875101277": "If I close my web browser, will Deriv Bot continue to run?",
"876462120": "2. On the left side panel, under the “Security & Safety” category, choose the “Email and passwords” or you may click <0>here</0>",
"876581050": "Slovakia",
"877621770": "Copy trading your way",
"877897643": "Advantages of trading forex on DTrader",
"878441070": "Can I change the currency of my Deriv MT5 account?",
"878676836": "Key information documents",
"878897196": "Deal cancellation isn’t available for Crash and Boom indices. The stop-out feature will close your contract automatically when your loss reaches or exceeds a percentage of your stake. The stop-out percentage is shown below your stake on Deriv Trader and varies according to your chosen multiplier.",
"878922748": "What is the CFDs account?",
"880363071": "Deriv Master Affiliate Programme",
"881413021": "Why trade commodities on Deriv",
"882216897": "Email is required",
"882980057": "Trading available everyday",
"884274624": "For Higher/Lower contracts, potential payouts can range from 1% to 3,900% of your stake, depending on where the barrier is set.",
"884464347": "These indices simulate market trends with asset prices going through 3 regimes:",
"886343062": "Never download apps via Telegram.",
"886712679": "Licensed and regulated",
"887615993": " Stop loss or ",
"888507830": "To prevent this, check your ads regularly. If they've been deactivated, you can reactivate them by hitting <0>Activate</0> on the <0>My ads</0> page.",
"888619169": "If you have made a deposit or have added a real MT5 account, follow these steps:",
"888978991": "Each of these indices replicates the performance of top publicly traded companies in financial markets in Europe.",
"890646842": "White architecture building in Ipoh",
"890667695": "45%",
"893607771": "Benefit from round-the-clock trading hours (Monday to Friday), high liquidity, low barriers to entry, a wide range of offerings, and opportunities to trade on world events.",
"893980632": "Have more questions? Check out the <0>FAQ section</0> on the MQL5 website.",
"894402947": "Fee per million",
"895567953": "assets to unleash your bot",
"895594801": "Select the signal provider you prefer and click the Subscribe button.",
"896028940": "Got more questions?",
"896455617": "BAT/USD",
"897072394": "deriv.app platform video",
"897325464": "Instruments available for CFD trading",
"898646134": "To see your account’s trading limits, go to Settings > Security and safety > <0>Account limits</0>.",
"899612897": "You should enter 8-13 numbers.",
"901158881": "This feature allows you to set the level of profit that you are comfortable with when the market moves in your favour. Once the amount is reached, your position will be closed automatically and your earnings will be deposited into your Deriv account.",
"902057285": "Click Yes to confirm the cancellation. Your funds will be returned to your Deriv account, and your account balance will be updated accordingly.",
"903422317": "Get instant access to your trades wherever you are whenever you want.",
"904780038": "Set the restart conditions",
"907733837": "Predict whether the market price will touch or not touch the chosen barrier (target) during the contract period.",
"908653946": "Volume limit",
"909083576": "404 - Page not found | Deriv",
"909249493": "Deriv (V) Ltd is licensed and regulated by the Vanuatu Financial Services Commission.",
"910109245": "7-8 October 2024",
"910572263": "1. Create the following variables and place them under <0>Run once at start</0>:",
"910806943": "You’ll earn a fixed commission based on the volume of individual trades bought by your referred clients.",
"912406629": "Follow these steps:",
"913276286": "1. Go to your <0>Deriv MT5 dashboard</0>.",
"915392164": "Open long or short positions based on your predictions of the market price movements.",
"915554307": "Your potential. Our technology.",
"916591715": "The above information is updated monthly and, therefore, may not reflect current trading conditions.",
"917157780": "If you select 'Differs', you receive the payout if the last digit of the exit price is different than your prediction.",
"917922170": "- Select the underlying asset you want to trade.",
"918181729": "call to action background",
"918587905": "Are you sure you want to delete your account?",
"920363635": "Frequently asked questions - IB programme",
"920654544": "Currently, you can only buy Long and Short turbo options contracts on Deriv.",
"922601177": "CPA",
"925239281": "How do I withdraw funds from my Deriv X real money account?",
"927364570": "<0>Setting > Proof of address</0>",
"927830157": "User-friendly platforms with powerful chart widgets",
"928423300": "Most Innovative Broker, UF Awards 2023",
"929514030": "Enjoy trading asset prices derived from simulated markets.",
"929553858": "They ask you to download file attachments or remote access software (such as Teamviewer) to give them remote control of your device. For example, an impersonator may take control and install ransomware on your device and then demand a ransom. If the ransom isn’t paid, you may lose access to your device permanently.",
"930211164": "24/7 trading",
"931079591": "Up to USD 7",
"931595451": "Indices simulating real-world markets with 24/7 trading.",
"931896911": "Go to the <0>History</0> section.",
"932190946": "Daily deposit limits",
"934685291": "This helps you to set the stop loss and take profit level when the asset price moves in Up or Down direction.",
"935645176": "Additional terms and restrictions for Deriv clients in certain countries",
"937831119": "Last name*",
"938314093": "ARRK.US",
"938692453": "Swaps charged upon rollover for short (sell) positions.",
"938792466": "Customise your contracts to suit your style and risk appetite using innovative features like stop loss, take profit, and deal cancellation.",
"941356208": "Create a Deriv real money account",
"941387945": "Quick account sign-up",
"941978699": "5 - 2,500",
"942579238": "Only Ups/Only Downs contracts allow you to make market predictions speculating the direction of an underlying asset's price movements.",
"943520915": "If you trade an Even/Odd contract, you predict whether the last digit will be an even or odd number.",
"943716510": "Introduction to cryptocurrencies",
"946654704": "Client trades with a stake of USD 10.",
"947541466": "Trade 24/7 on our proprietary synthetics that simulate real-world market movements. These indices are unaffected by regular<br /> market hours, global events, or market and liquidity risks. Manage your exposure by selecting the volatility level to suit your risk appetite.",
"947758334": "City is required",
"948545552": "150+",
"949495445": "even/odd option trade",
"949617971": "Your Deriv X password is linked to the standalone Deriv X trading platform while your Deriv password gives you access to platforms hosted on our website such as DTrader and DBot.",
"949859957": "Submit",
"953170529": "Enjoy zero commission trading on all assets.",
"953539018": "Head of Client Funding Facilities",
"954358534": "Rating a great experience lets you show your appreciation towards your trade partners. They’ll be encouraged to maintain their excellent standards upon receiving your positive ratings. Your ratings and recommendations will also help other Deriv P2P users find reliable trade partners.",
"955451911": "Take advantage of high leverage and tight spreads on Deriv’s CFD trading platforms.",
"957496593": "We got you covered",
"958430760": "In/Out",
"958956881": "A chart illustrating a losing Low Ticks trade type contract",
"959971586": "We'll email you instructions to reset your password.",