From 26c8656ee3003fbdc5196cc67c0b0edf26026109 Mon Sep 17 00:00:00 2001 From: hirad-deriv Date: Fri, 3 May 2024 15:52:44 +0800 Subject: [PATCH 01/22] chore: fixed the issue of wrong shown balance (#14956) --- packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx b/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx index 9a4bc5816558..3d060cf4443b 100644 --- a/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx +++ b/packages/cfd/src/Containers/ctrader-derivx-trade-modal.tsx @@ -216,7 +216,11 @@ const CTraderDerivXTradeModal = ({ weight='bold' > Date: Fri, 3 May 2024 16:28:34 +0800 Subject: [PATCH 02/22] [WALL] Password design change wallets (#14487) * chore: removed responsive root * chore: reverted old changes * chore: backup * chore: sync with master * chore: sync with master * chore: add lock to ensure password reset email is sent once * feat: refactored resend email content * chore: removed unrelated changes * chore: removed unrelated changes to dropdown * chore: use quill icons for new svg --- .../Base/ModalWrapper/ModalWrapper.scss | 6 + .../Base/ModalWrapper/ModalWrapper.tsx | 9 +- .../SentEmailContent/SentEmailContent.scss | 14 ++- .../SentEmailContent/SentEmailContent.tsx | 114 +++++++++++++----- .../WalletsResetMT5Password.tsx | 62 +++++++--- .../MT5PasswordModal/MT5PasswordModal.tsx | 4 +- .../ChangePassword/ChangePassword.scss | 2 +- .../TradingPlatformChangePasswordScreens.tsx | 2 +- 8 files changed, 162 insertions(+), 51 deletions(-) diff --git a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss index 420aa0ef0684..ff9a99396322 100644 --- a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss +++ b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.scss @@ -18,4 +18,10 @@ right: 2rem; cursor: pointer; } + + &--fullscreen { + height: calc(var(--wallets-vh, 1vh) * 100); + width: 100vw; + border-radius: 0; + } } diff --git a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx index ea4b9763e760..ce9b8a5b930e 100644 --- a/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx +++ b/packages/wallets/src/components/Base/ModalWrapper/ModalWrapper.tsx @@ -1,4 +1,5 @@ import React, { FC } from 'react'; +import classNames from 'classnames'; import { useEventListener } from 'usehooks-ts'; import CloseIcon from '../../../public/images/ic-close-dark.svg'; import { useModal } from '../../ModalProvider'; @@ -6,12 +7,14 @@ import './ModalWrapper.scss'; type TProps = { hideCloseButton?: boolean; + isFullscreen?: boolean; shouldPreventCloseOnEscape?: boolean; }; const ModalWrapper: FC> = ({ children, hideCloseButton = false, + isFullscreen = false, shouldPreventCloseOnEscape = false, }) => { const { hide } = useModal(); @@ -23,7 +26,11 @@ const ModalWrapper: FC> = ({ }); return ( -
+
{!hideCloseButton && } {children}
diff --git a/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss b/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss index 89bd939649cd..98b081c1fd6b 100644 --- a/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss +++ b/packages/wallets/src/components/SentEmailContent/SentEmailContent.scss @@ -1,6 +1,6 @@ .wallets-sent-email-content { display: inline-flex; - padding: 3.2rem; + padding: 6rem 3.2rem 3.2rem; flex-direction: column; justify-content: center; align-items: center; @@ -11,6 +11,8 @@ @include mobile { width: 100%; + justify-content: flex-start; + border-radius: 0; } &__resend { @@ -25,4 +27,14 @@ grid-gap: 0.8rem; } } + + &__reasons { + display: flex; + align-items: center; + gap: 0.8rem; + + & svg { + flex-shrink: 0; + } + } } diff --git a/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx b/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx index 4c696d769dab..e38cf2d798e7 100644 --- a/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx +++ b/packages/wallets/src/components/SentEmailContent/SentEmailContent.tsx @@ -2,22 +2,63 @@ import React, { FC, Fragment, useEffect, useState } from 'react'; import { Trans } from 'react-i18next'; import { useCountdown } from 'usehooks-ts'; import { useActiveWalletAccount, useSettings, useVerifyEmail } from '@deriv/api-v2'; -import { DerivLightIcEmailSentIcon } from '@deriv/quill-icons'; +import { + DerivLightIcEmailSentIcon, + DerivLightIcEmailSentPasskeyIcon, + DerivLightIcFirewallEmailPasskeyIcon, + DerivLightIcSpamEmailPasskeyIcon, + DerivLightIcTypoEmailPasskeyIcon, + DerivLightIcWrongEmailPasskeyIcon, +} from '@deriv/quill-icons'; import { PlatformDetails } from '../../features/cfd/constants'; import useDevice from '../../hooks/useDevice'; import { TPlatforms } from '../../types'; import { platformPasswordResetRedirectLink } from '../../utils/cfd'; -import { WalletButton } from '../Base'; +import { WalletButton, WalletText } from '../Base'; import { WalletsActionScreen } from '../WalletsActionScreen'; import './SentEmailContent.scss'; type SentEmailContentProps = { description?: string; + isChangePassword?: boolean; // NOTE: This prop is ONLY used for rendering different email icons between either Change Password/Forgot password email modal isInvestorPassword?: boolean; platform?: TPlatforms.All; }; -const SentEmailContent: FC = ({ description, isInvestorPassword = false, platform }) => { +// NOTE: key field is not from BE or requirements, its only used for key prop +const emailReasons = [ + { + content: , + icon: , + key: 'EmailInSpamFolder', + }, + { + content: ( + + ), + icon: , + key: 'AnotherEmailAddress', + }, + { + content: , + icon: , + key: 'TypoEmailAddress', + }, + { + content: ( + + ), + icon: , + key: 'UnableToDeliverEmailAddress', + }, +]; + +const SentEmailContent: FC = ({ + description, + isChangePassword = false, + isInvestorPassword = false, + platform, +}) => { const [shouldShowResendEmailReasons, setShouldShowResendEmailReasons] = useState(false); const [hasCountdownStarted, setHasCountdownStarted] = useState(false); const { data } = useSettings(); @@ -28,11 +69,31 @@ const SentEmailContent: FC = ({ description, isInvestorPa const titleSize = 'md'; const descriptionSize = 'sm'; const emailLinkSize = isMobile ? 'lg' : 'md'; + const didNotReceiveEmailSize = isMobile ? 'md' : 'sm'; + const emailReasonsSize = isMobile ? 'sm' : 'xs'; const [count, { resetCountdown, startCountdown }] = useCountdown({ countStart: 60, intervalMs: 1000, }); + const EmailSentIcon = + isChangePassword || isInvestorPassword ? DerivLightIcEmailSentIcon : DerivLightIcEmailSentPasskeyIcon; + + const resendEmail = () => { + if (data?.email) { + verifyEmail({ + type: platform === mt5Platform ? mt5ResetType : 'trading_platform_dxtrade_password_reset', + url_parameters: { + redirect_to: platformPasswordResetRedirectLink(platform ?? mt5Platform, activeWallet?.is_virtual), + }, + verify_email: data?.email, + }); + resetCountdown(); + startCountdown(); + setHasCountdownStarted(true); + } + }; + useEffect(() => { if (count === 0) setHasCountdownStarted(false); }, [count]); @@ -48,17 +109,19 @@ const SentEmailContent: FC = ({ description, isInvestorPa } + icon={} renderButtons={() => - shouldShowResendEmailReasons && isInvestorPassword ? null : ( + shouldShowResendEmailReasons && (isInvestorPassword || isChangePassword) ? null : ( { setShouldShowResendEmailReasons(true); }} size={emailLinkSize} - variant='contained' + variant='ghost' > - + + + ) } @@ -67,7 +130,7 @@ const SentEmailContent: FC = ({ description, isInvestorPa /> {shouldShowResendEmailReasons && ( - {isInvestorPassword && ( + {(isInvestorPassword || isChangePassword) && (
= ({ description, isInvestorPa />
)} + {!isInvestorPassword && + !isChangePassword && + emailReasons.map(emailReason => { + return ( +
+ {emailReason.icon} + + {emailReason.content} + +
+ ); + })} { - if (data?.email) { - verifyEmail({ - type: - platform === mt5Platform - ? mt5ResetType - : 'trading_platform_dxtrade_password_reset', - url_parameters: { - redirect_to: platformPasswordResetRedirectLink( - platform ?? mt5Platform, - activeWallet?.is_virtual - ), - }, - verify_email: data?.email, - }); - resetCountdown(); - startCountdown(); - setHasCountdownStarted(true); - } - }} + onClick={resendEmail} + variant='contained' > {hasCountdownStarted ? `Resend email in ${count} seconds` : 'Resend email'} diff --git a/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx b/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx index 320d43d355dd..ad1d236db5c6 100644 --- a/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx +++ b/packages/wallets/src/components/WalletsResetMT5Password/WalletsResetMT5Password.tsx @@ -5,7 +5,7 @@ import { CFD_PLATFORMS, PlatformDetails } from '../../features/cfd/constants'; import useDevice from '../../hooks/useDevice'; import { TPlatforms } from '../../types'; import { validPassword, validPasswordMT5 } from '../../utils/password-validation'; -import { ModalWrapper, WalletButton, WalletPasswordFieldLazy, WalletText } from '../Base'; +import { ModalStepWrapper, WalletButton, WalletPasswordFieldLazy, WalletText } from '../Base'; import { useModal } from '../ModalProvider'; import { WalletError } from '../WalletError'; import WalletSuccessResetMT5Password from './WalletSuccessResetMT5Password'; @@ -49,10 +49,30 @@ const WalletsResetMT5Password = ({ const { hide, show } = useModal(); const [password, setPassword] = useState(''); - const { isMobile } = useDevice(); + const { isDesktop, isMobile } = useDevice(); const isMT5 = platform === CFD_PLATFORMS.MT5; + const renderFooter = isMobile + ? () => { + return ( +
+ hide()} variant='outlined'> + + + + + +
+ ); + } + : undefined; + const handleSubmit = () => { if (isInvestorPassword && isMT5) { const accountId = localStorage.getItem('trading_platform_investor_password_reset_account_id') ?? ''; @@ -106,7 +126,12 @@ const WalletsResetMT5Password = ({ }, [platform, title, actionParams, isChangeInvestorPasswordSuccess, isChangeInvestorPasswordError]); return ( - +
{isInvestorPassword ? `Reset ${title} investor password` : `Create a new ${title} password`} @@ -121,21 +146,24 @@ const WalletsResetMT5Password = ({ password={password} /> {modalDescription[platform]} -
- hide()} variant='outlined'> - - - - - -
+ {isDesktop && ( +
+ hide()} size='lg' variant='outlined'> + + + + + +
+ )}
-
+ ); }; diff --git a/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx b/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx index f04b116277a1..6335088785af 100644 --- a/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx +++ b/packages/wallets/src/features/cfd/modals/MT5PasswordModal/MT5PasswordModal.tsx @@ -278,9 +278,9 @@ const MT5PasswordModal: React.FC = ({ marketType, platform }) => { if (emailVerificationStatus === 'success') { return ( - + - + ); } diff --git a/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss b/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss index 7552fe04810f..6724455f2f20 100644 --- a/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss +++ b/packages/wallets/src/features/cfd/screens/ChangePassword/ChangePassword.scss @@ -47,7 +47,7 @@ &__sent-email-wrapper { .wallets-sent-email-content { - padding: unset; + padding: 0 6rem; margin-top: 3.2rem; width: 100%; diff --git a/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx b/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx index 8b00b11e3d49..fe8875ace4ad 100644 --- a/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx +++ b/packages/wallets/src/features/cfd/screens/ChangePassword/TradingPlatformChangePasswordScreens.tsx @@ -83,7 +83,7 @@ const TradingPlatformChangePasswordScreens: FC - +
); From 60e8846327e61ef53faf5e3ba0187613c94a71d4 Mon Sep 17 00:00:00 2001 From: DerivFE <80095553+DerivFE@users.noreply.github.com> Date: Fri, 3 May 2024 16:59:25 +0800 Subject: [PATCH 03/22] chore: update @deriv/deriv-charts to 2.1.14 (#14963) Co-authored-by: balakrishna-deriv --- package-lock.json | 8 ++++---- packages/bot-web-ui/package.json | 2 +- packages/core/package.json | 2 +- packages/trader/package.json | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 12504c57cd0f..a78d8bd06a42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,7 +19,7 @@ "@deriv-com/utils": "^0.0.20", "@deriv/api-types": "^1.0.172", "@deriv/deriv-api": "^1.0.15", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/js-interpreter": "^3.0.0", "@deriv/quill-design": "^1.3.2", "@deriv/quill-icons": "^1.22.4", @@ -2993,9 +2993,9 @@ } }, "node_modules/@deriv/deriv-charts": { - "version": "2.1.13", - "resolved": "https://registry.npmjs.org/@deriv/deriv-charts/-/deriv-charts-2.1.13.tgz", - "integrity": "sha512-TFTl7WxW+6Drms3W00mBQU81X/6nNeNns9+bdOgqD8dGNuGUHvF6v56Lp/F/JeJ8ppm0yT/kMdLbPrxg5BVeKQ==", + "version": "2.1.14", + "resolved": "https://registry.npmjs.org/@deriv/deriv-charts/-/deriv-charts-2.1.14.tgz", + "integrity": "sha512-ECEJ7C0+Bnq4ZCnGGeS6kWke2Jse6IzKT+sGJIGDguwW8zFcW52Q5iF8UouQizP6Ekdrsh8sClz60zn01iuxnQ==", "dependencies": { "@types/lodash.set": "^4.3.7", "@welldone-software/why-did-you-render": "^3.3.8", diff --git a/packages/bot-web-ui/package.json b/packages/bot-web-ui/package.json index acde5bbbd54a..26c845a0f6ca 100644 --- a/packages/bot-web-ui/package.json +++ b/packages/bot-web-ui/package.json @@ -75,7 +75,7 @@ "@deriv/api-types": "^1.0.172", "@deriv/bot-skeleton": "^1.0.0", "@deriv/components": "^1.0.0", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/shared": "^1.0.0", "@deriv/stores": "^1.0.0", "@deriv/translations": "^1.0.0", diff --git a/packages/core/package.json b/packages/core/package.json index 10a54f84b93d..0500752b299a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -106,7 +106,7 @@ "@deriv/cfd": "^1.0.0", "@deriv/components": "^1.0.0", "@deriv/deriv-api": "^1.0.15", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/hooks": "^1.0.0", "@deriv/p2p": "^0.7.3", "@deriv/p2p-v2": "^1.0.0", diff --git a/packages/trader/package.json b/packages/trader/package.json index 84522bbb78d5..c7621976eb8b 100644 --- a/packages/trader/package.json +++ b/packages/trader/package.json @@ -92,7 +92,7 @@ "@deriv/api-types": "^1.0.172", "@deriv/components": "^1.0.0", "@deriv/deriv-api": "^1.0.15", - "@deriv/deriv-charts": "^2.1.13", + "@deriv/deriv-charts": "^2.1.14", "@deriv/hooks": "^1.0.0", "@deriv/reports": "^1.0.0", "@deriv/shared": "^1.0.0", From 8171b2e5ab01f987cc273715d8015c3cbb9a41a6 Mon Sep 17 00:00:00 2001 From: Maryia <103177211+maryia-deriv@users.noreply.github.com> Date: Fri, 3 May 2024 12:04:10 +0300 Subject: [PATCH 04/22] [DTRA] Maryia/DTRA-1199/remove notification about new trade chart (#14868) * Revert "[DTRA] henry/dtra-512/fix: add flutter chart notification (#12949)" This reverts commit 9a4cbb3881087c768e552e88b06dfaa444403e12. * revert: style change in notifications-dialog.scss --- .../Containers/app-notification-messages.jsx | 1 - .../core/src/Stores/notification-store.js | 19 +------------------ 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/packages/core/src/App/Containers/app-notification-messages.jsx b/packages/core/src/App/Containers/app-notification-messages.jsx index 298f4e22b862..54e48c95bd6f 100644 --- a/packages/core/src/App/Containers/app-notification-messages.jsx +++ b/packages/core/src/App/Containers/app-notification-messages.jsx @@ -96,7 +96,6 @@ const AppNotificationMessages = observer( 'deriv_go', 'document_needs_action', 'dp2p', - 'flutter_chart', 'contract_sold', 'has_changed_two_fa', 'identity', diff --git a/packages/core/src/Stores/notification-store.js b/packages/core/src/Stores/notification-store.js index 86d7dad42490..4e2a2a6cec4e 100644 --- a/packages/core/src/Stores/notification-store.js +++ b/packages/core/src/Stores/notification-store.js @@ -338,9 +338,6 @@ export default class NotificationStore extends BaseStore { const has_trustpilot = LocalStore.getObject('notification_messages')[loginid]?.includes( this.client_notifications.trustpilot?.key ); - const has_flutter_chart_notification = LocalStore.getObject('notification_messages')[loginid]?.includes( - this.client_notifications.flutter_chart?.key - ); let has_missing_required_field; @@ -371,9 +368,7 @@ export default class NotificationStore extends BaseStore { } = getStatusValidations(status || []); this.handlePOAAddressMismatchNotifications(); - if (!has_flutter_chart_notification) { - this.addNotificationMessage(this.client_notifications.flutter_chart); - } + if (status?.includes('mt5_additional_kyc_required')) this.addNotificationMessage(this.client_notifications.additional_kyc_info); @@ -930,18 +925,6 @@ export default class NotificationStore extends BaseStore { img_alt: 'Deriv P2P', type: 'news', }, - flutter_chart: { - key: 'flutter_chart', - header: localize('Trade Smarter with Deriv Trader Chart v2.0:'), - message: localize('Get real-time data, advanced charting tools, and customisable views.'), - action: { - onClick: () => { - window.open('https://blog.deriv.com/posts/new-charts-on-the-deriv-trader-app/', '_blank'); - }, - text: localize('Learn more'), - }, - type: 'announce', - }, identity: { key: 'identity', header: localize('Let’s verify your ID'), From 4f8f66dc681946f413cf58f2b9a0e0f0aa098305 Mon Sep 17 00:00:00 2001 From: ameerul-deriv <103412909+ameerul-deriv@users.noreply.github.com> Date: Fri, 3 May 2024 19:00:17 +0800 Subject: [PATCH 05/22] [P2PS] / Ameerul / P2PS-2642 No Confirm popup is shown when signed in. 'a.showModal is not a function' console error appears (#14719) * chore: added undefined check for showModal * chore: add ? for showModal in app.jsx * chore: check if showModal is a function * chore: moved order confirm handler to orders file * chore: removed useState and general_store.showModal * chore: check order_store.verification_code and location from useLocation * chore: set verification code in app, moved show modal function in reaction * fix: failing orders.spec.js test case, deleted duplicate test case * chore: passed p2p_confirm_order directly to verify email * fix: verify email modal keeps appearing * fix: confirm button is not clickable, user cant confirm order --- .../modals/buy-sell-modal/buy-sell-modal.tsx | 11 +--- .../email-link-verified-modal.spec.tsx | 4 ++ .../email-link-verified-modal.tsx | 13 +++- packages/p2p/src/pages/app.jsx | 8 +-- .../p2p/src/pages/buy-sell/buy-sell-form.jsx | 4 +- .../src/pages/orders/__test__/orders.spec.js | 61 ------------------- .../src/pages/orders/__tests__/orders.spec.js | 19 ++++++ packages/p2p/src/pages/orders/orders.jsx | 14 +++++ packages/p2p/src/stores/buy-sell-store.js | 7 +++ packages/p2p/src/stores/order-store.js | 11 ++++ 10 files changed, 75 insertions(+), 77 deletions(-) delete mode 100644 packages/p2p/src/pages/orders/__test__/orders.spec.js diff --git a/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx b/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx index 508bea759abf..590a67d391ac 100644 --- a/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx +++ b/packages/p2p/src/components/modal-manager/modals/buy-sell-modal/buy-sell-modal.tsx @@ -18,7 +18,7 @@ import BuySellModalError from './buy-sell-modal-error'; const BuySellModal = () => { const { hideModal, is_modal_open, showModal } = useModalManagerContext(); const { buy_sell_store, general_store, my_profile_store, order_store } = useStores(); - const { is_buy_advert, selected_ad_state } = buy_sell_store; + const { is_buy_advert, selected_ad_state, submitForm } = buy_sell_store; const { account_currency } = selected_ad_state; const { balance } = general_store; const { should_show_add_payment_method_form } = my_profile_store; @@ -29,12 +29,9 @@ const BuySellModal = () => { const [error_message, setErrorMessage] = React.useState(''); const [is_submit_disabled, setIsSubmitDisabled] = React.useState(false); const [is_account_balance_low, setIsAccountBalanceLow] = React.useState(false); - const submitForm = React.useRef<(() => void) | null>(null); const show_low_balance_message = !is_buy_advert && is_account_balance_low; - const setSubmitForm = (submitFormFn: () => void) => (submitForm.current = submitFormFn); - const onCancel = () => { if (should_show_add_payment_method_form) { if (general_store.is_form_modified) { @@ -158,13 +155,12 @@ const BuySellModal = () => { handleConfirm={onConfirmClick} setIsSubmitDisabled={setIsSubmitDisabled} setErrorMessage={setErrorMessage} - setSubmitForm={setSubmitForm} /> )} @@ -204,7 +200,6 @@ const BuySellModal = () => { handleConfirm={onConfirmClick} setIsSubmitDisabled={setIsSubmitDisabled} setErrorMessage={setErrorMessage} - setSubmitForm={setSubmitForm} /> )} @@ -214,7 +209,7 @@ const BuySellModal = () => { )} diff --git a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx index 815eb6cc0f24..b526acc22f62 100644 --- a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx +++ b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/__tests__/email-link-verified-modal.spec.tsx @@ -27,6 +27,8 @@ const mock_store: DeepPartial> = { rate: 1.2, }, confirmOrder: jest.fn(), + setActionParam: jest.fn(), + setVerificationCode: jest.fn(), }, }; @@ -64,5 +66,7 @@ describe('', () => { userEvent.click(confirm_button); expect(mock_modal_manager.hideModal).toHaveBeenCalledWith({ should_hide_all_modals: true }); expect(mock_store.order_store.confirmOrder).toHaveBeenCalledWith(true); + expect(mock_store.order_store.setVerificationCode).toHaveBeenCalledWith(''); + expect(mock_store.order_store.setActionParam).toHaveBeenCalledWith(null); }); }); diff --git a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx index 6bc4a1e20300..555cf20e74cc 100644 --- a/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx +++ b/packages/p2p/src/components/modal-manager/modals/email-link-verified-modal/email-link-verified-modal.tsx @@ -19,7 +19,16 @@ const EmailLinkVerifiedModal = () => { return ( {order_store.order_information && ( - <>} toggleModal={hideModal} width='440px'> + <>} + toggleModal={() => { + order_store.setVerificationCode(''); + order_store.setActionParam(null); + hideModal(); + }} + width='440px' + > { onClick={() => { hideModal({ should_hide_all_modals: true }); order_store.confirmOrder(is_buy_order_for_user); + order_store.setVerificationCode(''); + order_store.setActionParam(null); }} > diff --git a/packages/p2p/src/pages/app.jsx b/packages/p2p/src/pages/app.jsx index 7d3a8eb39fb1..bef63075b130 100644 --- a/packages/p2p/src/pages/app.jsx +++ b/packages/p2p/src/pages/app.jsx @@ -160,6 +160,7 @@ const App = () => { let passed_order_id; setActionParam(url_params.get('action')); + if (is_mobile) { setCodeParam(localStorage.getItem('verification_code.p2p_order_confirm')); } else if (!code_param) { @@ -258,14 +259,11 @@ const App = () => { }, [balance]); React.useEffect(() => { - if (code_param) { + if (action_param && code_param) { // We need an extra state since we delete the code from the query params. // Do not remove. order_store.setVerificationCode(code_param); - } - if (action_param && code_param) { - general_store.showModal({ key: 'LoadingModal', props: {} }); - order_store.verifyEmailVerificationCode(action_param, code_param); + order_store.setActionParam(action_param); } // eslint-disable-next-line react-hooks/exhaustive-deps diff --git a/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx b/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx index 71bebb5dac26..cd1eec218962 100755 --- a/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx +++ b/packages/p2p/src/pages/buy-sell/buy-sell-form.jsx @@ -179,8 +179,8 @@ const BuySellForm = props => { ]); React.useEffect(() => { - buy_sell_store.form_props.setSubmitForm(submitForm); - }, [submitForm, buy_sell_store.form_props]); + buy_sell_store.setSubmitForm(submitForm); + }, [submitForm]); return ( diff --git a/packages/p2p/src/pages/orders/__test__/orders.spec.js b/packages/p2p/src/pages/orders/__test__/orders.spec.js deleted file mode 100644 index f6fa3044e29d..000000000000 --- a/packages/p2p/src/pages/orders/__test__/orders.spec.js +++ /dev/null @@ -1,61 +0,0 @@ -import React from 'react'; -import { render, screen } from '@testing-library/react'; -import { useStores } from 'Stores'; -import { useSafeState } from '@deriv/components'; -import Orders from '../orders.jsx'; - -const mock_store = { - general_store: { - active_index: 2, - setActiveIndex: jest.fn(), - }, - order_store: { - order_id: null, - order_information: '', - orders: [], - onOrderIdUpdate: jest.fn(), - onOrdersUpdate: jest.fn(), - onUnmount: jest.fn(), - setForceRerenderOrders: jest.fn(), - }, -}; - -jest.mock('Stores', () => ({ - ...jest.requireActual('Stores'), - useStores: jest.fn(() => mock_store), -})); - -jest.mock('@deriv/components', () => ({ - ...jest.requireActual('@deriv/components'), - useSafeState: jest.fn().mockReturnValue([{}, jest.fn()]), -})); - -jest.mock('Pages/orders/order-table/order-table.jsx', () => jest.fn(() =>
Order Table
)); - -jest.mock('Components/order-details/order-details.jsx', () => jest.fn(() =>
Order Details
)); - -describe('', () => { - it('should invoke setup methods on component load', () => { - const { order_store } = useStores(); - const [, forceRerender] = useSafeState(); - render(); - - expect(order_store.setForceRerenderOrders).toHaveBeenCalledWith(forceRerender); - expect(order_store.onOrderIdUpdate).toHaveBeenCalled(); - expect(order_store.onOrdersUpdate).toHaveBeenCalled(); - }); - - it('should list all orders via Order table component', () => { - render(); - - expect(screen.getByText('Order Table')).toBeInTheDocument(); - }); - - it('should display the order details for a particular ', () => { - mock_store.order_store.order_information = 'test'; - - render(); - - expect(screen.getByText('Order Details')).toBeInTheDocument(); - }); -}); diff --git a/packages/p2p/src/pages/orders/__tests__/orders.spec.js b/packages/p2p/src/pages/orders/__tests__/orders.spec.js index f6fa3044e29d..88925dd179d3 100644 --- a/packages/p2p/src/pages/orders/__tests__/orders.spec.js +++ b/packages/p2p/src/pages/orders/__tests__/orders.spec.js @@ -10,16 +10,23 @@ const mock_store = { setActiveIndex: jest.fn(), }, order_store: { + action_param: 'p2p_order_confirm', order_id: null, order_information: '', orders: [], + verification_code: '123456', onOrderIdUpdate: jest.fn(), onOrdersUpdate: jest.fn(), onUnmount: jest.fn(), setForceRerenderOrders: jest.fn(), + verifyEmailVerificationCode: jest.fn(), }, }; +const mock_modal_manager = { + showModal: jest.fn(), +}; + jest.mock('Stores', () => ({ ...jest.requireActual('Stores'), useStores: jest.fn(() => mock_store), @@ -30,6 +37,11 @@ jest.mock('@deriv/components', () => ({ useSafeState: jest.fn().mockReturnValue([{}, jest.fn()]), })); +jest.mock('Components/modal-manager/modal-manager-context', () => ({ + ...jest.requireActual('Components/modal-manager/modal-manager-context'), + useModalManagerContext: jest.fn(() => mock_modal_manager), +})); + jest.mock('Pages/orders/order-table/order-table.jsx', () => jest.fn(() =>
Order Table
)); jest.mock('Components/order-details/order-details.jsx', () => jest.fn(() =>
Order Details
)); @@ -58,4 +70,11 @@ describe('', () => { expect(screen.getByText('Order Details')).toBeInTheDocument(); }); + + it('should call showModal and verifyEmailVerification when verification code and action_param is present', () => { + render(); + + expect(mock_modal_manager.showModal).toHaveBeenCalledWith({ key: 'LoadingModal', props: {} }); + expect(mock_store.order_store.verifyEmailVerificationCode).toHaveBeenCalledWith('p2p_order_confirm', '123456'); + }); }); diff --git a/packages/p2p/src/pages/orders/orders.jsx b/packages/p2p/src/pages/orders/orders.jsx index 0fbbef6d0c84..2e6477ec7f58 100644 --- a/packages/p2p/src/pages/orders/orders.jsx +++ b/packages/p2p/src/pages/orders/orders.jsx @@ -3,11 +3,13 @@ import { useSafeState } from '@deriv/components'; import { reaction } from 'mobx'; import { observer } from '@deriv/stores'; import OrderDetails from 'Components/order-details/order-details.jsx'; +import { useModalManagerContext } from 'Components/modal-manager/modal-manager-context'; import { useStores } from 'Stores'; import OrderTable from './order-table/order-table.jsx'; const Orders = observer(() => { const { order_store, general_store } = useStores(); + const { showModal } = useModalManagerContext(); // This is a bit hacky, but it allows us to force re-render this // component when the timer expired. This is created due to BE @@ -32,9 +34,21 @@ const Orders = observer(() => { { fireImmediately: true } ); + const disposeOrderVerificationReaction = reaction( + () => order_store.verification_code, + () => { + if (order_store.action_param && order_store.verification_code) { + showModal({ key: 'LoadingModal', props: {} }); + order_store.verifyEmailVerificationCode(order_store.action_param, order_store.verification_code); + } + }, + { fireImmediately: true } + ); + return () => { disposeOrderIdReaction(); disposeOrdersUpdateReaction(); + disposeOrderVerificationReaction(); order_store.onUnmount(); }; diff --git a/packages/p2p/src/stores/buy-sell-store.js b/packages/p2p/src/stores/buy-sell-store.js index fd4c39e3086b..0e858c4cbb85 100644 --- a/packages/p2p/src/stores/buy-sell-store.js +++ b/packages/p2p/src/stores/buy-sell-store.js @@ -32,6 +32,7 @@ export default class BuySellStore extends BaseStore { show_advertiser_page = false; show_filter_payment_methods = false; sort_by = 'rate'; + submitForm = null; table_type = buy_sell.BUY; form_props = {}; is_create_order_subscribed = false; @@ -71,6 +72,7 @@ export default class BuySellStore extends BaseStore { show_advertiser_page: observable, show_filter_payment_methods: observable, sort_by: observable, + submitForm: observable, table_type: observable, form_props: observable, is_create_order_subscribed: observable, @@ -114,6 +116,7 @@ export default class BuySellStore extends BaseStore { setShowAdvertiserPage: action.bound, setShowFilterPaymentMethods: action.bound, setSortBy: action.bound, + setSubmitForm: action.bound, setTableType: action.bound, setSelectedAdvert: action.bound, showAdvertiserPage: action.bound, @@ -362,6 +365,10 @@ export default class BuySellStore extends BaseStore { this.sort_by = sort_by; } + setSubmitForm(submitForm) { + this.submitForm = submitForm; + } + setTableType(table_type) { this.table_type = table_type; } diff --git a/packages/p2p/src/stores/order-store.js b/packages/p2p/src/stores/order-store.js index 3c0d62e17d56..b2bfc03db1b9 100644 --- a/packages/p2p/src/stores/order-store.js +++ b/packages/p2p/src/stores/order-store.js @@ -8,6 +8,7 @@ import { api_error_codes } from '../constants/api-error-codes'; export default class OrderStore { constructor(root_store) { makeObservable(this, { + action_param: observable, active_order: observable, api_error_message: observable, date_from: observable, @@ -44,6 +45,7 @@ export default class OrderStore { onOrdersUpdate: action.bound, onPageReturn: action.bound, onUnmount: action.bound, + setActionParam: action.bound, setActiveOrder: action.bound, setDateTo: action.bound, setForceRerenderOrders: action.bound, @@ -83,6 +85,7 @@ export default class OrderStore { ); } + action_param = null; active_order = null; api_error_message = ''; date_from = null; @@ -168,6 +171,8 @@ export default class OrderStore { } localStorage.removeItem('verification_code.p2p_order_confirm'); + this.setVerificationCode(''); + this.setActionParam(null); } }); } @@ -527,6 +532,8 @@ export default class OrderStore { }, }); } + this.setVerificationCode(''); + this.setActionParam(null); } localStorage.removeItem('verification_code.p2p_order_confirm'); } @@ -534,6 +541,10 @@ export default class OrderStore { } } + setActionParam(action_param) { + this.action_param = action_param; + } + setApiErrorMessage(api_error_message) { this.api_error_message = api_error_message; } From 0d754302a48026d10d09b932239fcc14423b8740 Mon Sep 17 00:00:00 2001 From: Hasan Mobarak <126637868+hasan-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 10:28:17 +0800 Subject: [PATCH 06/22] [TRAH] Hasan/TRAH-2245/updated mt5 success modal content (#14807) * chore: updated mt5 success modal content * chore: updated mt5 success modal content * chore: updated mt5 success modal content * chore: resolved comment --- .../cfd/src/Containers/cfd-password-modal.tsx | 73 +++++++++---------- 1 file changed, 34 insertions(+), 39 deletions(-) diff --git a/packages/cfd/src/Containers/cfd-password-modal.tsx b/packages/cfd/src/Containers/cfd-password-modal.tsx index 245293125373..535580360954 100644 --- a/packages/cfd/src/Containers/cfd-password-modal.tsx +++ b/packages/cfd/src/Containers/cfd-password-modal.tsx @@ -151,12 +151,7 @@ const ReviewMessageForMT5 = ({ manual_status, }: TReviewMsgForMT5) => { if (is_selected_mt5_verified) { - return ( - ]} - /> - ); + return ; } else if ( jurisdiction_selected_shortcode === JURISDICTION.BVI || jurisdiction_selected_shortcode === JURISDICTION.VANUATU @@ -829,10 +824,6 @@ const CFDPasswordModal = observer(({ form_error, platform }: TCFDPasswordModalPr break; } - const jurisdiction_label = - jurisdiction_selected_shortcode && getFormattedJurisdictionCode(jurisdiction_selected_shortcode); - const mt5_platform_label = jurisdiction_selected_shortcode !== JURISDICTION.MALTA_INVEST ? 'Deriv MT5' : ''; - const accountTypes = () => { if (platform === CFD_PLATFORMS.DXTRADE || platform === CFD_PLATFORMS.CTRADER) { return ''; @@ -841,48 +832,52 @@ const CFDPasswordModal = observer(({ form_error, platform }: TCFDPasswordModalPr }; if (category === CATEGORY.REAL) { - let platformName = ''; - switch (platform) { - case CFD_PLATFORMS.MT5: - platformName = mt5_platform_label; - break; - default: - platformName = 'Deriv X'; - break; - } - return ( - ]} - /> {platform === CFD_PLATFORMS.DXTRADE || platform === CFD_PLATFORMS.CTRADER ? ( , - platform === CFD_PLATFORMS.DXTRADE &&
, +
, + platform === CFD_PLATFORMS.CTRADER &&
, + platform === CFD_PLATFORMS.DXTRADE &&
, ]} /> ) : ( - + + + + )}
); } + if (platform === CFD_PLATFORMS.MT5) { + return ( + + ); + } + return ( Date: Mon, 6 May 2024 10:31:28 +0800 Subject: [PATCH 07/22] fix: make sure exit spot is in included in contract audit and on chart (#14722) --- .../Stores/Helpers/chart-marker-helpers.js | 39 +++++++------------ packages/core/src/Stores/portfolio-store.js | 4 -- .../ContractDrawer/contract-drawer.tsx | 8 +--- 3 files changed, 15 insertions(+), 36 deletions(-) diff --git a/packages/core/src/Stores/Helpers/chart-marker-helpers.js b/packages/core/src/Stores/Helpers/chart-marker-helpers.js index d73de5456ec8..7787e787c186 100644 --- a/packages/core/src/Stores/Helpers/chart-marker-helpers.js +++ b/packages/core/src/Stores/Helpers/chart-marker-helpers.js @@ -6,10 +6,8 @@ import { isDesktop, isDigitContract, isMobile, - isMultiplierContract, isSmartTraderContract, isTicksContract, - isUserSold, isVanillaContract, } from '@deriv/shared'; @@ -95,7 +93,6 @@ export const createMarkerSpotEntry = contract_info => { export const createMarkerSpotExit = (contract_info, tick, idx) => { if (!contract_info.exit_tick_time) return false; - const is_user_sold = isUserSold(contract_info); const is_ticks_contract = isTicksContract(contract_info.contract_type); let spot_count, align_label; @@ -106,31 +103,23 @@ export const createMarkerSpotExit = (contract_info, tick, idx) => { const exit_tick = contract_info.exit_tick_display_value; - const should_show_spot_exit = !is_user_sold || isMultiplierContract(contract_info.contract_type); - const should_show_spot_exit_2 = is_ticks_contract && idx + 1 !== contract_info.selected_tick; - const should_show_profit_label = isVanillaContract(contract_info.contract_type) && isDesktop(); - const marker_spot_type = should_show_spot_exit - ? should_show_spot_exit_2 - ? MARKER_TYPES_CONFIG.SPOT_EXIT_2.type - : MARKER_TYPES_CONFIG.SPOT_EXIT.type - : MARKER_TYPES_CONFIG.SPOT_SELL.type; - - const component_props = should_show_spot_exit - ? { - spot_value: `${exit_tick}`, - spot_epoch: `${contract_info.exit_tick_time}`, - status: `${+contract_info.profit >= 0 ? 'won' : 'lost'}`, - align_label: should_show_profit_label ? 'middle' : align_label, - spot_count: should_show_spot_exit_2 ? contract_info.tick_stream.length : spot_count, - spot_profit: - (should_show_profit_label && - `${formatMoney(contract_info.currency, contract_info.profit, true)} ${contract_info.currency}`) || - '', - } - : {}; + const marker_spot_type = should_show_spot_exit_2 + ? MARKER_TYPES_CONFIG.SPOT_EXIT_2.type + : MARKER_TYPES_CONFIG.SPOT_EXIT.type; + + const component_props = { + spot_value: `${exit_tick}`, + spot_epoch: `${contract_info.exit_tick_time}`, + status: `${+contract_info.profit >= 0 ? 'won' : 'lost'}`, + align_label: should_show_profit_label ? 'middle' : align_label, + spot_count: should_show_spot_exit_2 ? contract_info.tick_stream.length : spot_count, + spot_profit: should_show_profit_label + ? `${formatMoney(contract_info.currency, contract_info.profit, true)} ${contract_info.currency}` + : '', + }; return createMarkerConfig(marker_spot_type, +contract_info.exit_tick_time, +exit_tick, component_props); }; diff --git a/packages/core/src/Stores/portfolio-store.js b/packages/core/src/Stores/portfolio-store.js index d31f385cb029..65dd1eadb4e3 100644 --- a/packages/core/src/Stores/portfolio-store.js +++ b/packages/core/src/Stores/portfolio-store.js @@ -5,7 +5,6 @@ import { isAccumulatorContract, isEmptyObject, isEnded, - isUserSold, isValidToSell, isMultiplierContract, getCurrentTick, @@ -407,9 +406,6 @@ export default class PortfolioStore extends BaseStore { this.positions[i].contract_info.entry_spot = this.positions[i].entry_spot; } - // remove exit_spot for manually sold contracts - if (isUserSold(contract_response)) this.positions[i].exit_spot = '-'; - this.positions[i].is_loading = false; if ( diff --git a/packages/trader/src/App/Components/Elements/ContractDrawer/contract-drawer.tsx b/packages/trader/src/App/Components/Elements/ContractDrawer/contract-drawer.tsx index f6fd6536f66e..7c618d4ce908 100644 --- a/packages/trader/src/App/Components/Elements/ContractDrawer/contract-drawer.tsx +++ b/packages/trader/src/App/Components/Elements/ContractDrawer/contract-drawer.tsx @@ -4,7 +4,6 @@ import { RouteComponentProps, withRouter } from 'react-router'; import { CSSTransition } from 'react-transition-group'; import { DesktopWrapper, MobileWrapper, Div100vhContainer } from '@deriv/components'; import { - isUserSold, isMobile, isEmptyObject, getDurationPeriod, @@ -68,11 +67,6 @@ const ContractDrawer = observer( const contract_drawer_card_ref = React.useRef(null); const [should_show_contract_audit, setShouldShowContractAudit] = React.useState(false); - const exit_spot = - isUserSold(contract_info) && !is_accumulator && !is_multiplier && !is_turbos - ? '-' - : exit_tick_display_value; - const contract_audit = ( Date: Mon, 6 May 2024 05:31:43 +0300 Subject: [PATCH 08/22] Maryia/DTRA-1230/fix: prevent DTrader trade params from showing up in other pages URLs (#14945) * fix: prevent DTrader trade params from showing in other pages URLs * test: rename test case title --- .../__tests__/trade-url-params-config.spec.ts | 19 ++++++++++++++----- .../utils/contract/trade-url-params-config.ts | 3 ++- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/packages/shared/src/utils/contract/__tests__/trade-url-params-config.spec.ts b/packages/shared/src/utils/contract/__tests__/trade-url-params-config.spec.ts index d4c57d5774b4..870c98345cea 100644 --- a/packages/shared/src/utils/contract/__tests__/trade-url-params-config.spec.ts +++ b/packages/shared/src/utils/contract/__tests__/trade-url-params-config.spec.ts @@ -1,6 +1,7 @@ import { ActiveSymbols } from '@deriv/api-types'; import { getTradeURLParams, setTradeURLParams } from '../trade-url-params-config'; import { TRADE_TYPES } from '../contract'; +import { routes } from '../../routes'; const areaChartType = { text: 'area', value: 'line' }; const oneTickInterval = '1t'; @@ -122,37 +123,45 @@ describe('setTradeURLParams', () => { jest.clearAllMocks(); }); - it('should set interval query param into URL based on the received granularity value', async () => { + it('should set interval query param into URL based on the received granularity value', () => { const spyHistoryReplaceState = jest.spyOn(window.history, 'replaceState'); setTradeURLParams({ granularity: 0, }); expect(spyHistoryReplaceState).toBeCalledWith({}, document.title, `/?interval=${oneTickInterval}`); }); - it('should set chart_type query param into URL based on the received chart_type value', async () => { + it('should set chart_type query param into URL based on the received chart_type value', () => { const spyHistoryReplaceState = jest.spyOn(window.history, 'replaceState'); setTradeURLParams({ chartType: areaChartType.value, }); expect(spyHistoryReplaceState).toBeCalledWith({}, document.title, `/?chart_type=${areaChartType.text}`); }); - it('should set symbol query param into URL based on the received symbol value', async () => { + it('should set symbol query param into URL based on the received symbol value', () => { const spyHistoryReplaceState = jest.spyOn(window.history, 'replaceState'); setTradeURLParams({ symbol, }); expect(spyHistoryReplaceState).toBeCalledWith({}, document.title, `/?symbol=${symbol}`); }); - it('should set trade_type query param into URL based on the received contract_type value', async () => { + it('should set trade_type query param into URL based on the received contract_type value', () => { const spyHistoryReplaceState = jest.spyOn(window.history, 'replaceState'); setTradeURLParams({ contractType: TRADE_TYPES.ACCUMULATOR, }); expect(spyHistoryReplaceState).toBeCalledWith({}, document.title, `/?trade_type=${TRADE_TYPES.ACCUMULATOR}`); }); - it('should not set any query params into URL when called with empty object', async () => { + it('should not set any query params into URL when called with empty object', () => { const spyHistoryReplaceState = jest.spyOn(window.history, 'replaceState'); setTradeURLParams({}); expect(spyHistoryReplaceState).not.toBeCalled(); }); + it('should not set any query params into URL when location.pathname is not routes.trade', () => { + location.pathname = routes.positions; + const spyHistoryReplaceState = jest.spyOn(window.history, 'replaceState'); + setTradeURLParams({ + contractType: TRADE_TYPES.ACCUMULATOR, + }); + expect(spyHistoryReplaceState).not.toBeCalled(); + }); }); diff --git a/packages/shared/src/utils/contract/trade-url-params-config.ts b/packages/shared/src/utils/contract/trade-url-params-config.ts index 5656c9bbac1a..a3ae940b1b32 100644 --- a/packages/shared/src/utils/contract/trade-url-params-config.ts +++ b/packages/shared/src/utils/contract/trade-url-params-config.ts @@ -1,5 +1,6 @@ import { ActiveSymbols } from '@deriv/api-types'; import { TTextValueStrings, TTradeTypesCategories } from '../constants/contract'; +import { routes } from '../routes'; type TGetTradeURLParamsArgs = { active_symbols?: ActiveSymbols; @@ -92,7 +93,7 @@ export const setTradeURLParams = ({ contractType, symbol, chartType, granularity ); symbol && searchParams.set(TRADE_URL_PARAMS.SYMBOL, symbol); contractType && searchParams.set(TRADE_URL_PARAMS.TRADE_TYPE, contractType); - if (searchParams.toString()) { + if (searchParams.toString() && window.location.pathname === routes.trade) { const newQuery = `${window.location.pathname}?${searchParams.toString()}`; window.history.replaceState({}, document.title, newQuery); } From 4663305f883fed003ee02641a6665b206d438a02 Mon Sep 17 00:00:00 2001 From: Farrah Mae Ochoa <82315152+farrah-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 09:43:40 +0400 Subject: [PATCH 09/22] [P2PS] farrah/P2PS-2664/fix: update received amount (#14819) * fix: update received amount * fix: tests --- .../buy-sell-form-receive-amount.spec.js | 29 ++++++------------- .../buy-sell/buy-sell-form-receive-amount.jsx | 3 +- 2 files changed, 11 insertions(+), 21 deletions(-) diff --git a/packages/p2p/src/pages/buy-sell/__tests__/buy-sell-form-receive-amount.spec.js b/packages/p2p/src/pages/buy-sell/__tests__/buy-sell-form-receive-amount.spec.js index b2281817aaa1..2848ad72e789 100644 --- a/packages/p2p/src/pages/buy-sell/__tests__/buy-sell-form-receive-amount.spec.js +++ b/packages/p2p/src/pages/buy-sell/__tests__/buy-sell-form-receive-amount.spec.js @@ -11,7 +11,7 @@ jest.mock('Stores', () => ({ local_currency: 'USD', }, is_sell_advert: true, - receive_amount: 100, + receive_amount: 200, }, })), })); @@ -29,12 +29,14 @@ jest.mock('@sendbird/chat/message', () => ({ })); describe('', () => { - it('should show the proper description', () => { - const { rerender } = render(); + it('should show the proper description for sell order', () => { + render(); expect(screen.getByText("You'll receive")).toBeInTheDocument(); + }); - useStores.mockReturnValue({ + it('should show the proper description for buy order', () => { + useStores.mockReturnValueOnce({ buy_sell_store: { advert: { local_currency: 'USD', @@ -44,26 +46,13 @@ describe('', () => { }, }); - rerender(); + render(); expect(screen.getByText("You'll send")).toBeInTheDocument(); }); it('should show the proper formatted amount and currency', () => { - const { rerender } = render(); - - expect(screen.getByText('100.00 USD')).toBeInTheDocument(); - - useStores.mockReturnValue({ - buy_sell_store: { - advert: { - local_currency: 'USD', - }, - is_sell_advert: true, - receive_amount: 200.552, - }, - }); + render(); - rerender(); - expect(screen.getByText('200.55 USD')).toBeInTheDocument(); + expect(screen.getByText('200.00 USD')).toBeInTheDocument(); }); }); diff --git a/packages/p2p/src/pages/buy-sell/buy-sell-form-receive-amount.jsx b/packages/p2p/src/pages/buy-sell/buy-sell-form-receive-amount.jsx index f2d6c0f4b378..1242cfa30a3b 100644 --- a/packages/p2p/src/pages/buy-sell/buy-sell-form-receive-amount.jsx +++ b/packages/p2p/src/pages/buy-sell/buy-sell-form-receive-amount.jsx @@ -1,6 +1,7 @@ import React from 'react'; import { Text } from '@deriv/components'; import { getFormattedText } from '@deriv/shared'; +import { observer } from '@deriv/stores'; import { Localize } from 'Components/i18next'; import { roundOffDecimal } from 'Utils/format-value'; import { useStores } from 'Stores'; @@ -28,4 +29,4 @@ const BuySellFormReceiveAmount = () => { ); }; -export default BuySellFormReceiveAmount; +export default observer(BuySellFormReceiveAmount); From bbb0fd8630ff0061979fdfe742dbe56f6710a813 Mon Sep 17 00:00:00 2001 From: lubega-deriv <142860499+lubega-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 16:47:05 +0800 Subject: [PATCH 10/22] fix: align compare accounts cards (#14833) --- .../CompareAccountsCarousel/CompareAccountsCarousel.scss | 3 --- .../screens/CompareAccounts/CompareAccountsDescription.scss | 6 +++--- .../cfd/screens/CompareAccounts/CompareAccountsScreen.scss | 2 -- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarousel.scss b/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarousel.scss index 4807e58555e9..b0c9941458aa 100644 --- a/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarousel.scss +++ b/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarousel.scss @@ -6,9 +6,6 @@ overflow: hidden; width: 100%; height: 100%; - @include mobile { - padding-bottom: 6rem; - } } &__container { backface-visibility: hidden; diff --git a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsDescription.scss b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsDescription.scss index 687dc9f83ade..545442bbd497 100644 --- a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsDescription.scss +++ b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsDescription.scss @@ -1,12 +1,12 @@ .wallets-compare-accounts-text-container { - max-height: 24.5rem; + height: 24.5rem; @include mobile { - max-height: 21rem; + height: 21rem; } &--demo { - max-height: 13.5rem; + height: 13.5rem; } &__separator { margin: 0.9rem; diff --git a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.scss b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.scss index caac43e69d2a..a48cee7e8c1d 100644 --- a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.scss +++ b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.scss @@ -6,8 +6,6 @@ margin: 0; overflow-x: auto; overflow-y: scroll; - padding: 0 0 20.1rem; - max-height: 80rem; } &__card-list { From 4ab006ab9755fc41df980d69a041eb1181d80e1f Mon Sep 17 00:00:00 2001 From: Aum Bhatt <125039206+aum-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 12:48:04 +0400 Subject: [PATCH 11/22] style: fixed DatePicker overlapping Dropzone in document upload screens (#14914) --- packages/wallets/src/components/DatePicker/DatePicker.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/wallets/src/components/DatePicker/DatePicker.scss b/packages/wallets/src/components/DatePicker/DatePicker.scss index 818e892a53e2..bc3d4057fbdb 100644 --- a/packages/wallets/src/components/DatePicker/DatePicker.scss +++ b/packages/wallets/src/components/DatePicker/DatePicker.scss @@ -26,6 +26,7 @@ abbr[title] { display: inline-block; width: 28rem; transform: translateY(4rem); + z-index: 1; @include mobile { align-self: center; From eb3e695eb53050e0057948a73ebf79c2c285ca54 Mon Sep 17 00:00:00 2001 From: lubega-deriv <142860499+lubega-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 18:46:10 +0800 Subject: [PATCH 12/22] [WALL] Lubega / WALL-3678 / Wallets demo/real switcher (#14941) * feat: wallets demo switcher * fix: applied commentscd * fix: update unit tests * fix: updated WalletListHeader unit test * fix: applied comments * fix: applied comments --- .../OptionsAndMultipliersListing.scss | 2 + .../WalletListCard/WalletListCard.scss | 22 +++--- .../WalletListCard/WalletListCard.tsx | 6 +- .../WalletListCardDetails.tsx | 30 ++++++-- .../__tests__/WalletListCardDetails.spec.tsx | 30 +++++++- .../WalletListCardDropdown.tsx | 53 ++++++------- .../__tests__/WalletListCardDropdown.spec.tsx | 16 +--- .../WalletListHeader/WalletListHeader.scss | 77 +++++++++++++++++++ .../WalletListHeader/WalletListHeader.tsx | 65 ++++++++++++++++ .../__tests__/WalletListHeader.spec.tsx | 56 ++++++++++++++ .../src/components/WalletListHeader/index.ts | 1 + .../WalletsAddMoreCarousel.scss | 5 +- .../WalletsCarousel/WalletsCarousel.scss | 6 -- .../WalletsCarousel/WalletsCarousel.tsx | 20 ++--- .../WalletsContainer/WalletsContainer.tsx | 2 +- packages/wallets/src/components/index.ts | 1 + .../CFDPlatformsListAccounts.scss | 4 +- .../WalletsListingRoute.scss | 8 +- .../WalletsListingRoute.tsx | 2 + .../__tests__/WalletsListingRoute.spec.tsx | 3 + 20 files changed, 315 insertions(+), 94 deletions(-) create mode 100644 packages/wallets/src/components/WalletListHeader/WalletListHeader.scss create mode 100644 packages/wallets/src/components/WalletListHeader/WalletListHeader.tsx create mode 100644 packages/wallets/src/components/WalletListHeader/__tests__/WalletListHeader.spec.tsx create mode 100644 packages/wallets/src/components/WalletListHeader/index.ts diff --git a/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss b/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss index aaa4d4afcf57..67a3d1230477 100644 --- a/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss +++ b/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss @@ -6,6 +6,8 @@ @include mobile { padding-top: unset; + margin-bottom: 0.8rem; + border-bottom: 1px solid var(--system-light-6-hover-background, #e6e9e9); } &__header { diff --git a/packages/wallets/src/components/WalletListCard/WalletListCard.scss b/packages/wallets/src/components/WalletListCard/WalletListCard.scss index 9540a465d932..7db773eff266 100644 --- a/packages/wallets/src/components/WalletListCard/WalletListCard.scss +++ b/packages/wallets/src/components/WalletListCard/WalletListCard.scss @@ -1,15 +1,13 @@ -.wallets-list-header { - &__card_container { - flex: 1; - display: flex; - align-items: flex-start; - width: 100%; - border-radius: 1.6rem; - background: none; - z-index: 10; - } +.wallets-list-card { + flex: 1; + display: flex; + align-items: flex-start; + width: 100%; + border-radius: 1.6rem; + background: none; + z-index: 10; - &__content { + &__container { flex: 1; display: flex; flex-direction: row; @@ -18,7 +16,7 @@ align-self: stretch; } - &__details-container { + &__details { display: flex; flex: 1; align-items: flex-start; diff --git a/packages/wallets/src/components/WalletListCard/WalletListCard.tsx b/packages/wallets/src/components/WalletListCard/WalletListCard.tsx index 583973be69e2..ab8117b8b8a7 100644 --- a/packages/wallets/src/components/WalletListCard/WalletListCard.tsx +++ b/packages/wallets/src/components/WalletListCard/WalletListCard.tsx @@ -11,9 +11,9 @@ const WalletListCard = () => { const isDemo = activeWallet?.is_virtual; return ( -
-
-
+
+
+
diff --git a/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.tsx b/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.tsx index 943c737c8ce7..66b12a37f198 100644 --- a/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.tsx +++ b/packages/wallets/src/components/WalletListCardDetails/WalletListCardDetails.tsx @@ -1,17 +1,31 @@ import React from 'react'; +import { Trans } from 'react-i18next'; +import { useActiveWalletAccount } from '@deriv/api-v2'; +import { WalletText } from '../Base'; import WalletListCardActions from '../WalletListCardActions/WalletListCardActions'; import { WalletListCardBalance } from '../WalletListCardBalance'; import WalletListCardDropdown from '../WalletListCardDropdown/WalletListCardDropdown'; import './WalletListCardDetails.scss'; -const WalletListCardDetails = () => ( -
- -
- - +const WalletListCardDetails: React.FC = () => { + const { data: activeWallet, isLoading } = useActiveWalletAccount(); + const isDemo = activeWallet?.is_virtual; + + return ( +
+ {isDemo && !isLoading ? ( + + + + ) : ( + + )} +
+ + +
-
-); + ); +}; export default WalletListCardDetails; diff --git a/packages/wallets/src/components/WalletListCardDetails/__tests__/WalletListCardDetails.spec.tsx b/packages/wallets/src/components/WalletListCardDetails/__tests__/WalletListCardDetails.spec.tsx index 2dbc86fb5aba..9575764ffef2 100644 --- a/packages/wallets/src/components/WalletListCardDetails/__tests__/WalletListCardDetails.spec.tsx +++ b/packages/wallets/src/components/WalletListCardDetails/__tests__/WalletListCardDetails.spec.tsx @@ -1,7 +1,17 @@ import React from 'react'; +import { useActiveWalletAccount } from '@deriv/api-v2'; import { render, screen } from '@testing-library/react'; import WalletListCardDetails from '../WalletListCardDetails'; +jest.mock('@deriv/api-v2', () => ({ + useActiveWalletAccount: jest.fn(() => ({ + data: { + is_virtual: false, + }, + isLoading: false, + })), +})); + jest.mock('../../WalletListCardActions/WalletListCardActions', () => ({ __esModule: true, default: jest.fn(() =>
Mocked WalletListCardActions
), @@ -18,10 +28,28 @@ jest.mock('../../WalletListCardDropdown/WalletListCardDropdown', () => ({ })); describe('WalletListCardDetails', () => { - it('should render with default components correctly', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should render with default components correctly for real account', () => { render(); + expect(screen.getByText('Mocked WalletListCardActions')).toBeInTheDocument(); expect(screen.getByText('Mocked WalletListCardBalance')).toBeInTheDocument(); expect(screen.getByText('Mocked WalletListCardDropdown')).toBeInTheDocument(); }); + + it('should render with default components correctly for demo account', () => { + (useActiveWalletAccount as jest.Mock).mockReturnValue({ + data: { + is_virtual: true, + }, + }); + render(); + + expect(screen.getByText('Mocked WalletListCardActions')).toBeInTheDocument(); + expect(screen.getByText('Mocked WalletListCardBalance')).toBeInTheDocument(); + expect(screen.getByText('USD Demo Wallet')).toBeInTheDocument(); + }); }); diff --git a/packages/wallets/src/components/WalletListCardDropdown/WalletListCardDropdown.tsx b/packages/wallets/src/components/WalletListCardDropdown/WalletListCardDropdown.tsx index a5fdde861dac..005c9a48ce4c 100644 --- a/packages/wallets/src/components/WalletListCardDropdown/WalletListCardDropdown.tsx +++ b/packages/wallets/src/components/WalletListCardDropdown/WalletListCardDropdown.tsx @@ -14,54 +14,47 @@ const WalletListCardDropdown = () => { const { t } = useTranslation(); const [inputWidth, setInputWidth] = useState('auto'); - const loginid = activeWallet?.loginid; + const loginId = activeWallet?.loginid; const generateTitleText = useCallback( (wallet: THooks.WalletAccountsList) => { - return t(`${wallet?.currency} ${wallet?.wallet_currency_type === 'Demo' ? 'Demo ' : ''}Wallet`); + return t(`${wallet?.currency} Wallet`); }, [t] ); useEffect(() => { - const selectedWallet = wallets?.find(wallet => wallet.loginid === loginid); + const selectedWallet = wallets?.find(wallet => wallet.loginid === loginId); if (selectedWallet) { const selectedTextWidth = generateTitleText(selectedWallet).length; setInputWidth(`${selectedTextWidth * 10 - 20}px`); } - }, [generateTitleText, wallets, loginid]); + }, [generateTitleText, wallets, loginId]); return (
{wallets && ( ({ - listItem: ( -
- -
- - - - - - + list={wallets + ?.filter(wallet => !wallet.is_virtual) + ?.map(wallet => ({ + listItem: ( +
+ +
+ + + + + + +
-
- ), - text: generateTitleText(wallet), - value: wallet.loginid, - }))} + ), + text: generateTitleText(wallet), + value: wallet.loginid, + }))} listHeader={ @@ -74,7 +67,7 @@ const WalletListCardDropdown = () => { showListHeader showMessageContainer={false} typeVariant='listcard' - value={loginid} + value={loginId} /> )}
diff --git a/packages/wallets/src/components/WalletListCardDropdown/__tests__/WalletListCardDropdown.spec.tsx b/packages/wallets/src/components/WalletListCardDropdown/__tests__/WalletListCardDropdown.spec.tsx index 300f28d7ca2d..b7132d05a68e 100644 --- a/packages/wallets/src/components/WalletListCardDropdown/__tests__/WalletListCardDropdown.spec.tsx +++ b/packages/wallets/src/components/WalletListCardDropdown/__tests__/WalletListCardDropdown.spec.tsx @@ -25,17 +25,15 @@ jest.mock('@deriv/api-v2', () => ({ display_balance: '1.0000000', loginid: '7654321', }, - { - currency: 'USD', - display_balance: '10000.00', - loginid: '55555', - wallet_currency_type: 'Demo', - }, ], })), })); describe('WalletListCardDropdown', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + it('should render with the correct data', async () => { render(); @@ -50,15 +48,9 @@ describe('WalletListCardDropdown', () => { fireEvent.click(screen.getByDisplayValue('USD Wallet')); expect(screen.getByText('USD Wallet')).toBeInTheDocument(); expect(screen.getByText('BTC Wallet')).toBeInTheDocument(); - expect(screen.getByText('USD Demo Wallet')).toBeInTheDocument(); fireEvent.click(screen.getByText('BTC Wallet')); expect(mockSwitchAccount).toHaveBeenCalledWith('7654321'); - - fireEvent.click(screen.getByDisplayValue('BTC Wallet')); - fireEvent.click(screen.getByText('USD Demo Wallet')); - - expect(mockSwitchAccount).toHaveBeenCalledWith('55555'); }); it('should render dropdown without crashing when unable to fetch wallets', async () => { diff --git a/packages/wallets/src/components/WalletListHeader/WalletListHeader.scss b/packages/wallets/src/components/WalletListHeader/WalletListHeader.scss new file mode 100644 index 000000000000..bdfc4a579b46 --- /dev/null +++ b/packages/wallets/src/components/WalletListHeader/WalletListHeader.scss @@ -0,0 +1,77 @@ +@import '../../components/SkeletonLoader/SkeletonLoader.scss'; + +.wallets-list-header { + display: flex; + max-width: 123.2rem; + height: max-content; + width: 100%; + padding: 1.6rem 0 0; + + @include mobile { + padding: 0.8rem 1.4rem 0; + } + + &__label { + display: flex; + position: absolute; + margin-left: 3rem; + margin-top: 1rem; + gap: 2.4rem; + z-index: 1; + pointer-events: none; + } + + &__switcher { + position: relative; + display: flex; + width: 12rem; + height: 4rem; + margin-left: 1.6rem; + background-color: var(--header-footer-bg-color, #0000000a); + border-radius: 0.8rem; + + &-input { + width: 0; + height: 0; + } + + &:hover { + cursor: pointer; + + &:before { + position: absolute; + content: ''; + height: 3.2rem; + width: 11.2rem; + background-color: var(--button-toggle-secondary, #d6dadb); + opacity: unset; + border-radius: 0.4rem; + margin: 0.4rem; + } + } + } + + &__slider { + position: absolute; + inset: 0; + transition: 0.2s; + + &:before { + position: absolute; + content: ''; + height: 3.2rem; + width: 5.6rem; + background-color: var(--system-dark-1-prominent-text, #fff); + transition: 0.2s; + border-radius: 0.4rem; + margin: 0.4rem; + } + } +} + +.wallets-list-header__switcher-input:checked + .wallets-list-header__slider:before { + -webkit-transform: translateX(6rem); + -ms-transform: translateX(6rem); + transform: translateX(6rem); + margin-left: 0; +} diff --git a/packages/wallets/src/components/WalletListHeader/WalletListHeader.tsx b/packages/wallets/src/components/WalletListHeader/WalletListHeader.tsx new file mode 100644 index 000000000000..6e06ce33275b --- /dev/null +++ b/packages/wallets/src/components/WalletListHeader/WalletListHeader.tsx @@ -0,0 +1,65 @@ +import React, { useEffect, useState } from 'react'; +import { Trans } from 'react-i18next'; +import { useActiveWalletAccount, useWalletAccountsList } from '@deriv/api-v2'; +import useDevice from '../../hooks/useDevice'; +import useWalletAccountSwitcher from '../../hooks/useWalletAccountSwitcher'; +import { WalletText } from '../Base'; +import './WalletListHeader.scss'; + +const WalletListHeader: React.FC = () => { + const { isMobile } = useDevice(); + const { data: wallets } = useWalletAccountsList(); + const { data: activeWallet } = useActiveWalletAccount(); + const switchWalletAccount = useWalletAccountSwitcher(); + + const demoAccount = wallets?.find(wallet => wallet.is_virtual)?.loginid; + const firstRealAccount = wallets?.find(wallet => !wallet.is_virtual)?.loginid; + const shouldShowSwitcher = !isMobile && demoAccount && firstRealAccount; + const isDemo = activeWallet?.is_virtual; + const [isChecked, setIsChecked] = useState(!isDemo); + + const handleToggle = () => { + setIsChecked(prev => !prev); + if (firstRealAccount && activeWallet?.loginid === demoAccount) { + switchWalletAccount(firstRealAccount); + } else if (demoAccount) { + switchWalletAccount(demoAccount); + } + }; + + useEffect(() => { + setIsChecked(!isDemo); + }, [isDemo]); + + return ( +
+ + Trader's Hub + + {shouldShowSwitcher && ( +
+
+ + + + + + +
+ +
+ )} +
+ ); +}; + +export default WalletListHeader; diff --git a/packages/wallets/src/components/WalletListHeader/__tests__/WalletListHeader.spec.tsx b/packages/wallets/src/components/WalletListHeader/__tests__/WalletListHeader.spec.tsx new file mode 100644 index 000000000000..6d11ba42447d --- /dev/null +++ b/packages/wallets/src/components/WalletListHeader/__tests__/WalletListHeader.spec.tsx @@ -0,0 +1,56 @@ +import React from 'react'; +import { fireEvent, render, screen } from '@testing-library/react'; +import WalletListHeader from '../WalletListHeader'; +import '@testing-library/jest-dom'; + +jest.mock('../../../hooks/useDevice', () => + jest.fn(() => ({ + isMobile: false, + })) +); + +jest.mock('@deriv/api-v2', () => ({ + useActiveWalletAccount: () => ({ data: { is_virtual: false, loginid: 'real1' } }), + useWalletAccountsList: () => ({ + data: [ + { is_virtual: false, loginid: 'real1' }, + { is_virtual: true, loginid: 'demo123' }, + ], + }), +})); + +const mockSwitchWalletAccount = jest.fn(); + +jest.mock('../../../hooks/useWalletAccountSwitcher', () => ({ + __esModule: true, + default: jest.fn(() => mockSwitchWalletAccount), +})); + +describe('WalletListHeader', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should render header correctly', () => { + render(); + + expect(screen.getByText("Trader's Hub")).toBeInTheDocument(); + expect(screen.getByText('Demo')).toBeInTheDocument(); + expect(screen.getByText('Real')).toBeInTheDocument(); + }); + + it('should be checked if the real account is active', () => { + render(); + + const checkbox = screen.getByRole('checkbox'); + expect(checkbox).toBeChecked(); + }); + + it('should toggle accounts on checkbox change', () => { + render(); + + const checkbox = screen.getByRole('checkbox'); + fireEvent.click(checkbox); + expect(mockSwitchWalletAccount).toHaveBeenCalledWith('demo123'); + }); +}); diff --git a/packages/wallets/src/components/WalletListHeader/index.ts b/packages/wallets/src/components/WalletListHeader/index.ts new file mode 100644 index 000000000000..841fabab5a36 --- /dev/null +++ b/packages/wallets/src/components/WalletListHeader/index.ts @@ -0,0 +1 @@ +export { default as WalletListHeader } from './WalletListHeader'; diff --git a/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss b/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss index fc450ef23a8d..3ba30cd49e62 100644 --- a/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss +++ b/packages/wallets/src/components/WalletsAddMoreCarousel/WalletsAddMoreCarousel.scss @@ -3,11 +3,10 @@ flex-direction: column; max-width: 123.2rem; width: 100%; - padding-top: 2.4rem; + padding-top: 1.6rem; @include mobile { padding-top: 0; - gap: 0.8rem; } &__header { @@ -21,7 +20,7 @@ &__carousel { overflow: hidden; background-color: #fff; - padding: 3.2rem 0; + padding-bottom: 3.2rem; border-radius: 0.8rem; position: relative; height: 100%; diff --git a/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.scss b/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.scss index 7c5077fecade..3f4e8f44d268 100644 --- a/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.scss +++ b/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.scss @@ -1,9 +1,3 @@ .wallets-carousel { width: 100%; - - &__header { - display: flex; - align-items: center; - padding: 0.8rem 1.4rem; - } } diff --git a/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.tsx b/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.tsx index 1c30e9bc1ddc..6f36e1c2f283 100644 --- a/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.tsx +++ b/packages/wallets/src/components/WalletsCarousel/WalletsCarousel.tsx @@ -1,14 +1,13 @@ import React, { useEffect, useRef, useState } from 'react'; import { useActiveWalletAccount } from '@deriv/api-v2'; import { AccountsList } from '../AccountsList'; -import { WalletText } from '../Base'; import { WalletsCarouselContent } from '../WalletsCarouselContent'; import { WalletsCarouselHeader } from '../WalletsCarouselHeader'; import './WalletsCarousel.scss'; const WalletsCarousel: React.FC = () => { const [isWalletSettled, setIsWalletSettled] = useState(true); - const [hideWalletsCarouselHeader, setHideWalletsCarouselHeader] = useState(false); + const [hideWalletsCarouselHeader, setHideWalletsCarouselHeader] = useState(true); const contentRef = useRef(null); const { data: activeWallet, isLoading: isActiveWalletLoading } = useActiveWalletAccount(); @@ -38,7 +37,7 @@ const WalletsCarousel: React.FC = () => { }, []); return ( - +
{!isActiveWalletLoading && ( { isDemo={activeWallet?.is_virtual} /> )} -
-
- - Trader's Hub - -
-
- -
- +
+
- + +
); }; diff --git a/packages/wallets/src/components/WalletsContainer/WalletsContainer.tsx b/packages/wallets/src/components/WalletsContainer/WalletsContainer.tsx index 6d8c1cfaf4f1..080fe4e13995 100644 --- a/packages/wallets/src/components/WalletsContainer/WalletsContainer.tsx +++ b/packages/wallets/src/components/WalletsContainer/WalletsContainer.tsx @@ -17,7 +17,7 @@ const WalletsContainer: React.FC> = ({ children, useEffect(() => { const timeout = setTimeout(() => { if (isOpen && walletsCardRef?.current) { - walletsCardRef.current.style.scrollMarginTop = '24px'; + walletsCardRef.current.style.scrollMarginTop = '80px'; walletsCardRef.current.scrollIntoView({ behavior: 'smooth' }); } }, 300); diff --git a/packages/wallets/src/components/index.ts b/packages/wallets/src/components/index.ts index da5b7b08781a..c2c50482009d 100644 --- a/packages/wallets/src/components/index.ts +++ b/packages/wallets/src/components/index.ts @@ -27,6 +27,7 @@ export * from './WalletListCardBadge'; export * from './WalletListCardBalance'; export * from './WalletListCardDetails'; export * from './WalletListCardDropdown'; +export * from './WalletListHeader'; export * from './WalletMarketIcon'; export * from './WalletNoWalletFoundState'; export * from './WalletsActionScreen'; diff --git a/packages/wallets/src/features/cfd/components/CFDPlatformsListAccounts/CFDPlatformsListAccounts.scss b/packages/wallets/src/features/cfd/components/CFDPlatformsListAccounts/CFDPlatformsListAccounts.scss index 6eeb4731ec1c..35aae5c236de 100644 --- a/packages/wallets/src/features/cfd/components/CFDPlatformsListAccounts/CFDPlatformsListAccounts.scss +++ b/packages/wallets/src/features/cfd/components/CFDPlatformsListAccounts/CFDPlatformsListAccounts.scss @@ -11,7 +11,9 @@ @include mobile { grid-template-rows: repeat(3, 1fr); grid-template-columns: auto; - padding-bottom: 1.6rem; + padding-bottom: 0; + margin-bottom: 0.8rem; + border-bottom: 1px solid var(--system-light-6-hover-background, #e6e9e9); } } } diff --git a/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss b/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss index bf62a5d5b5c5..a67c934bf29b 100644 --- a/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss +++ b/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.scss @@ -1,14 +1,16 @@ .wallets-listing-route { width: 100%; flex: 1; + gap: 2.4rem; display: flex; flex-direction: column; align-items: center; justify-content: center; - gap: 2.4rem; background-color: var(--general-main-1, #ffffff); + padding: 0 4rem; - @include desktop { - padding: 4rem; + @include mobile { + padding: 0; + gap: 0.8rem; } } diff --git a/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.tsx b/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.tsx index 435b23456627..8158dd1f5eec 100644 --- a/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.tsx +++ b/packages/wallets/src/routes/WalletsListingRoute/WalletsListingRoute.tsx @@ -1,6 +1,7 @@ import React, { useEffect, useMemo } from 'react'; import { DesktopWalletsList, + WalletListHeader, WalletsAddMoreCarousel, WalletsCarousel, WalletsResetMT5Password, @@ -49,6 +50,7 @@ const WalletsListingRoute: React.FC = () => { return (
+ {isMobile ? : } {!isMobile && } diff --git a/packages/wallets/src/routes/WalletsListingRoute/__tests__/WalletsListingRoute.spec.tsx b/packages/wallets/src/routes/WalletsListingRoute/__tests__/WalletsListingRoute.spec.tsx index 08f8c0207ff0..239de1a653be 100644 --- a/packages/wallets/src/routes/WalletsListingRoute/__tests__/WalletsListingRoute.spec.tsx +++ b/packages/wallets/src/routes/WalletsListingRoute/__tests__/WalletsListingRoute.spec.tsx @@ -9,6 +9,7 @@ jest.mock('../../../hooks/useDevice', () => jest.fn()); jest.mock('../../../components/', () => { return { DesktopWalletsList: () =>
DesktopWalletsList
, + WalletListHeader: () =>
WalletListHeader
, WalletsAddMoreCarousel: () =>
WalletsAddMoreCarousel
, WalletsCarousel: () =>
WalletsCarousel
, WalletTourGuide: () =>
WalletTourGuide
, @@ -22,6 +23,7 @@ describe('WalletsListingRoute', () => { (useDevice as jest.Mock).mockReturnValue({ isMobile: false }); render(, { wrapper }); + expect(screen.getByText('WalletListHeader')).toBeInTheDocument(); expect(screen.getByText('DesktopWalletsList')).toBeInTheDocument(); expect(screen.getByText('WalletTourGuide')).toBeInTheDocument(); expect(screen.queryByText('WalletsCarousel')).not.toBeInTheDocument(); @@ -31,6 +33,7 @@ describe('WalletsListingRoute', () => { (useDevice as jest.Mock).mockReturnValue({ isMobile: true }); render(, { wrapper }); + expect(screen.getByText('WalletListHeader')).toBeInTheDocument(); expect(screen.queryByText('DesktopWalletsList')).not.toBeInTheDocument(); expect(screen.getByText('WalletsCarousel')).toBeInTheDocument(); expect(screen.queryByText('WalletTourGuide')).not.toBeInTheDocument(); From 2825f3eb5b045798e379920afeed1d3bf3708033 Mon Sep 17 00:00:00 2001 From: amina-deriv <84661147+amina-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 14:59:27 +0400 Subject: [PATCH 13/22] Amina/fix logout issue for DIEL clients (#14983) * fix: logout * fix: remove console * fix: remove console * fix: delay --- packages/core/src/Stores/client-store.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/src/Stores/client-store.js b/packages/core/src/Stores/client-store.js index e6ac33cf134d..7a20e8f2bbae 100644 --- a/packages/core/src/Stores/client-store.js +++ b/packages/core/src/Stores/client-store.js @@ -446,9 +446,9 @@ export default class ClientStore extends BaseStore { ); reaction( - () => [this.is_logged_in, this.is_passkey_supported], + () => [this.is_logged_in, this.is_authorize, this.is_passkey_supported], () => { - if (this.is_logged_in && this.is_passkey_supported) { + if (this.is_logged_in && this.is_authorize && this.is_passkey_supported) { this.fetchShouldShowEffortlessLoginModal(); } } @@ -1497,7 +1497,7 @@ export default class ClientStore extends BaseStore { * @param {string} loginid */ async switchAccount(loginid) { - if (!loginid) return; + if (!loginid || this.is_logging_in) return; this.setPreSwitchAccount(true); this.setIsLoggingIn(true); From a44e4b422b4150f241f6f8a112da5f7c6635b8e9 Mon Sep 17 00:00:00 2001 From: Likhith Kolayari <98398322+likhith-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 15:41:43 +0400 Subject: [PATCH 14/22] feat: add useKycAuthStatus with mobx (#14982) --- .../hooks/__test__/useKycAuthStatus.spec.tsx | 46 +++++++++++++++++++ packages/account/src/hooks/index.ts | 1 + .../account/src/hooks/useKycAuthStatus.ts | 21 +++++++++ packages/api/types.ts | 4 ++ 4 files changed, 72 insertions(+) create mode 100644 packages/account/src/hooks/__test__/useKycAuthStatus.spec.tsx create mode 100644 packages/account/src/hooks/index.ts create mode 100644 packages/account/src/hooks/useKycAuthStatus.ts diff --git a/packages/account/src/hooks/__test__/useKycAuthStatus.spec.tsx b/packages/account/src/hooks/__test__/useKycAuthStatus.spec.tsx new file mode 100644 index 000000000000..6de5445dcf0b --- /dev/null +++ b/packages/account/src/hooks/__test__/useKycAuthStatus.spec.tsx @@ -0,0 +1,46 @@ +import React from 'react'; +import { renderHook } from '@testing-library/react-hooks'; +import { useKycAuthStatus } from '../useKycAuthStatus'; +import { useQuery } from '@deriv/api'; +import { StoreProvider, mockStore } from '@deriv/stores'; + +jest.mock('@deriv/api', () => ({ + ...jest.requireActual('@deriv/api'), + useQuery: jest.fn(), +})); + +describe('useKycAuthStatus', () => { + afterEach(() => { + jest.clearAllMocks(); + }); + + it('should return kyc_auth_status', () => { + const mock_response = { + data: { + kyc_auth_status: { + identity: { + status: 'none', + }, + document: { + status: 'none', + }, + }, + }, + }; + + const mock = mockStore({ + client: { + is_authorize: true, + }, + }); + + (useQuery as jest.Mock).mockReturnValue(mock_response); + + const wrapper = ({ children }: { children: JSX.Element }) => ( + {children} + ); + + const { result } = renderHook(() => useKycAuthStatus({ country: 'in' }), { wrapper }); + expect(result.current.kyc_auth_status).toEqual(mock_response.data.kyc_auth_status); + }); +}); diff --git a/packages/account/src/hooks/index.ts b/packages/account/src/hooks/index.ts new file mode 100644 index 000000000000..8db078fa131f --- /dev/null +++ b/packages/account/src/hooks/index.ts @@ -0,0 +1 @@ +export { useKycAuthStatus } from './useKycAuthStatus'; diff --git a/packages/account/src/hooks/useKycAuthStatus.ts b/packages/account/src/hooks/useKycAuthStatus.ts new file mode 100644 index 000000000000..5b6162e89af4 --- /dev/null +++ b/packages/account/src/hooks/useKycAuthStatus.ts @@ -0,0 +1,21 @@ +import { useQuery } from '@deriv/api'; +import { TSocketRequestPayload } from '@deriv/api/types'; +import { useStore } from '@deriv/stores'; + +type TKycAuthStatusPayload = TSocketRequestPayload<'kyc_auth_status'>['payload']; + +/** Custom hook that returns Proof of Identity (POI) and Proof of Address (POA) authentication status details. */ +export const useKycAuthStatus = (payload?: TKycAuthStatusPayload) => { + const { client } = useStore(); + + const { is_authorize } = client; + const { data, ...kyc_auth_status_rest } = useQuery('kyc_auth_status', { + payload, + options: { enabled: is_authorize }, + }); + return { + /** The KYC auth status */ + kyc_auth_status: data?.kyc_auth_status, + ...kyc_auth_status_rest, + }; +}; diff --git a/packages/api/types.ts b/packages/api/types.ts index 2d9ec5efea31..104a8d6b557e 100644 --- a/packages/api/types.ts +++ b/packages/api/types.ts @@ -261,6 +261,10 @@ type KycAuthStatus = { * Reason(s) for the rejected POI attempt. */ rejected_reasons?: string[]; + /** + * Indicate if the verification report was returned by the provider (IDV only). + */ + report_available?: 0 | 1; }; /** * Service used for the current POI status. From 8df1a5df023441ef5c1f4d945ba8b006e03f0b04 Mon Sep 17 00:00:00 2001 From: Aizad Ridzo <103104395+aizad-deriv@users.noreply.github.com> Date: Mon, 6 May 2024 19:47:54 +0800 Subject: [PATCH 15/22] [WALL] Aizad/WALL-3900/Re-add Buttons inside of Compare Account Page (#14960) * chore: readd nav buttons inside of compare account page * chore: icon button style fix --- .../src/components/Base/IconButton/IconButton.scss | 11 +++++++++-- .../CompareAccountsCarouselButton.scss | 4 ---- .../screens/CompareAccounts/CompareAccountsScreen.tsx | 8 ++++---- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/packages/wallets/src/components/Base/IconButton/IconButton.scss b/packages/wallets/src/components/Base/IconButton/IconButton.scss index 30859b0cfe96..4beb98082ed9 100644 --- a/packages/wallets/src/components/Base/IconButton/IconButton.scss +++ b/packages/wallets/src/components/Base/IconButton/IconButton.scss @@ -75,8 +75,15 @@ $border-radius-map: ( @each $color, $values in $color-map { &__color--#{$color} { background-color: map-get($values, backgroundcolor); - &:hover { - background-color: map-get($values, hover); + @include desktop { + &:hover { + background-color: map-get($values, hover); + } + } + @include mobile { + &:active { + background-color: map-get($values, hover); + } } } } diff --git a/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarouselButton.scss b/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarouselButton.scss index 12bd7d41e243..7afb333f1e6e 100644 --- a/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarouselButton.scss +++ b/packages/wallets/src/features/cfd/components/CompareAccountsCarousel/CompareAccountsCarouselButton.scss @@ -26,8 +26,4 @@ opacity: 0.3; display: none; } - - @include mobile { - display: none; - } } diff --git a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.tsx b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.tsx index 78e66e28fdb7..94c7e48ad036 100644 --- a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.tsx +++ b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsScreen.tsx @@ -1,7 +1,7 @@ import React, { useMemo } from 'react'; import { useActiveWalletAccount, useCFDAccountsList, useCFDCompareAccounts } from '@deriv/api-v2'; import { CompareAccountsCarousel } from '../../components'; -import CFDCompareAccountsCard from './CompareAccountsCard'; +import CompareAccountsCard from './CompareAccountsCard'; import { isCTraderAccountAdded, isDxtradeAccountAdded } from './compareAccountsConfig'; import CompareAccountsHeader from './CompareAccountsHeader'; import './CompareAccountsScreen.scss'; @@ -33,7 +33,7 @@ const CompareAccountsScreen = () => {
{mt5Accounts?.map(item => ( - { ))} {/* Renders cTrader data */} {mt5Accounts?.length && hasCTraderAccountAvailable && ctraderAccount && ( - { )} {/* Renders Deriv X data */} {mt5Accounts?.length && hasDxtradeAccountAvailable && dxtradeAccount && ( - Date: Tue, 7 May 2024 08:15:53 +0530 Subject: [PATCH 16/22] Aswathy/CRO-470/Tracking specs for Traders hub (#14674) * feat: tracking analytics for tradershub events * fix: added tracking for the open event * fix: peer review comments * fix: added the client account mode for reset balance * fix: smoke test failing issue * fix: peer comments * fix: account name for mf issue --------- Co-authored-by: aswathymenonachu --- .../add-options-account.tsx | 9 +- .../appstore/src/components/app-content.tsx | 14 ++- .../src/components/cfds-listing/index.tsx | 87 +++++++++++++++++++ .../compare-account/compare-account.tsx | 13 ++- .../containers/trading-app-card.tsx | 9 +- .../real/real-account-card.tsx | 8 +- .../main-title-bar/account-type-dropdown.tsx | 6 ++ .../options-multipliers-listing/index.tsx | 23 ++++- .../src/components/dropdown/dropdown.scss | 3 +- packages/core/src/Stores/client-store.js | 6 +- 10 files changed, 167 insertions(+), 11 deletions(-) diff --git a/packages/appstore/src/components/add-options-account/add-options-account.tsx b/packages/appstore/src/components/add-options-account/add-options-account.tsx index a6281ff9626d..5ae7001d1d1d 100644 --- a/packages/appstore/src/components/add-options-account/add-options-account.tsx +++ b/packages/appstore/src/components/add-options-account/add-options-account.tsx @@ -4,10 +4,11 @@ import { Localize, localize } from '@deriv/translations'; import './add-options-account.scss'; import { useStore, observer } from '@deriv/stores'; import { isMobile, ContentFlag } from '@deriv/shared'; +import { Analytics } from '@deriv-com/analytics'; const AddOptions = observer(() => { const { client, traders_hub, ui } = useStore(); - const { is_real, content_flag } = traders_hub; + const { is_real, content_flag, selected_account_type } = traders_hub; const { setShouldShowCooldownModal, openRealAccountSignup } = ui; const { real_account_creation_unlock_date } = client; @@ -29,6 +30,12 @@ const AddOptions = observer(() => { type='submit' has_effect onClick={() => { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_get', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: 'cfd_banner', + }); if (is_real && eu_user) { if (real_account_creation_unlock_date) { setShouldShowCooldownModal(true); diff --git a/packages/appstore/src/components/app-content.tsx b/packages/appstore/src/components/app-content.tsx index 5f0ff1ba57cb..c2087c233a7c 100644 --- a/packages/appstore/src/components/app-content.tsx +++ b/packages/appstore/src/components/app-content.tsx @@ -1,13 +1,23 @@ -import React from 'react'; +import React, { useEffect } from 'react'; import { routes } from '@deriv/shared'; import { observer, useStore } from '@deriv/stores'; +import { Analytics } from '@deriv-com/analytics'; import Routes from 'Components/routes/routes'; import classNames from 'classnames'; import './app.scss'; const AppContent: React.FC = observer(() => { - const { ui } = useStore(); + const { ui, traders_hub } = useStore(); const { is_dark_mode_on } = ui; + const { selected_account_type } = traders_hub; + + useEffect(() => { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'open', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + }); + }, []); return (
{ {combined_cfd_mt5_accounts.map((existing_account, index: number) => { const list_size = combined_cfd_mt5_accounts.length; + const track_account_name = is_demo + ? `${existing_account.name} ${localize('Demo')}` + : existing_account.name; + const track_account_subtitle = is_demo + ? `${existing_account.sub_title} ${localize('Demo')}` + : existing_account.sub_title; + const has_mt5_account_status = existing_account?.status || is_idv_revoked ? getMT5AccountAuthStatus( @@ -228,6 +236,12 @@ const CFDsListing = observer(() => { has_divider={(!is_eu_user || is_demo) && getHasDivider(index, list_size, 3)} onAction={(e?: React.MouseEvent) => { if (existing_account.action_type === 'get') { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_get', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); if (real_account_creation_unlock_date && no_real_mf_account_eu_regulator) { setShouldShowCooldownModal(true); } else if (no_real_cr_non_eu_regulator || no_real_mf_account_eu_regulator) { @@ -243,17 +257,36 @@ const CFDsListing = observer(() => { } else if (existing_account.action_type === 'multi-action') { const button_name = e?.currentTarget?.name; if (button_name === 'transfer-btn') { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_transfer', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); toggleAccountTransferModal(); setSelectedAccount(existing_account); } else if (button_name === 'topup-btn') { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_topup', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_subtitle, + }); showTopUpModal(existing_account); setAppstorePlatform(existing_account.platform); } else { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_open', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_subtitle, + }); if (has_mt5_account_status === MT5_ACCOUNT_STATUS.FAILED && is_eu_user) { setIsMT5VerificationFailedModal(true); openFailedVerificationModal(existing_account); return; } + startTrade(existing_account.platform, existing_account); } } @@ -288,6 +321,7 @@ const CFDsListing = observer(() => { ? available_ctrader_accounts.map(account => { const existing_accounts = getExistingAccounts(account.platform, account.market_type); const has_existing_accounts = existing_accounts.length > 0; + const track_account_name = is_demo ? `${account.name} ${localize('Demo')}` : account.name; return has_existing_accounts ? ( existing_accounts.map(existing_account => ( { onAction={(e?: React.MouseEvent) => { const button_name = e?.currentTarget?.name; if (button_name === 'transfer-btn') { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_transfer', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); toggleCTraderTransferModal(); } else if (button_name === 'topup-btn') { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_topup', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); showTopUpModal(existing_account); setAppstorePlatform(account.platform); } else { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_open', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); startTrade(account.platform, existing_account); } }} @@ -327,6 +379,12 @@ const CFDsListing = observer(() => { platform={account.platform} description={account.description} onAction={() => { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_get', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); if ((has_no_real_account || no_CR_account) && is_real) { openDerivRealAccountNeededModal(); } else { @@ -361,6 +419,8 @@ const CFDsListing = observer(() => { available_dxtrade_accounts?.map(account => { const existing_accounts = getExistingAccounts(account.platform, account.market_type); const has_existing_accounts = existing_accounts.length > 0; + const track_account_name = is_demo ? `${account.name} ${localize('Demo')}` : account.name; + return has_existing_accounts ? ( existing_accounts.map(existing_account => ( { key={`trading_app_card_${existing_account.login}`} onAction={(e?: React.MouseEvent) => { const button_name = e?.currentTarget?.name; + const track_account_subtitle = is_demo + ? `${existing_account.sub_title} ${localize('Demo')}` + : existing_account.sub_title; if (button_name === 'transfer-btn') { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_transfer', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); toggleAccountTransferModal(); setSelectedAccount(existing_account); } else if (button_name === 'topup-btn') { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_topup', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_subtitle, + }); showTopUpModal(existing_account); setAppstorePlatform(account.platform); } else { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_open', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_subtitle, + }); startTrade(account.platform, existing_account); } }} @@ -401,6 +482,12 @@ const CFDsListing = observer(() => { platform={account.platform} description={account.description} onAction={() => { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_get', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: track_account_name, + }); if ((has_no_real_account || no_CR_account) && is_real) { openDerivRealAccountNeededModal(); } else { diff --git a/packages/appstore/src/components/compare-account/compare-account.tsx b/packages/appstore/src/components/compare-account/compare-account.tsx index 102c50eadd21..723b8d14cff7 100644 --- a/packages/appstore/src/components/compare-account/compare-account.tsx +++ b/packages/appstore/src/components/compare-account/compare-account.tsx @@ -1,21 +1,30 @@ import React from 'react'; import { Text } from '@deriv/components'; import { Localize } from '@deriv/translations'; +import { Analytics } from '@deriv-com/analytics'; import { useHistory } from 'react-router-dom'; import { routes } from '@deriv/shared'; +import { useStore, observer } from '@deriv/stores'; type TCompareAccount = { accounts_sub_text: string; is_desktop?: boolean; }; -const CompareAccount = ({ accounts_sub_text, is_desktop }: TCompareAccount) => { +const CompareAccount = observer(({ accounts_sub_text, is_desktop }: TCompareAccount) => { const history = useHistory(); + const { traders_hub } = useStore(); + const { selected_account_type } = traders_hub; return (
{ history.push(routes.compare_cfds); + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'compare_accounts_push', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + }); }} > {
); -}; +}); export default CompareAccount; diff --git a/packages/appstore/src/components/containers/trading-app-card.tsx b/packages/appstore/src/components/containers/trading-app-card.tsx index d09f2001e9af..a141cae4012c 100644 --- a/packages/appstore/src/components/containers/trading-app-card.tsx +++ b/packages/appstore/src/components/containers/trading-app-card.tsx @@ -3,6 +3,7 @@ import classNames from 'classnames'; import getStatusBadgeConfig from '@deriv/account/src/Configs/get-status-badge-config'; import { Text, StatusBadge } from '@deriv/components'; import { localize } from '@deriv/translations'; +import { Analytics } from '@deriv-com/analytics'; import TradingPlatformIconProps from 'Assets/svgs/trading-platform'; import { BrandConfig, @@ -57,7 +58,7 @@ const TradingAppCard = ({ client, } = useStore(); const { setIsVerificationModalVisible } = ui; - const { is_eu_user, is_demo_low_risk, content_flag, is_real } = traders_hub; + const { is_eu_user, is_demo_low_risk, content_flag, is_real, selected_account_type } = traders_hub; const { current_language } = common; const { is_account_being_created } = cfd; const { account_status: { authentication } = {} } = client; @@ -95,6 +96,12 @@ const TradingAppCard = ({ }; const openStaticPage = () => { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_logo_push', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: !is_real ? `${sub_title === undefined ? name : sub_title}` : name, + }); if (is_deriv_platform) { switch (name) { case DERIV_PLATFORM_NAMES.TRADER: diff --git a/packages/appstore/src/components/currency-switcher-card/real/real-account-card.tsx b/packages/appstore/src/components/currency-switcher-card/real/real-account-card.tsx index 73c19c5e1822..1cac9ce35883 100644 --- a/packages/appstore/src/components/currency-switcher-card/real/real-account-card.tsx +++ b/packages/appstore/src/components/currency-switcher-card/real/real-account-card.tsx @@ -3,6 +3,7 @@ import { useHistory } from 'react-router'; import { Button, Text } from '@deriv/components'; import { getCurrencyName, routes, isCryptocurrency, startPerformanceEventTimer } from '@deriv/shared'; import { Localize } from '@deriv/translations'; +import { Analytics } from '@deriv-com/analytics'; import BalanceText from 'Components/elements/text/balance-text'; import CurrencySwitcherContainer from 'Components/containers/currency-switcher-container'; import { useStore, observer } from '@deriv/stores'; @@ -18,7 +19,7 @@ const RealAccountCard = observer(() => { const { accounts, loginid } = client; const { current_language } = common; const { current_list } = modules.cfd; - const { openModal, is_eu_user } = traders_hub; + const { openModal, is_eu_user, selected_account_type } = traders_hub; const { balance, currency } = loginid ? accounts[loginid] : default_balance; @@ -50,6 +51,11 @@ const RealAccountCard = observer(() => { currency && (
diff --git a/packages/appstore/src/components/options-multipliers-listing/index.tsx b/packages/appstore/src/components/options-multipliers-listing/index.tsx index 14ea9ceec09c..a235889681a8 100644 --- a/packages/appstore/src/components/options-multipliers-listing/index.tsx +++ b/packages/appstore/src/components/options-multipliers-listing/index.tsx @@ -9,11 +9,20 @@ import PlatformLoader from 'Components/pre-loader/platform-loader'; import TradingAppCard from 'Components/containers/trading-app-card'; import { BrandConfig } from 'Constants/platform-config'; import { getHasDivider } from 'Constants/utils'; +import { Analytics } from '@deriv-com/analytics'; const OptionsAndMultipliersListing = observer(() => { const { traders_hub, client, ui } = useStore(); - const { available_platforms, is_eu_user, is_real, no_MF_account, no_CR_account, is_demo, content_flag } = - traders_hub; + const { + available_platforms, + is_eu_user, + is_real, + no_MF_account, + no_CR_account, + is_demo, + content_flag, + selected_account_type, + } = traders_hub; const { is_landing_company_loaded, is_eu, has_maltainvest_account, real_account_creation_unlock_date } = client; const { setShouldShowCooldownModal, openRealAccountSignup, is_mobile } = ui; @@ -110,6 +119,16 @@ const OptionsAndMultipliersListing = observer(() => { : 'none' } is_deriv_platform + onAction={() => { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'account_open', + form_name: 'traders_hub_default', + account_mode: selected_account_type, + account_name: is_demo + ? `${available_platform.name} ${localize('Demo')}` + : available_platform.name, + }); + }} has_divider={(!is_eu_user || is_demo) && getHasDivider(index, available_platforms.length, 3)} /> )) diff --git a/packages/components/src/components/dropdown/dropdown.scss b/packages/components/src/components/dropdown/dropdown.scss index 86595f7dee11..8a676979506e 100644 --- a/packages/components/src/components/dropdown/dropdown.scss +++ b/packages/components/src/components/dropdown/dropdown.scss @@ -273,7 +273,8 @@ min-width: 15rem; width: 100%; - &:not(.cfd-personal-details-modal__form *):not(.trade-container__multiplier-dropdown):not(.dc-dropdown--left):not(.contract-type-info__dropdown) { + &:not(.cfd-personal-details-modal__form *):not(.trade-container__multiplier-dropdown):not( + .dc-dropdown--left):not(.contract-type-info__dropdown) { margin-top: unset; } diff --git a/packages/core/src/Stores/client-store.js b/packages/core/src/Stores/client-store.js index 7a20e8f2bbae..563041ada272 100644 --- a/packages/core/src/Stores/client-store.js +++ b/packages/core/src/Stores/client-store.js @@ -41,7 +41,6 @@ import { getAccountTitle, getAvailableAccount, getClientAccountType } from './He import { setDeviceDataCookie } from './Helpers/device'; import { buildCurrenciesList } from './Modules/Trading/Helpers/currency'; import BaseStore from './base-store'; - import BinarySocket from '_common/base/socket_base'; import * as SocketCache from '_common/base/socket_cache'; import { getRegion, isEuCountry, isMultipliersOnly, isOptionsBlocked } from '_common/utility'; @@ -1512,6 +1511,11 @@ export default class ClientStore extends BaseStore { } async resetVirtualBalance() { + Analytics.trackEvent('ce_tradershub_dashboard_form', { + action: 'reset_balance', + form_name: 'traders_hub_default', + account_mode: 'demo', + }); this.root_store.notifications.removeNotificationByKey({ key: 'reset_virtual_balance' }); this.root_store.notifications.removeNotificationMessage({ key: 'reset_virtual_balance', From 22d3080cba6a0321b92cd635f0ac70410d136fcd Mon Sep 17 00:00:00 2001 From: lubega-deriv <142860499+lubega-deriv@users.noreply.github.com> Date: Tue, 7 May 2024 14:22:28 +0800 Subject: [PATCH 17/22] fix: compare accounts header position (#14966) --- .../cfd/screens/CompareAccounts/CompareAccountsHeader.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsHeader.scss b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsHeader.scss index 48376f099f70..2c141971f500 100644 --- a/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsHeader.scss +++ b/packages/wallets/src/features/cfd/screens/CompareAccounts/CompareAccountsHeader.scss @@ -7,7 +7,7 @@ position: sticky; top: 0; background-color: #ffffff; - z-index: 999; + z-index: 1; &__title { display: flex; From a5da6776065763addf74c2ce512d82fe9066aaa9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 May 2024 15:03:30 +0800 Subject: [PATCH 18/22] =?UTF-8?q?translations:=20=F0=9F=93=9A=20sync=20tra?= =?UTF-8?q?nslations=20with=20crowdin=20(#15017)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: DerivFE --- packages/p2p/src/translations/sw.json | 6 +- packages/translations/crowdin/messages.json | 2 +- .../translations/src/translations/ach.json | 8 +- .../translations/src/translations/ar.json | 42 +- .../translations/src/translations/bn.json | 8 +- .../translations/src/translations/de.json | 8 +- .../translations/src/translations/es.json | 8 +- .../translations/src/translations/fr.json | 8 +- .../translations/src/translations/it.json | 8 +- .../translations/src/translations/ko.json | 8 +- .../translations/src/translations/pl.json | 8 +- .../translations/src/translations/pt.json | 8 +- .../translations/src/translations/ru.json | 8 +- .../translations/src/translations/si.json | 24 +- .../translations/src/translations/sw.json | 528 ++++++++-------- .../translations/src/translations/th.json | 596 +++++++++--------- .../translations/src/translations/tr.json | 8 +- .../translations/src/translations/vi.json | 8 +- .../translations/src/translations/zh_cn.json | 8 +- .../translations/src/translations/zh_tw.json | 8 +- 20 files changed, 655 insertions(+), 655 deletions(-) diff --git a/packages/p2p/src/translations/sw.json b/packages/p2p/src/translations/sw.json index 703d9807f02a..a0c057481caa 100644 --- a/packages/p2p/src/translations/sw.json +++ b/packages/p2p/src/translations/sw.json @@ -350,7 +350,7 @@ "-87612148": "Tangazo halijaorodheshwa", "-466964809": "Dhibiti tangazo", "-1667041441": "Kiwango (1 {{ offered_currency }})", - "-792015701": "Deriv P2P keshia haipatikani katika nchi yako.", + "-792015701": "Deriv P2P cashier haipatikani katika nchi yako.", "-1983512566": "Mazungumzo hayo yamefungwa.", "-283017497": "Jaribu tena", "-360975483": "Hujafanya muamala wa aina hii katika kipindi hiki.", @@ -380,7 +380,7 @@ "-1977959027": "saa", "-1603581277": "dakika", "-1792280476": "Chagua njia yako ya malipo", - "-520142572": "Mfumo wa keshia upo kwenye matengenezo kwa sasa", + "-520142572": "Mfumo wa cashier upo kwenye matengenezo kwa sasa", "-1552080215": "Tafadhali angalia tena baada ya dakika chache.<0> Asante kwa uvumilivu wako.", "-684271315": "SAWA", "-130601012": "Tafadhali chagua muda", @@ -389,7 +389,7 @@ "-1251526905": "Siku 7 zilizopita", "-1638172550": "Ili kuwezesha huduma hii lazima ukamilishe yafuatayo:", "-1086586743": "Tafadhali wasilisha <0>uthibitisho wako wa anwani. Unaweza kutumia Deriv P2P baada ya kuthibitisha hati zako.", - "-559300364": "Deriv P2P keshia yako imezuiwa", + "-559300364": "Deriv P2P cashier yako imezuiwa", "-740038242": "Kiwango chako ni", "-1072444041": "Sasisha tangazo", "-2085839488": "Tangazo hili halijaorodheshwa kwenye Kununu/Kuuza kwa sababu oda ya chini ni kubwa kuliko kiasi cha tangazo lililobaki ({{remaining_amount}} {{currency}}).", diff --git a/packages/translations/crowdin/messages.json b/packages/translations/crowdin/messages.json index 72d81cc8658e..894a6a07edf6 100644 --- a/packages/translations/crowdin/messages.json +++ b/packages/translations/crowdin/messages.json @@ -1 +1 @@ -{"1485191":"1:1000","2082741":"additional document number","2091451":"Deriv Bot - your automated trading partner","3125515":"Your Deriv MT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","3215342":"Last 30 days","3420069":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your identity document.","4547840":"<0>Verify your account to transfer funds. <1>Verify now","5149403":"Learn more about trade types","7100308":"Hour must be between 0 and 23.","9488203":"Deriv Bot is a web-based strategy builder for trading digital options. It’s a platform where you can build your own automated trading bot using drag-and-drop 'blocks'.","9757544":"Please submit your proof of address","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","11706633":"Loss threshold: The bot will stop trading if your total loss exceeds this amount.","11872052":"Yes, I'll come back later","14365404":"Request failed for: {{ message_type }}, retrying in {{ delay }}s","15377251":"Profit amount: {{profit}}","17843034":"Check proof of identity document verification status","19424289":"Username","19552684":"USD Basket","21035405":"Please tell us why you’re leaving. (Select up to {{ allowed_reasons }} reasons.)","24900606":"Gold Basket","25854018":"This block displays messages in the developer’s console with an input that can be either a string of text, a number, boolean, or an array of data.","26566655":"Summary","26596220":"Finance","27582393":"Example :","27582767":"{{amount}} {{currency}}","27731356":"Your account is temporarily disabled. Please contact us via <0>live chat to enable deposits and withdrawals again.","27830635":"Deriv (V) Ltd","28581045":"Add a real MT5 account","33433576":"Please use an e-wallet to withdraw your funds.","35089987":"Upload the front and back of your driving licence.","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45821474":"Proof of income","46523711":"Your proof of identity is verified","49404821":"If you buy a \"<0>{{trade_type}}\" option, you receive a payout at expiry if the final price is {{payout_status}} the strike price. Otherwise, your “<0>{{trade_type}}” option will expire worthless.","53801223":"Hong Kong 50","53964766":"5. Hit Save to download your bot. You can choose to download your bot to your device or your Google Drive.","54185751":"Less than $100,000","55340304":"Keep your current contract?","55916349":"All","57362642":"Closed","58254854":"Scopes","59169515":"If you select \"Asian Rise\", you will win the payout if the last tick is higher than the average of the ticks.","59341501":"Unrecognized file format","59662816":"Stated limits are subject to change without prior notice.","62748351":"List Length","63869411":"This block tests a given number according to the selection","64402604":"Check transfer information","65185694":"Fiat onramp","65982042":"Total","66519591":"Investor password","66610627":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there’s enough light where you are and that your entire face is in the frame.","67923436":"No, Deriv Bot will stop running when your web browser is closed.","68885999":"Repeats the previous trade when an error is encountered.","69005593":"The example below restarts trading after 30 or more seconds after 1 minute candle was started.","71016232":"OMG/USD","71232823":"Manage funds","71445658":"Open","71563326":"A fast and secure fiat-to-crypto payment service. Deposit cryptocurrencies from anywhere in the world using your credit/debit cards and bank transfers.","71853457":"$100,001 - $500,000","72500774":"Please fill in Tax residence.","73086872":"You have self-excluded from trading","73326375":"The low is the lowest point ever reached by the market during the contract period.","74963864":"Under","76635112":"To proceed, resubmit these documents","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","76925355":"Check your bot’s performance","77945356":"Trade on the go with our mobile app.","77982950":"Vanilla options allow you to predict an upward (bullish) or downward (bearish) direction of the underlying asset by purchasing a \"Call\" or a \"Put\".","81091424":"To complete the upgrade, please log out and log in again to add more accounts and make transactions with your Wallets.","81450871":"We couldn’t find that page","82839270":"Upload the page of your passport that contains your photo.","83202647":"Collapse Block","84402478":"Where do I find the blocks I need?","85343079":"Financial assessment","85359122":"40 or more","85389154":"Steps required to continue verification on your mobile","90266322":"2. Start a chat with your newly created Telegram bot and make sure to send it some messages before proceeding to the next step. (e.g. Hello Bot!)","91993812":"The Martingale Strategy is a classic trading technique that has been used for more than a hundred years, popularised by the French mathematician Paul Pierre Levy in the 18th century.","93154671":"1. Hit Reset at the bottom of stats panel.","96381225":"ID verification failed","98473502":"We’re not obliged to conduct an appropriateness test, nor provide you with any risk warnings.","98972777":"random item","100239694":"Upload front of card from your computer","102226908":"Field cannot be empty","105871033":"Your age in the document you provided appears to be below 18 years. We’re only allowed to offer our services to clients above 18 years old, so we’ll need to close your account. If you have a balance in your account, contact us via live chat and we’ll help to withdraw your funds before your account is closed.","107537692":"These limits apply to your options trades only. For example, <0>maximum total loss refers to the losses on all your trades on options trading platforms.","108916570":"Duration: {{duration}} days","109073671":"Please use an e-wallet that you have used for deposits previously. Ensure the e-wallet supports withdrawal. See the list of e-wallets that support withdrawals <0>here.","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","112152170":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your password manager. ","113378532":"ETH/USD","115032488":"Buy price and P/L","116005488":"Indicators","117056711":"We’re updating our site","117318539":"Password should have lower and uppercase English letters with numbers.","117366356":"Turbo options allow you to predict the direction of the underlying asset’s movements.","118727646":"{{new_account_title}}","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","122617359":"View tutorial","122993457":"This is to confirm that it's you making the withdrawal request.","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125354367":"An example of D’Alembert's Grind strategy","125443840":"6. Restart last trade on error","125842960":"{{name}} is required.","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.","129005644":"The idea is that successful trades may recoup previous losses. However, it is crucial to exercise caution as the risk can quickly increase with this strategy. With Deriv Bot, you can minimise your risk by setting a maximum stake. This is an optional risk management feature. Let’s say a maximum stake of 3 USD. If your stake for the next trade is set to exceed 3 USD, your stake will reset to the initial stake of 1 USD. If you didn't set a maximum stake, it would have increased beyond 3 USD.","129137937":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or resume trading after a 24-hour cooling-off period. If you don’t want to set a specific limit, leave the field empty.","129729742":"Tax Identification Number*","130567238":"THEN","132596476":"In providing our services to you, we are required to ask you for some information to assess if a given product or service is appropriate for you and whether you have the experience and knowledge to understand the risks involved.<0/><0/>","132689841":"Trade on web terminal","133523018":"Please go to the Deposit page to get an address.","133536621":"and","133655768":"Note: If you wish to learn more about the Bot Builder, you can proceed to the <0>Tutorials tab.","137589354":"To assess your trading experience and if our products are suitable for you. Please provide accurate and complete answers, as they may affect the outcome of this assessment.","138055021":"Synthetic indices","139454343":"Confirm my limits","141265840":"Funds transfer information","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145511192":"s is the initial stake.","145633981":"Unavailable as your documents are still under review","145736466":"Take a selfie","150156106":"Save changes","150486954":"Token name","151279367":"2. Set the Purchase conditions. In this example, your bot will purchase a Rise contract when it starts and after a contract closes.","151646545":"Unable to read file {{name}}","152415091":"Math","152524253":"Trade the world’s markets with our popular user-friendly platform.","157593038":"random integer from {{ start_number }} to {{ end_number }}","157871994":"Link expired","158355408":"Some services may be temporarily unavailable.","160746023":"Tether as an Omni token (USDT) is a version of Tether that is hosted on the Omni layer on the Bitcoin blockchain.","160863687":"Camera not detected","164112826":"This block allows you to load blocks from a URL if you have them stored on a remote server, and they will be loaded only when your bot runs.","164564432":"Deposits are temporarily unavailable due to system maintenance. You can make your deposits when the maintenance is complete.","165294347":"Please set your country of residence in your account settings to access the cashier.","165312615":"Continue on phone","165682516":"If you don’t mind sharing, which other trading platforms do you use?","167094229":"• Current stake: Use this variable to store the stake amount. You can assign any amount you want, but it must be a positive number.","170185684":"Ignore","170244199":"I’m closing my account for other reasons.","171307423":"Recovery","171579918":"Go to Self-exclusion","171638706":"Variables","173991459":"We’re sending your request to the blockchain.","174793462":"Strike","176078831":"Added","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","177099483":"Your address verification is pending, and we’ve placed some restrictions on your account. The restrictions will be lifted once your address is verified.","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","179737767":"Our legacy options trading platform.","181107754":"Your new <0>{{platform}} {{eligible_account_to_migrate}} account(s) are ready for trading.","181346014":"Notes ","181881956":"Contract Type: {{ contract_type }}","182630355":"Thank you for submitting your information.","184024288":"lower case","189705706":"This block uses the variable \"i\" to control the iterations. With each iteration, the value of \"i\" is determined by the items in a given list.","189759358":"Creates a list by repeating a given item","190834737":"Guide","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195136585":"Trading View Chart","195972178":"Get character","196810983":"If the duration is more than 24 hours, the Cut-off time and Expiry date will apply instead.","196998347":"We hold customer funds in bank accounts separate from our operational accounts which would not, in the event of insolvency, form part of the company's assets. This meets the <0>Gambling Commission's requirements for the segregation of customer funds at the level: <1>medium protection.","197190401":"Expiry date","201091938":"30 days","203179929":"<0>You can open this account once your submitted documents have been verified.","203271702":"Try again","203297887":"The Quick Strategy you just created will be loaded to the workspace.","203924654":"Hit the <0>Start button to begin and follow the tutorial.","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207521645":"Reset Time","207824122":"Please withdraw your funds from the following Deriv account(s):","209533725":"You’ve transferred {{amount}} {{currency}}","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","210872733":"The verification status is not available, provider says: Malformed JSON.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211487193":"Document number (e.g. identity card, passport, driver's license)","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","215975531":"This account offers CFDs on a highly customisable CFD trading platform.","216650710":"You are using a demo account","217377529":"5. If the next trades are profitable, the stake for the following trade will be reduced by 2 USD. This can be shown above where the stake of 3 USD is reduced to 1 USD. See A3.","217403651":"St. Vincent & Grenadines","217504255":"Financial assessment submitted successfully","218441288":"Identity card number","220014242":"Upload a selfie from your computer","220186645":"Text Is empty","221261209":"A Deriv account will allow you to fund (and withdraw from) your CFDs account(s).","223120514":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 50 days.","223607908":"Last digit stats for latest 1000 ticks for {{underlying_name}}","224650827":"IOT/USD","225887649":"This block is mandatory. It's added to your strategy by default when you create new strategy. You can not add more than one copy of this block to the canvas.","227591929":"To timestamp {{ input_datetime }} {{ dummy }}","227903202":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts.","228521812":"Tests whether a string of text is empty. Returns a boolean value (true or false).","233500222":"- High: the highest price","235583807":"SMA is a frequently used indicator in technical analysis. It calculates the average market price over a specified period, and is usually used to identify market trend direction: up or down. For example, if the SMA is moving upwards, it means the market trend is up. ","235994721":"Forex (standard/exotic) and cryptocurrencies","236642001":"Journal","238496287":"Leverage trading is high-risk, so it's a good idea to use risk management features such as stop loss. Stop loss allows you to","241546739":"Please choose the correct Deriv company and server name when logging in, as shown on Trader’s Hub.","243537306":"1. Under the Blocks menu, go to Utility > Variables.","243614144":"This is only available for existing clients.","245005091":"lower","245187862":"The DRC will make a <0>decision on the complaint (please note that the DRC mentions no timeframe for announcing its decision).","245812353":"if {{ condition }} return {{ value }}","246428134":"Step-by-step guides","248153700":"Reset your password","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","251134918":"Account Information","251445658":"Dark theme","251882697":"Thank you! Your response has been recorded into our system.<0/><0/>Please click ‘OK’ to continue.","254912581":"This block is similar to EMA, except that it gives you the entire EMA line based on the input list and the given period.","256031314":"Cash Business","256602726":"If you close your account:","258448370":"MT5","258912192":"Trading assessment","260069181":"An error occured while trying to load the URL","260086036":"Place blocks here to perform tasks once when your bot starts running.","260361841":"Tax Identification Number can't be longer than 25 characters.","260393332":"You cannot make further deposits as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","261074187":"4. Once the blocks are loaded onto the workspace, tweak the parameters if you want, or hit Run to start trading.","261250441":"Drag the <0>Trade again block and add it into the <0>do part of the <0>Repeat until block.","262095250":"If you select <0>\"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","264976398":"3. 'Error' displays a message in red to highlight something that needs to be resolved immediately.","265644304":"Trade types","267992618":"The platforms lack key features or functionality.","268940240":"Your balance ({{format_balance}} {{currency}}) is less than the current minimum withdrawal allowed ({{format_min_withdraw_amount}} {{currency}}). Please top up your account to continue with your withdrawal.","269322978":"Deposit with your local currency via peer-to-peer exchange with fellow traders in your country.","269607721":"Upload","270339490":"If you select \"Over\", you will win the payout if the last digit of the last tick is greater than your prediction.","270396691":"<0>Your Wallets are ready!","270610771":"In this example, the open price of a candle is assigned to the variable \"candle_open_price\".","270712176":"descending","270780527":"You've reached the limit for uploading your documents.","271637055":"Download is unavailable while your bot is running.","272179372":"This block is commonly used to adjust the parameters of your next trade and to implement stop loss/take profit logic.","273350342":"Copy and paste the token into the app.","273728315":"Should not be 0 or empty","274268819":"Volatility 100 Index","275116637":"Deriv X","276770377":"New MT5 account(s) under the {{to_account}} jurisdiction will be created for new trades.","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","280021988":"Use these shortcuts","281110034":"Effective trading with the D'Alembert system requires careful consideration of its stake progression and risk management. Traders can automate this approach using Deriv Bot, setting profit and loss thresholds to ensure balanced and controlled trading. However, it is crucial for traders to assess their risk appetite, test strategies on a demo account, and align with their own trading style before transitioning to real money trading. This optimization process helps strike a balance between potential gains and losses while managing risk prudently.","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","283830551":"Your address doesn’t match your profile","284527272":"antimode","284772879":"Contract","284809500":"Financial Demo","287934290":"Are you sure you want to cancel this transaction?","291344459":"The table illustrates this principle in the second session. After a trade resulting in loss in round 4 followed by a successful trade in round 5, the stake will increase to 2 USD for round 6. This is in line with the strategy's rule of raising the stake only after a loss is followed by a successful trade.","291744889":"<0>1. Trade parameters:<0>","291817757":"Go to our Deriv community and learn about APIs, API tokens, ways to use Deriv APIs, and more.","292526130":"Tick and candle analysis","292589175":"This will display the SMA for the specified period, using a candle list.","292887559":"Transfer to {{selected_value}} is not allowed, Please choose another account from dropdown","293250845":"Are you sure you want to continue?","294043810":"I confirm that my tax information is accurate and complete.","294305803":"Manage account settings","294335229":"Sell at market price","296017162":"Back to Bot","301441673":"Select your citizenship/nationality as it appears on your passport or other government-issued ID.","304309961":"We're reviewing your withdrawal request. You may still cancel this transaction if you wish. Once we start processing, you won't be able to cancel.","304506198":"Total balance:","310234308":"Close all your positions.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","313741895":"This block returns “True” if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","315306603":"You have an account that do not have currency assigned. Please choose a currency to trade with this account.","316694303":"Is candle black?","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","321457615":"Oops, something went wrong!","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","323360883":"Baskets","325662004":"Expand Block","325763347":"result","326770937":"Withdraw {{currency}} ({{currency_symbol}}) to your wallet","327534692":"Duration value is not allowed. To run the bot, please enter {{min}}.","328539132":"Repeats inside instructions specified number of times","329353047":"Malta Financial Services Authority (MFSA) (licence no. IS/70156)","329404045":"<0>Switch to your real account<1> to create a {{platform}} {{account_title}} account.","333456603":"Withdrawal limits","333807745":"Click on the block you want to remove and press Delete on your keyboard.","334942497":"Buy time","337023006":"Start time cannot be in the past.","339449279":"Remaining time","339610914":"Spread Up/Spread Down","339879944":"GBP/USD","340807218":"Description not found.","342181776":"Cancel transaction","343873723":"This block displays a message. You can specify the color of the message and choose from 6 different sound options.","344418897":"These trading limits and self-exclusion help you control the amount of money and time you spend on {{brand_website_name}} and exercise <0>responsible trading.","345320063":"Invalid timestamp","345818851":"Sorry, an internal error occurred. Hit the above checkbox to try again.","347029309":"Forex: standard/micro","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","349110642":"<0>{{payment_agent}}<1>'s contact details","350602311":"Stats show the history of consecutive tick counts, i.e. the number of ticks the price remained within range continuously.","351744408":"Tests if a given text string is empty","352363702":"You may see links to websites with a fake Deriv login page where you’ll get scammed for your money.","353731490":"Job done","354945172":"Submit document","357477280":"No face found","357672069":"Income verification failed","359053005":"Please enter a token name.","359649435":"Given candle list is not valid","359809970":"This block gives you the selected candle value from a list of candles within the selected time interval. You can choose from open price, close price, high price, low price, and open time.","360224937":"Logic","360773403":"Bot Builder","362946954":"Our legacy automated trading platform.","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","367801124":"Total assets in your Deriv accounts.","368160866":"in list","369035361":"<0>•Your account number","371151609":"Last used","371710104":"This scope will allow third-party apps to buy and sell contracts for you, renew your expired purchases, and top up your demo accounts.","372291654":"Exclude time must be after today.","372645383":"True if the market direction matches the selection","372805409":"You should enter 9-35 characters.","373021397":"random","373306660":"{{label}} is required.","373495360":"This block returns the entire SMA line, containing a list of all values for a given period.","374537470":"No results for \"{{text}}\"","375714803":"Deal Cancellation Error","377231893":"Deriv Bot is unavailable in the EU","377538732":"Key parameters","379523479":"To avoid loss of funds, do not share tokens with the Admin scope with unauthorised parties.","380606668":"tick","380694312":"Maximum consecutive trades","381972464":"Your document has expired.","384303768":"This block returns \"True\" if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","384707870":"CRS confirmation","386278304":"Install the {{platform_name_trader}} web app","386502387":"Bot is not running","389923099":"Zoom in","390890891":"Last quarter","391915203":"Hedging","392582370":"Fall Equals","393789743":"Letters, spaces, periods, hyphens, apostrophes only.","396418990":"Offline","398816980":"Launch {{platform_name_trader}} in seconds the next time you want to trade.","401339495":"Verify address","401345454":"Head to the Tutorials tab to do so.","403456289":"The formula for SMA is:","406359555":"Contract details","406497323":"Sell your active contract if needed (optional)","411482865":"Add {{deriv_account}} account","412433839":"I agree to the <0>terms and conditions.","413594348":"Only letters, numbers, space, hyphen, period, and forward slash are allowed.","417864079":"You’ll not be able to change currency once you have made a deposit.","418265501":"Demo Derived","419485005":"Spot","419496000":"Your contract is closed automatically when your profit is more than or equals to this amount. This block can only be used with the multipliers trade type.","420072489":"CFD trading frequency","422055502":"From","424101652":"Quick strategy guides >","424272085":"We take your financial well-being seriously and want to ensure you are fully aware of the risks before trading.<0/><0/>","424897068":"Do you understand that you could potentially lose 100% of the money you use to trade?","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","429970999":"To avoid delays, enter your <0>name exactly as it appears on your {{document_name}}.","431267979":"Here’s a quick guide on how to use Deriv Bot on the go.","432273174":"1:100","432508385":"Take Profit: {{ currency }} {{ take_profit }}","432519573":"Document uploaded","433348384":"Real accounts are not available to politically exposed persons (PEPs).","433616983":"2. Investigation phase","434548438":"Highlight function definition","434896834":"Custom functions","436364528":"Your account will be opened with {{legal_entity_name}}, and will be subject to the laws of Saint Vincent and the Grenadines.","436534334":"<0>We've sent you an email.","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","439398769":"This strategy is currently not compatible with Deriv Bot.","442281706":"You’ve just deleted a block.","442520703":"$250,001 - $500,000","443559872":"Financial SVG","444484637":"Logic negation","445419365":"1 - 2 years","450983288":"Your deposit is unsuccessful due to an error on the blockchain. Please contact your crypto wallet service provider for more info.","451852761":"Continue on your phone","452054360":"Similar to RSI, this block gives you a list of values for each entry in the input list.","452949978":"The 1-3-2-6 strategy is designed to capitalise on consecutive successful trades while minimising losses during losing streaks. The rationale behind this strategy lies in statistical probabilities, with adjustments to stake sizes based on the perceived likelihood of success. There is a higher likelihood of success in the second trade after one successful trade. Hence the stake adjusts to 3 in the second trade. In the third trade, the stake adjusts to 2 units due to a lower probability of a successful trade. If the third trade is also successful, the strategy then allocates all the previous gains (a total of 6 units of initial stake) into the fourth trade with the aim of doubling the potential profits. If the fourth trade results in a positive outcome, the strategy helps achieve a total gain of 12 units. However, it is crucial to exercise caution, as the risk can escalate quickly with this strategy, and any loss in the fourth trade forfeits all previous gains.","453175851":"Your MT5 Financial STP account will be opened through {{legal_entity_name}}. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","454196938":"Regulation:","456746157":"Grant access to your camera from your browser settings","457020083":"It’ll take longer to verify you if we can’t read it","457494524":"1. From the block library, enter a name for the new variable and click Create.","459612953":"Select account","459817765":"Pending","460070238":"Congratulations","460975214":"Complete your Appropriateness Test","461795838":"Please contact us via live chat to unlock it.","462079779":"Resale not offered","463361726":"Select an item","465993338":"Oscar's Grind","466424460":"Oscar’s Grind","466837068":"Yes, increase my limits","467839232":"I trade forex CFDs and other complex financial instruments regularly on other platforms.","471402292":"Your bot uses a single trade type for each run.","473154195":"Settings","474306498":"We’re sorry to see you leave. Your account is now closed.","475492878":"Try Synthetic Indices","476023405":"Didn't receive the email?","477557241":"Remote blocks to load must be a collection.","478280278":"This block displays a dialog box that uses a customised message to prompt for an input. The input can be either a string of text or a number and can be assigned to a variable. When the dialog box is displayed, your strategy is paused and will only resume after you enter a response and click \"OK\".","478827886":"We calculate this based on the barrier you’ve selected.","479420576":"Tertiary","480356486":"*Boom 300 and Crash 300 Index","481276888":"Goes Outside","483279638":"Assessment Completed<0/><0/>","483591040":"Delete all {{ delete_count }} blocks?","485379166":"View transactions","487239607":"Converts a given True or False to the opposite value","488150742":"Resend email","489768502":"Change investor password","490053735":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your loss reaches or exceeds the stop loss amount. Your loss may be more than the amount you entered depending on the market price at closing.","491603904":"Unsupported browser","492198410":"Make sure everything is clear","492566838":"Taxpayer identification number","497518317":"Function that returns a value","498562439":"or","499522484":"1. for \"string\": 1325.68 USD","500855527":"Chief Executives, Senior Officials and Legislators","500920471":"This block performs arithmetic operations between two numbers.","501401157":"You are only allowed to make deposits","501537611":"*Maximum number of open positions","502007051":"Demo Swap-Free SVG","502041595":"This block gives you a specific candle from within the selected time interval.","505793554":"last letter","508390614":"Demo Financial STP","511679687":"Accumulators allow you to express a view on the range of movement of an index and grow your stake exponentially at a fixed <0>growth rate.","514031715":"list {{ input_list }} is empty","514776243":"Your {{account_type}} password has been changed.","514948272":"Copy link","517631043":"We’ve sent your e-book. Check your email to download it.","517833647":"Volatility 50 (1s) Index","518955798":"7. Run Once at Start","519205761":"You can no longer open new positions with this account.","520136698":"Boom 500 Index","520458365":"Last used: ","521872670":"item","522703281":"divisible by","523123321":"- 10 to the power of a given number","524459540":"How do I create variables?","527329988":"This is a top-100 common password","529056539":"Options","530864956":"Deriv Apps","531114081":"3. Contract Type","531675669":"Euro","532724086":"Employment contract","533403953":"Your existing <0>{{platform}} {{type}} {{from_account}} account(s) will remain accessible.","535041346":"Max. total stake per day","537788407":"Other CFDs Platform","538017420":"0.5 pips","538042340":"Principle 2: The stake only increases when a loss trade is followed by a successful trade","538228086":"Close-Low","541650045":"Manage {{platform}} password","541700024":"First, enter your driving licence number and the expiry date.","542038694":"Only letters, numbers, space, underscore, and hyphen are allowed for {{label}}.","542305026":"You must also submit a proof of identity.","543413346":"You have no open positions for this asset. To view other open positions, click Go to Reports","547029855":"If you select this feature, you can cancel your trade within a chosen time frame if the asset price moves against your favour. You will get your stake back without profit/loss. We charge a small fee for this. Take profit and stop loss are disabled when deal cancellation is active.","549479175":"Deriv Multipliers","549799607":"Go to LiveChat","551569133":"Learn more about trading limits","554135844":"Edit","554410233":"This is a top-10 common password","555351771":"After defining trade parameters and trade options, you may want to instruct your bot to purchase contracts when specific conditions are met. To do that you can use conditional blocks and indicators blocks to help your bot to make decisions.","555881991":"National Identity Number Slip","558866810":"Run your bot","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","560759471":"You'll see these details once the contract starts.","561982839":"Change your currency","562599414":"This block returns the purchase price for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","563034502":"We shall try to resolve your complaint within 15 business days. We will inform you of the outcome together with an explanation of our position and propose any remedial measures we intend to take.","563166122":"We shall acknowledge receiving your complaint, review it carefully, and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","563652273":"Go to block","565410797":"The below image illustrates how Simple Moving Average Array block works:","566274201":"1. Market","567019968":"A variable is among the most important and powerful components in creating a bot. It is a way to store information, either as text or numbers. The information stored as a variable can be used and changed according to the given instructions. Variables can be given any name, but usually they are given useful, symbolic names so that it is easier to call them during the execution of instructions.","567163880":"Create a {{platform}} password","567755787":"Tax Identification Number is required.","569057236":"In which country was your document issued?","571921777":"Funds protection level","572576218":"Languages","573173477":"Is candle {{ input_candle }} black?","575668969":"3. For trades that result in a profit, the stake for the next trade will be increased by 2 USD. Deriv Bot will continue to add 2 USD for every successful trade. See A1.","575702000":"Remember, selfies, pictures of houses, or non-related images will be rejected.","575968081":"Account created. Select payment method for deposit.","576355707":"Select your country and citizenship:","577215477":"count with {{ variable }} from {{ start_number }} to {{ end_number }} by {{ step_size }}","577779861":"Withdrawal","577883523":"4. Awards and orders","578640761":"Call Spread","579529868":"Show all details — including the bottom 2 lines","580431127":"Restart buy/sell on error (disable for better performance): {{ checkbox }}","580665362":"Stays In/Goes Out","580774080":"insert at","581168980":"Legal","582945649":"2 minutes","584028307":"Allow equals","587577425":"Secure my account","587856857":"Want to know more about APIs?","588609216":"Repeat tour","592087722":"Employment status is required.","592381383":"Passkey successfully removed","593459109":"Try a different currency","594937260":"Derived - BVI","595080994":"Example: CR123456789","595136687":"Save Strategy","597089493":"Here is where you can decide to sell your contract before it expires. Only one copy of this block is allowed.","597481571":"DISCLAIMER","597707115":"Tell us about your trading experience.","599469202":"{{secondPast}}s ago","602278674":"Verify identity","603849445":"Strike price","603849863":"Look for the <0>Repeat While/Until, and click the + icon to add the block to the workspace area.","603899222":"Distance to current spot","606240547":"- Natural log","606877840":"Back to today","607807243":"Get candle","609519227":"This is the email address associated with your Deriv account.","609650241":"Infinite loop detected","610537973":"Any information you provide is confidential and will be used for verification purposes only.","611020126":"View address on Blockchain","613418320":"<0>Setup unsuccessful","613877038":"Chart","615156635":"Your selfie does not match your document.","617345387":"If you select \"Reset-Up”, you win the payout if the exit spot is strictly higher than either the entry spot or the spot at reset time.","617910072":"Use your Deriv account email and password to login into the {{ platform }} platform.","618520466":"Example of a cut-off document","619268911":"<0>a.The Financial Commission will investigate the validity of the complaint within 5 business days.","619407328":"Are you sure you want to unlink from {{identifier_title}}?","621829484":"{{days_passed}}d ago","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","625571750":"Entry spot:","626175020":"Standard Deviation Up Multiplier {{ input_number }}","626809456":"Resubmit","627292452":"<0>Your Proof of Identity or Proof of Address did not meet our requirements. Please check your email for further instructions.","627814558":"This block returns a value when a condition is true. Use this block within either of the function blocks above.","628193133":"Account ID","629003252":"If your current password doesn't match these requirements, you'll need to create a new one in the next step.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","629395043":"All growth rates","632398049":"This block assigns a null value to an item or statement.","632897893":"If any of the above applies to you, select <0>Yes. Otherwise, select <0>No.","634219491":"You have not provided your tax identification number. This information is necessary for legal and regulatory requirements. Please go to <0>Personal details in your account settings, and fill in your latest tax identification number.","634274250":"How long each trade takes to expire.","636219153":"To start trading, <0/>transfer funds from your Deriv account into this account.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","636427296":"Need help with tax info? Let us know via <0>live chat.","636579615":"Number of unit(s) to be added to the next trade after a losing trade. One unit is equivalent to the amount of initial stake.","639382772":"Please upload supported file type.","640249298":"Normal","640596349":"You have yet to receive any notifications","640730141":"Refresh this page to restart the identity verification process","641420532":"We've sent you an email","642210189":"Please check your email for the verification link to complete the process.","642393128":"Enter amount","642546661":"Upload back of license from your computer","644150241":"The number of contracts you have won since you last cleared your stats.","645902266":"EUR/NZD","646773081":"Profit threshold: The bot will stop trading if your total profit exceeds this amount.","647039329":"Proof of address required","647745382":"Input List {{ input_list }}","648035589":"Other CFD Platforms","649317411":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><1/>","649923867":"Adds a sign to a number to create a barrier offset. (deprecated)","650836587":"This article explores the Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","651284052":"Low Tick","651684094":"Notify","652298946":"Date of birth","654422099":"CRS confirmation is required.","654507872":"True-False","654924603":"Martingale","655937299":"We’ll update your limits. Click <0>Accept to acknowledge that you are fully responsible for your actions, and we are not liable for any addiction or loss.","656893085":"Timestamp","657325150":"This block is used to define trade options within the Trade parameters root block. Some options are only applicable for certain trade types. Parameters such as duration and stake are common among most trade types. Prediction is used for trade types such as Digits, while barrier offsets are for trade types that involve barriers such as Touch/No Touch, Ends In/Out, etc.","659482342":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your account settings.","660481941":"To access your mobile apps and other third-party apps, you'll first need to generate an API token.","660991534":"Finish","661759508":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><0/>","662953503":"Your contract will be closed when the <0>stop out level is reached.","664779910":"3. If the first trade results in profit, the stake for the following trade will not reduce but remain at the initial stake. The strategy minimally trades at the initial stake of 1 USD. See A1.","665089217":"Please submit your <0>proof of identity to authenticate your account and access your Cashier.","665777772":"XLM/USD","665872465":"In the example below, the opening price is selected, which is then assigned to a variable called \"op\".","666724936":"Please enter a valid ID number.","669494711":"1.4 pips","671630762":"We accept only these types of documents as proof of your address. The document must be recent (issued within last {{expiry_in_months}} months) and include your name and address:","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","674973192":"Use this password to log in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","676159329":"Could not switch to default account.","676675313":"Authy","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","679199080":"Why passkeys?","680334348":"This block was required to correctly convert your old strategy.","680478881":"Total withdrawal limit","681108680":"Additional information required for {{platform}} account(s)","681808253":"Previous spot price","681926004":"Example of a blurry document","682056402":"Standard Deviation Down Multiplier {{ input_number }}","685391401":"If you're having trouble signing in, let us know via <0>chat","686387939":"How do I clear my transaction log?","687193018":"Slippage risk","687212287":"Amount is a required field.","688510664":"You've {{two_fa_status}} 2FA on this device. You'll be logged out of your account on other devices (if any). Use your password and a 2FA code to log back in.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","692354762":"Please enter your {{document_name}}. {{example_format}}","693396140":"Deal cancellation (expired)","693933036":"Exploring the Oscar’s Grind strategy in Deriv Bot","694035561":"Trade options multipliers","696157141":"Low spot","696735942":"Enter your National Identification Number (NIN)","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698037001":"National Identity Number","699159918":"1. Filing complaints","699646180":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, the funds will be lost and cannot be recovered.","700259824":"Account currency","701034660":"We are still processing your withdrawal request.<0 />Please wait for the transaction to be completed before deactivating your account.","701462190":"Entry spot","701647434":"Search for string","702451070":"National ID (No Photo)","702561961":"Change theme","705262734":"Your Wallets are ready","705299518":"Next, upload the page of your passport that contains your photo.","705697927":"2. Set your preferred unit. In this example, it is 2 units or 2 USD.","705821926":"Learn about this trade type","706448499":"We'll send you a secure link to verify your request. Tap on it to confirm you want to remove the passkey. This protects your account from unauthorised requests.","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","706960383":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 60 seconds.","707189572":"Your email address has changed.<0/>Now, log in with your new email address.","707662672":"{{unblock_date}} at {{unblock_time}}","708055868":"Driving licence number","710123510":"repeat {{ while_or_until }} {{ boolean }}","711999057":"Successful","712101776":"Take a photo of your passport photo page","712635681":"This block gives you the selected candle value from a list of candles. You can choose from open price, close price, high price, low price, and open time.","713054648":"Sending","714080194":"Submit proof","714746816":"MetaTrader 5 Windows app","715841616":"Please enter a valid phone number (e.g. +15417541234).","716428965":"(Closed)","718504300":"Postal/ZIP code","718509613":"Maximum duration: {{ value }}","720293140":"Log out","720519019":"Reset my password","721011817":"- Raise the first number to the power of the second number","723045653":"You'll log in to your Deriv account with this email address.","723961296":"Manage password","724526379":"Learn more with our tutorials","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","729251105":"Range: {{min}} - {{max}} {{duration_unit_text}} ","729651741":"Choose a photo","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","732828463":"Standing instructions to transfer funds to an account maintained in the United States, or directions regularly received from a US address","734298230":"Just a reminder","734390964":"Insufficient balance","734881840":"false","735907651":"A US residence address or a US correspondence address (including a US PO box)","737751617":"<0>Explore our website to see what’s available.","739126643":"Indicative high spot","742469109":"Reset Balance","743623600":"Reference","744110277":"Bollinger Bands Array (BBA)","745656178":"Use this block to sell your contract at the market price.","745674059":"Returns the specific character from a given string of text according to the selected option. ","746112978":"Your computer may take a few seconds to update","749336930":"Secure alternative to passwords.","750886728":"Switch to your real account to submit your documents","751468800":"Start now","751692023":"We <0>do not guarantee a refund if you make a wrong transfer.","752024971":"Reached maximum number of digits","752992217":"This block gives you the selected constant values.","753088835":"Default","753184969":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you (that is, whether you possess the experience and knowledge to understand the risks involved).<0/><1/>","753727511":"Type","755138488":"We’re unable to verify the document you provided because it contains markings or text that should not be on your document. Please provide a clear photo or a scan of your original identity document.","756152377":"SMA places equal weight to the entire distribution of values.","758003269":"make list from text","760528514":"Please note that changing the value of \"i\" won't change the value of the original item in the list","761576760":"Fund your account to start trading.","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.","764366329":"Trading limits","766317539":"Language","770171141":"Go to {{hostname}}","772520934":"You may sell the contract up to 24 hours before expiry. If you do, we’ll pay you the <0>contract value.","773091074":"Stake:","773309981":"Oil/USD","773336410":"Tether is a blockchain-enabled platform designed to facilitate the use of fiat currencies in a digital manner.","775679302":"{{pending_withdrawals}} pending withdrawal(s)","775706054":"Do you sell trading bots?","776085955":"Strategies","776432808":"Select the country where you currently live.","778172770":"Deriv CFDs","780009485":"About D'Alembert","781924436":"Call Spread/Put Spread","783974693":"Avoid recent years","784311461":"Exponential Moving Average (EMA)","784583814":"Linked to your computer","785969488":"Jump 75 Index","787727156":"Barrier","788005234":"NA","792164271":"This is when your contract will expire based on the Duration or End time you’ve selected.","792622364":"Negative balance protection","793526589":"To file a complaint about our service, send an email to <0>complaints@deriv.com and state your complaint in detail. Please submit any relevant screenshots of your trading or system for our better understanding.","793531921":"Our company is one of the oldest and most reputable online trading companies in the world. We are committed to treat our clients fairly and provide them with excellent service.<0/><1/>Please provide us with feedback on how we can improve our services to you. Rest assured that you will be heard, valued, and treated fairly at all times.","794682658":"Copy the link to your phone","795859446":"Password saved","797007873":"Follow these steps to recover camera access:","797500286":"negative","800228448":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_fx}}.","800521289":"Your personal details are incomplete","801430087":"A link can contain the word \"Deriv\" and still be fake.","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","806165583":"Australia 200","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","812430133":"Spot price on the previous tick.","815925952":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open Deriv Bot.","816580787":"Welcome back! Your messages have been restored.","816738009":"<0/><1/>You may also raise your unresolved dispute to the <2>Office of the Arbiter for Financial Services.","818447476":"Switch account?","820877027":"Please verify your proof of identity","821163626":"Server maintenance occurs every first Saturday of the month from 7 to 10 GMT time. You may experience service disruption during this time.","823186089":"A block that can contain text.","824797920":"Is list empty?","825042307":"Let’s try again","825179913":"This document number was already submitted for a different account. It seems you have an account with us that doesn't need further verification. Please contact us via <0>live chat if you need help.","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830703311":"My profile","830993327":"No current transactions available","832053636":"Document submission","832217983":"40 transactions or more in the past 12 months","832398317":"Sell Error","832721563":"If you select \"Low Tick\", you win the payout if the selected tick is the lowest among the next five ticks.","834966953":"1551661986 seconds since Jan 01 1970 (UTC) translates to 03/04/2019 @ 1:13am (UTC).","835336137":"View Detail","835350845":"Add another word or two. Uncommon words are better.","836097457":"I am interested in trading but have very little experience.","837063385":"Do not send other currencies to this address.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839158849":"4. If the second trade results in a loss, the Deriv Bot will automatically increase your stake for the next trade by 2 USD. Deriv Bot will continue to add 2 USD to the previous round’s stake after every losing trade. See A2.","839805709":"To smoothly verify you, we need a better photo","841434703":"Disable stack","841543189":"View transaction on Blockchain","843333337":"You can only make deposits. Please complete the <0>financial assessment to unlock withdrawals.","845304111":"Slow EMA Period {{ input_number }}","848083350":"Your payout is equal to the <0>payout per point multiplied by the difference between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","850582774":"Please update your personal info","851054273":"If you select \"Higher\", you win the payout if the exit spot is strictly higher than the barrier.","851264055":"Creates a list with a given item repeated for a specific number of times.","851508288":"This block constrains a given number within a set range.","852527030":"Step 2","852583045":"Tick List String","852627184":"document number","854178118":"Verify your request","854399751":"Digit code must only contain numbers.","854630522":"Choose a cryptocurrency account","857363137":"Volatility 300 (1s) Index","857445204":"Deriv currently supports withdrawals of Tether eUSDT to Ethereum wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","857986403":"do something","858663703":"For new trades, please transfer your funds into the new <0>{{platform}} {{eligible_account_to_migrate}} account(s).","860319618":"Tourism","862283602":"Phone number*","863023016":"For instance, if a trader has a loss threshold (B) of 100 USD, with an initial stake (s) of 1 USD and 2 units of increment (f), the calculation would be as follows:","863328851":"Proof of identity","864610268":"First, enter your {{label}} and the expiry date.","864655280":"You can continue to hold your current open positions in your existing MT5 account(s).","864957760":"Math Number Positive","865424952":"High-to-Low","865642450":"2. Logged in from a different browser","866496238":"Make sure your license details are clear to read, with no blur or glare","868826608":"Excluded from {{brand_website_name}} until","869068127":"The cashier is temporarily down due to maintenance. It will be available as soon as the maintenance is complete.","869823595":"Function","872661442":"Are you sure you want to update email <0>{{prev_email}} to <1>{{changed_email}}?","872721776":"2. Select your XML file and hit Select.","872817404":"Entry Spot Time","873166343":"1. 'Log' displays a regular message.","873387641":"If you have open positions","874461655":"Scan the QR code with your phone","874472715":"Your funds will remain in your existing MT5 account(s).","874484887":"Take profit must be a positive number.","875101277":"If I close my web browser, will Deriv Bot continue to run?","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","879014472":"Reached maximum number of decimals","879647892":"You may sell the contract up until 60 seconds before expiry. If you do, we’ll pay you the <0>contract value.","881963105":"(XAUUSD, XAGUSD)","882423592":"The amount that you stake for the first trade. Note that this is the minimum stake amount.","885065431":"Get a Deriv account","888274063":"Town/City","888924866":"We don’t accept the following inputs for:","890299833":"Go to Reports","891337947":"Select country","893963781":"Close-to-Low","893975500":"You do not have any recent bots","894191608":"<0>c.We must award the settlement within 28 days of when the decision is reached.","896790627":"A US birthplace","898457777":"You have added a Deriv Financial account.","898904393":"Barrier:","900646972":"page.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","905564365":"MT5 CFDs","906049814":"We’ll review your documents and notify you of its status within 5 minutes.","906789729":"Your verification documents were already used for another account.","907680782":"Proof of ownership verification failed","909272635":"Financial - SVG","910888293":"Too many attempts","911048905":"(BTCUSD, ETHUSD)","912257733":"The workspace will be reset to the default strategy and any unsaved changes will be lost. <0>Note: This will not affect your running bot.","912406629":"Follow these steps:","912967164":"Import from your computer","915735109":"Back to {{platform_name}}","918447723":"Real","920125517":"Add demo account","921857297":"Enter a value from 0 to {{ value }}.","921901739":"- your account details of the bank linked to your account","922313275":"You're back online","924046954":"Upload a document showing your name and bank account number or account details.","924912760":"Your document appears to be a digital document.","929608744":"You are unable to make withdrawals","930255747":"Please enter your {{document_name}}. ","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","934932936":"PERSONAL","937237342":"Strategy name cannot be empty","937682366":"Upload both of these documents to prove your identity.","937831119":"Last name*","937992258":"Table","938500877":"{{ text }}. <0>You can view the summary of this transaction in your email.","938947787":"Withdrawal {{currency}}","938988777":"High barrier","944499219":"Max. open positions","945532698":"Contract sold","945753712":"Back to Trader’s Hub","946204249":"Read","946841802":"A white (or green) candle indicates that the open price is lower than the close price. This represents an upward movement of the market price.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947704973":"Reverse D’Alembert","947758334":"City is required","947914894":"Top up  <0>","948156236":"Create {{type}} password","948176566":"New!","949859957":"Submit","951404247":"Enjoy seamless transactions across multiple currencies and an intuitive user interface with funds segregation.","952927527":"Regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156)","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961266215":"140+","961327418":"My computer","961692401":"Bot","962251615":"If you want to adjust your self-exclusion limits, <0>contact us via live chat.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","969858761":"Principle 1: Strategy aims to potentially make one unit of profit per session","969987233":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between exit spot and lower barrier.","970915884":"AN","974888153":"High-Low","975668699":"I confirm and accept {{company}} 's <0>Terms and Conditions","975950139":"Country of Residence","977929335":"Go to my account settings","980050614":"Update now","981138557":"Redirect","981568830":"You have chosen to exclude yourself from trading on our website until {{exclude_until}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via <0>live chat.","981965437":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator.","982146443":"WhatsApp","982402892":"First line of address","982829181":"Barriers","983451828":"2. Select the asset and trade type.","986565137":"We've received your proof of income","987053672":"You can continue with the open positions on your current <0>{{platform}} {{existing_account}} account(s).","987224688":"How many trades have you placed with other financial instruments in the past 12 months?","988064913":"4. Come back to Deriv Bot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","989840364":"You’re under legal age.","990739582":"170+","992294492":"Your postal code is invalid","992677950":"Logging out on other devices","993827052":"Choosing this jurisdiction will give you a Financial STP account. Your trades will go directly to the market and have tighter spreads.","995563717":"not {{ boolean }}","997276809":"I confirm that the name and date of birth above match my chosen identity document","997311089":"Change my password","999008199":"text","1001160515":"Sell","1002989598":"iOS: iCloud keychain.","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006069082":"The objective of Martingale strategy is to take advantage of consecutive successful trades and maximise potential profits from them. This strategy is beneficial only if there are consecutive successful trades. Therefore, it is important to set a maximum stake to secure all the potential profits gained from a number of consecutive successful trades, or you could lose all the profits you have accumulated, including your initial stake. For example, if your goal is to maximise profits within 2 consecutive successful trades, you set a maximum stake of 2 USD, given your initial stake is 1 USD. Similarly, if your goal is to maximise profits within 3 consecutive successful trades, you set a maximum stake of 4 USD, given your initial stake is 1 USD.","1006458411":"Errors","1006664890":"Silent","1008151470":"Unit: The number of units that are added in the event of successful trades or the number of units removed in the event of losing trades. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","1010337648":"We were unable to verify your proof of ownership.","1011208051":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} {{jurisdiction_selected_shortcode}} account. ","1011424042":"{{text}}. stake<0/>","1012102263":"You will not be able to log in to your account until this date (up to 6 weeks from today).","1015201500":"Define your trade options such as duration and stake.","1016220824":"You need to switch to a real money account to use this feature.<0/>You can do this by selecting a real account from the <1>Account Switcher.","1018803177":"standard deviation","1019265663":"You have no transactions yet.","1019508841":"Barrier 1","1021090237":"Upgrade your <0>{{account_1}} <1/>and <0>{{account_2}} {{platform}} account(s)","1021679446":"Multipliers only","1022934784":"1 minute","1022971288":"Payout per pip","1023237947":"1. In the example below, the instructions are repeated as long as the value of x is less than or equal to 10. Once the value of x exceeds 10, the loop is terminated.","1023643811":"This block purchases contract of a specified type.","1023795011":"Even/Odd","1024205076":"Logic operation","1026046972":"Please enter a payout amount that's lower than {{max_payout}}.","1026289179":"Trade on the go","1028211549":"All fields are required","1028758659":"Citizenship*","1029164365":"We presume that you possess the experience, knowledge, and expertise to make your own investment decisions and properly assess the risk involved.","1029641567":"{{label}} must be less than 30 characters.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1033253221":"Confirm your identity to make a withdrawal.","1035893169":"Delete","1036116144":"Speculate on the price movement of an asset without actually owning it.","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039428638":"EU regulation","1039476188":"The size used to multiply the stake after a losing trade for the next trade.","1039755542":"Use a few words, avoid common phrases","1040472990":"1. Go to Bot Builder.","1040677897":"To continue trading, you must also submit a proof of address.","1041001318":"This block performs the following operations on a given list: sum, minimum, maximum, average, median, mode, antimode, standard deviation, random item.","1041620447":"If you are unable to scan the QR code, you can manually enter this code instead:","1042659819":"You have an account that needs action","1043790274":"There was an error","1044599642":"<0> has been credited into your {{platform}} {{title}} account.","1045704971":"Jump 150 Index","1045782294":"Click the <0>Change password button to change your Deriv password.","1047389068":"Food Services","1047644783":"Enable screen lock on your device.","1047881477":"Unfortunately, your browser does not support the video.","1048687543":"Labuan Financial Services Authority","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050063303":"Videos on Deriv Bot","1050128247":"I confirm that I have verified the payment agent’s transfer information.","1050844889":"Reports","1052779010":"You are on your demo account","1052921318":"{{currency}} Wallet","1053153674":"Jump 50 Index","1053159279":"Level of education","1053556481":"Once you submit your complaint, we will send you an acknowledgement email to confirm that we have received it.","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","1057519018":"4. If a trade ends in a profit, the stake for the following trade will be reset to the initial stake amount of 1 USD.","1057749183":"Two-factor authentication (2FA)","1057904606":"The concept of the D’Alembert Strategy is said to be similar to the Martingale Strategy where you will increase your contract size after a loss. With the D’Alembert Strategy, you will also decrease your contract size after a successful trade.","1058804653":"Expiry","1058905535":"Tutorial","1060231263":"When are you required to pay an initial margin?","1061308507":"Purchase {{ contract_type }}","1062423382":"Explore the video guides and FAQs to build your bot in the tutorials tab.","1062536855":"Equals","1062569830":"The <0>name on your identity document doesn't match your profile.","1065275078":"cTrader is only available on desktop for now.","1065498209":"Iterate (1)","1065766135":"You have {{remaining_transfers}} {{transfer_text}} remaining for today.","1066235879":"Transferring funds will require you to create a second account.","1066459293":"4.3. Acknowledging your complaint","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1070323991":"6. If consecutive successful trades were to happen, the stake would follow a sequence of adjustment from 1 to 3, then 2, and 6 units of initial stake. After 4 consecutive successful trades, it completes one cycle and then the strategy will repeat itself for another cycle. If any trade results in a loss, your stake will reset back to the initial stake for the next trade.","1070624871":"Check proof of address document verification status","1073261747":"Verifications","1073611269":"A copy of your identity document (e.g. identity card, passport, driver's license)","1073711308":"Trade closed","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","1078189922":"You can make a new deposit once the verification of your account is complete.","1078221772":"Leverage prevents you from opening large positions.","1078303105":"Stop out","1080068516":"Action","1080990424":"Confirm","1082158368":"*Maximum account cash balance","1082406746":"Please enter a stake amount that's at least {{min_stake}}.","1083781009":"Tax identification number*","1083826534":"Enable Block","1087112394":"You must select the strike price before entering the contract.","1088031284":"Strike:","1088138125":"Tick {{current_tick}} - ","1089085289":"Mobile number","1089436811":"Tutorials","1089687322":"Stop your current bot?","1090041864":"The {{block_type}} block is mandatory and cannot be deleted/disabled.","1095295626":"<0>•The Arbiter for Financial Services will determine whether the complaint can be accepted and is in accordance with the law.","1096078516":"We’ll review your documents and notify you of its status within 3 days.","1096175323":"You’ll need a Deriv account","1098147569":"Purchase commodities or shares of a company.","1098622295":"\"i\" starts with the value of 1, and it will be increased by 2 at every iteration. The loop will repeat until \"i\" reaches the value of 12, and then the loop is terminated.","1100133959":"National ID","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","1102420931":"Next, upload the front and back of your driving licence.","1102995654":"Calculates Exponential Moving Average (EMA) list from a list of values with a period","1103309514":"Target","1103452171":"Cookies help us to give you a better experience and personalised content on our site.","1104912023":"Pending verification","1107474660":"Submit proof of address","1107555942":"To","1109217274":"Success!","1110102997":"Statement","1112582372":"Interval duration","1113119682":"This block gives you the selected candle value from a list of candles.","1113221217":"MT5 Swap-free","1113292761":"Less than 8MB","1114679006":"You have successfully created your bot using a simple strategy.","1117281935":"Sell conditions (optional)","1117863275":"Security and safety","1118294625":"You have chosen to exclude yourself from trading on our website until {{exclusion_end}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via live chat.","1119887091":"Verification","1119986999":"Your proof of address was submitted successfully","1120985361":"Terms & conditions updated","1122910860":"Please complete your <0>financial assessment.","1123927492":"You have not selected your account currency","1124382808":"Please enter the expiry time in the format \"HH:MM\".","1125090693":"Must be a number","1126075317":"Add your Deriv MT5 <0>{{account_type_name}} STP account under Deriv (FX) Ltd regulated by Labuan Financial Services Authority (Licence no. MB/18/0024).","1126934455":"Length of token name must be between 2 and 32 characters.","1127224297":"Sorry for the interruption","1127884488":"cTrader MacOS app","1128139358":"How many CFD trades have you placed in the past 12 months?","1128321947":"Clear All","1128404172":"Undo","1129124569":"If you select \"Under\", you will win the payout if the last digit of the last tick is less than your prediction.","1129842439":"Please enter a take profit amount.","1130791706":"N","1133651559":"Live chat","1134879544":"Example of a document with glare","1134883120":"Use your Deriv account email and password to log in to cTrader.","1139483178":"Enable stack","1143730031":"Direction is {{ direction_type }}","1144028300":"Relative Strength Index Array (RSIA)","1145927365":"Run the blocks inside after a given number of seconds","1146064568":"Go to Deposit page","1147269948":"Barrier cannot be zero.","1150637063":"*Volatility 150 Index and Volatility 250 Index","1151964318":"both sides","1152294962":"Upload the front of your driving licence.","1154021400":"list","1154239195":"Title and name","1155011317":"This block converts the date and time to the number of seconds since the Unix Epoch (1970-01-01 00:00:00).","1155143434":"By clicking on <0>Next you agree to move your {{platform}} {{type}} {{from_account}} account(s) under <2/>Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","1155626418":"below","1158678321":"<0>b.The Head of the Dispute Resolution Committee (DRC) will contact both you and us within 5 business days to obtain all necessary information and see if there is a chance to settle the complaint during the investigation phase.","1160761178":"No payout if exit spot is below or equal to the lower barrier.","1161924555":"Please select an option","1163771266":"The third block is <0>optional. You may use this block if you want to sell your contract before it expires. For now, leave the block as it is. ","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","1166023941":"New password","1166128807":"Choose one of your accounts or add a new cryptocurrency account","1166377304":"Increment value","1168029733":"Win payout if exit spot is also equal to entry spot.","1169201692":"Create {{platform}} password","1170228717":"Stay on {{platform_name_trader}}","1171765024":"Step 3","1171961126":"trade parameters","1172230903":"• Stop loss threshold: Use this variable to store your loss limit. You can assign any amount you want. Your bot will stop when your losses hits or exceeds this amount.","1172524677":"CFDs Demo","1173957529":"Go to ‘Account Settings’ on Deriv.","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174689133":"3. Set your trade parameters and hit Run.","1174748431":"Payment channel","1175183064":"Vanuatu","1177396776":"If you select \"Asian Fall\", you will win the payout if the last tick is lower than the average of the ticks.","1177723589":"There are no transactions to display","1178582280":"The number of contracts you have lost since you last cleared your stats.","1178800778":"Take a photo of the back of your license","1178942276":"Please try again in a minute.","1179704370":"Please enter a take profit amount that's higher than the current potential profit.","1181396316":"This block gives you a random number from within a set range","1181770592":"Profit/loss from selling","1183007646":"- Contract type: the name of the contract type such as Rise, Fall, Touch, No Touch, etс.","1183448523":"<0>We're setting up your Wallets","1184968647":"Close your contract now or keep it running. If you decide to keep it running, you can check and close it later on the ","1186687280":"Question {{ current }} of {{ total }}","1188316409":"To receive your funds, contact the payment agent with the details below","1188980408":"5 minutes","1189249001":"4.1. What is considered a complaint?","1189368976":"Please complete your personal details before you verify your identity.","1191429031":"Please click on the link in the email to change your <0>{{platform_name_dxtrade}} password.","1192598228":"Wallets will become your dedicated fund management tool, allowing you to transfer funds between Wallets and trading accounts instantly.","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1202494002":"Get real-time data, advanced charting tools, and customisable views.","1203297580":"This block sends a message to a Telegram channel.","1203380736":"The D’Alembert strategy is less risky than Martingale, but you can still determine how long your funds will last with this strategy before trading. Simply use this formula.","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","1204459171":"Your existing <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s) will remain accessible.","1206227936":"How to mask your card?","1206821331":"Armed Forces","1208729868":"Ticks","1208903663":"Invalid token","1211912982":"Bot is starting","1214893428":"Account creation is currently unavailable for mobile. Please log in with your computer to create a new account.","1216408337":"Self-Employed","1217159705":"Bank account number","1217481729":"Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum.","1218546232":"What is Fiat onramp?","1219844088":"do %1","1221250438":"To enable withdrawals, please submit your <0>Proof of Identity (POI) and <1>Proof of Address (POA) and also complete the <2>financial assessment in your account settings.","1222096166":"Deposit via bank wire, credit card, and e-wallet","1222521778":"Making deposits and withdrawals is difficult.","1222544232":"We’ve sent you an email","1225874865":"The stake adjustment: target session profit (1 USD) - current session profit (0 USD) = 1 USD","1227074958":"random fraction","1227132397":"4. For trades that result in a loss, there are two outcomes. If it was traded at the initial stake, the next trade will remain at the same amount as the strategy trades minimally at the initial stake, see A2. If it was traded with a higher amount, the stake for the next trade would be reduced by 2 USD, see A3.","1227240509":"Trim spaces","1228534821":"Some currencies may not be supported by payment agents in your country.","1229883366":"Tax identification number","1230884443":"State/Province (optional)","1231282282":"Use only the following special characters: {{permitted_characters}}","1232291311":"Maximum withdrawal remaining","1232353969":"0-5 transactions in the past 12 months","1233300532":"Payout","1233910495":"If you select \"<0>Down\", your total profit/loss will be the percentage decrease in the underlying asset price, times the multiplier and stake, minus commissions.","1234292259":"Source of wealth","1234764730":"Upload a screenshot of your name and email address from the personal details section.","1234889964":"Better funds segregation","1237330017":"Pensioner","1238311538":"Admin","1239752061":"In your cryptocurrency wallet, make sure to select the <0>{{network_name}} network when you transfer funds to Deriv.","1239760289":"Complete your trading assessment","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1240688917":"Glossary","1241238585":"You may transfer between your Deriv fiat, cryptocurrency, and {{platform_name_mt5}} accounts.","1242288838":"Hit the checkbox above to choose your document.","1242994921":"Click here to start building your Deriv Bot.","1243064300":"Local","1243287470":"Transaction status","1246207976":"Enter the authentication code generated by your 2FA app:","1246880072":"Select issuing country","1247280835":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can make cryptocurrency deposits and withdrawals in a few minutes when the maintenance is complete.","1248018350":"Source of income","1248940117":"<0>a.The decisions made by the DRC are binding on us. DRC decisions are binding on you only if you accept them.","1250113042":"This device doesn't support passkeys.","1250495155":"Token copied!","1252669321":"Import from your Google Drive","1253531007":"Confirmed","1253636052":"MetaTrader5 web terminal","1254565203":"set {{ variable }} to create list with","1255827200":"You can also import or build your bot using any of these shortcuts.","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259145708":"Let’s try again. Choose another document and enter the corresponding details.","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1264096613":"Search for a given string","1264842111":"You can switch between real and demo accounts.","1265317149":"A recent utility bill (e.g. electricity, water or gas) or recent bank statement or government-issued letter with your name and address.","1265704976":"","1266728508":"Proof of income verification passed","1269296089":"Let's build a Bot!","1270581106":"If you select \"No Touch\", you win the payout if the market never touches the barrier at any time during the contract period.","1272012156":"GBP/CHF","1272337240":"Days","1272681097":"Hours","1274380814":"Your payout is equal to the <0>payout per pip multiplied by the difference, <1>in pips, between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","1274819385":"3. Complaints and Disputes","1276660852":"Submit your proof of identity","1281045211":"Sorts the items in a given list, by their numeric or alphabetical value, in either ascending or descending order.","1281290230":"Select","1282951921":"Only Downs","1284522768":"If \"Loss\" is selected, it will return \"True\" if your last trade was unsuccessful. Otherwise, it will return an empty string.","1286094280":"Withdraw","1286507651":"Close identity verification screen","1288965214":"Passport","1289146554":"British Virgin Islands Financial Services Commission","1289650867":"The Oscar’s Grind strategy is designed to potentially gain a modest yet steady profit in each trading session. This strategy splits trades into sessions and has three principles.","1290525720":"Example: ","1291997417":"Contracts will expire at exactly 23:59:59 GMT on your selected expiry date.","1292188546":"Reset Deriv MT5 investor password","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","1294553728":"We’re unable to verify the document you provided because it appears to be a blank image. Please try again or upload another document.","1294756261":"This block creates a function, which is a group of instructions that can be executed at any time. Place other blocks in here to perform any kind of action that you need in your strategy. When all the instructions in a function have been carried out, your bot will continue with the remaining blocks in your strategy. Click the “do something” field to give it a name of your choice. Click the plus icon to send a value (as a named variable) to your function.","1295284664":"Please accept our <0>updated Terms and Conditions to proceed.","1296380713":"Close my contract","1299479533":"8 hours","1300576911":"Please resubmit your proof of address or we may restrict your account.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","1304272843":"Please submit your proof of address.","1304620236":"Enable camera","1305217290":"Upload the back of your identity card.","1308625834":"Sets the default time interval for blocks that read list of candles.","1309017029":"Enabling this allows you to save your blocks as one collection which can be easily integrated into other bots.","1309044871":"Returns the value of the latest tick in string format","1310483610":"Results for \"{{ search_term }}\"","1311680770":"payout","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314572331":"Your document failed our verification checks.","1316216284":"You can use this password for all your {{platform}} accounts.","1319217849":"Check your mobile","1320715220":"<0>Account closed","1320750775":"Front and back","1322804930":"Restart the process on the latest version of Google Chrome","1323327633":"Our complaints process comprises the following 4 steps:","1323476617":"Changes the capitalisation of a string of text to Upper case, Lower case, Title case.","1323996051":"Profile","1324922837":"2. The new variable will appear as a block under Set variable.","1325514262":"(licence no. MB/18/0024)","1327181172":"Financial Vanuatu","1327494533":"{{sell_value}} (Sell)","1329136554":"Jump 200 Index","1329325646":"The content of this block is called on every tick","1331199417":"Please enter the correct format. ","1331367811":"Client account number","1332168410":"Learn more","1332168769":"Disconnect","1333576137":"Please update your {{details}} to continue.","1333839457":"Submit identity card (front)","1334326985":"It may take a few minutes to arrive","1335967988":"Notice","1336052175":"Switch accounts","1337846406":"This block gives you the selected candle value from a list of candles within the selected time interval.","1337864666":"Photo of your document","1338496204":"Ref. ID","1339613797":"Regulator/External dispute resolution","1340286510":"The bot has stopped, but your trade may still be running. You can check it on the Reports page.","1341840346":"View in Journal","1341921544":"Trading accounts and funds","1344696151":"Forex, stocks, stock indices, commodities, cryptocurrencies and synthetic indices.","1346038489":"Should be less than 70.","1346204508":"Take profit","1346339408":"Managers","1346947293":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there's enough light where you are and that your entire face is in the frame.","1347037687":"Trader’s Hub V2","1347071802":"{{minutePast}}m ago","1349133669":"Try changing your search criteria.","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351906264":"This feature is not available for payment agents.","1353197182":"Please select","1354288636":"Based on your answers, it looks like you have insufficient knowledge and experience in trading CFDs. CFD trading is risky and you could potentially lose all of your capital.<0/><0/>","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357010670":"I acknowledge and confirm that I would like to upgrade to Wallets.","1357213116":"Identity card","1358543466":"Not available","1358543748":"enabled","1360929368":"Add a Deriv account","1362029761":"Exploring the Reverse Martingale strategy in Deriv Bot","1362578283":"High","1363645836":"Derived FX","1363675688":"Duration is a required field.","1364045306":"Account V2","1364879837":"The verification is passed but the personal info is not available to compare.","1364958515":"Stocks","1366244749":"Limits","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1370647009":"Enjoy higher daily limits","1371193412":"Cancel","1371555192":"Choose your preferred payment agent and enter your withdrawal amount. If your payment agent is not listed, <0>search for them using their account number.","1371641641":"Open the link on your mobile","1371911731":"Financial products in the EU are offered by {{legal_entity_name}}, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>Licence no. IS/70156).","1373949314":"The Reverse Martingale strategy involves increasing your stake after each successful trade and resets to the initial stake for every losing trade as it aims to secure potential profits from consecutive wins.","1374627690":"Max. account balance","1374902304":"Your document appears to be damaged or cropped.","1375884086":"Financial, legal, or government document: recent bank statement, affidavit, or government-issued letter.","1376329801":"Last 60 days","1378419333":"Ether","1380349261":"Range","1383017005":"You have switched accounts.","1384127719":"You should enter {{min}}-{{max}} numbers.","1384222389":"Please submit valid identity documents to unlock the cashier.","1385418910":"Please set a currency for your existing real account before creating another account.","1387503299":"Log in","1388770399":"Proof of identity required","1389197139":"Import error","1390792283":"Trade parameters","1391174838":"Potential payout:","1392985917":"This is similar to a commonly used password","1393559748":"Invalid date/time: {{ datetime_string }}","1393901361":"There’s an app for that","1393903598":"if true {{ return_value }}","1396179592":"Commission","1396417530":"Bear Market Index","1397628594":"Insufficient funds","1400341216":"We’ll review your documents and notify you of its status within 1 to 3 days.","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1402224124":"Hit the button below, and we'll email you a verification link.","1402300547":"Lets get your address verified","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1407191858":"DTrader","1408844944":"Click the plus icon to extend the functionality of this block.","1411373212":"Strong passwords contain at least 8 characters. combine uppercase and lowercase letters, numbers, and symbols.","1412405902":"See important notes","1412535872":"You can check the result of the last trade with this block. It can only be placed within the \"Restart trading conditions\" root block.","1413047745":"Assigns a given value to a variable","1413359359":"Make a new transfer","1414205271":"prime","1414366321":"An uppercase letter","1414918420":"We'll review your proof of identity again and will give you an update as soon as possible.","1415006332":"get sub-list from first","1415513655":"Download cTrader on your phone to trade with the Deriv cTrader account","1415974522":"If you select \"Differs\", you will win the payout if the last digit of the last tick is not the same as your prediction.","1417558007":"Max. total loss over 7 days","1417907460":"No problem! Your passkey still works.","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","1419330165":"Forex, stocks, stock indices, commodities, cryptocurrencies, ETFs and synthetic indices","1421046084":"Setup your account","1421749665":"Simple Moving Average (SMA)","1422060302":"This block replaces a specific item in a list with another given item. It can also insert the new item in the list at a specific position.","1422129582":"All details must be clear — nothing blurry","1423082412":"Last Digit","1423296980":"Enter your SSNIT number","1424741507":"See more","1424763981":"1-3-2-6","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","1428657171":"You can only make deposits. Please contact us via <0>live chat for more information.","1430221139":"Verify now","1430396558":"5. Restart buy/sell on error","1430632931":"To get trading, please confirm who you are, and where you live.","1433367863":"Sorry, an error occured while processing your request.","1433468641":"We offer our services in all countries, except for the ones mentioned in our terms and conditions.","1434382099":"Displays a dialog window with a message","1434767075":"Get started on Deriv Bot","1434976996":"Announcement","1435363248":"This block converts the number of seconds since the Unix Epoch to a date and time format such as 2019-08-01 00:00:00.","1437396005":"Add comment","1437529196":"Payslip","1438247001":"A professional client receives a lower degree of client protection due to the following.","1438340491":"else","1439168633":"Stop loss:","1441208301":"Total<0 />profit/loss","1442747050":"Loss amount: <0>{{profit}}","1442840749":"Random integer","1443478428":"Selected proposal does not exist","1444843056":"Corporate Affairs Commission","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","1446742608":"Click here if you ever need to repeat this tour.","1449462402":"In review","1452260922":"Too many failed attempts","1452941569":"This block delays execution for a given number of seconds. You can place any blocks within this block. The execution of other blocks in your strategy will be paused until the instructions in this block are carried out.","1453317405":"This block gives you the balance of your account either as a number or a string of text.","1454406889":"Choose <0>until as the repeat option.","1454648764":"deal reference id","1454865058":"Do not enter an address linked to an ICO purchase or crowdsale. If you do, the ICO tokens will not be credited into your account.","1455741083":"Upload the back of your driving licence.","1457341530":"Your proof of identity verification has failed","1457603571":"No notifications","1458160370":"Enter your {{platform}} password to add a {{platform_name}} {{account}} {{jurisdiction_shortcode}} account.","1459761348":"Submit proof of identity","1461323093":"Display messages in the developer’s console.","1462238858":"By purchasing the \"High-to-Close\" contract, you'll win the multiplier times the difference between the high and close over the duration of the contract.","1464190305":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract without manually stopping and restarting your bot.","1464253511":"You already have an account for each of the cryptocurrencies available on {{deriv}}.","1465084972":"How much experience do you have with other financial instruments?","1465919899":"Pick an end date","1466430429":"Should be between {{min_value}} and {{max_value}}","1466900145":"Doe","1467017903":"This market is not yet available on {{platform_name_trader}}, but it is on {{platform_name_smarttrader}}.","1467421920":"with interval: %1","1467880277":"3. General queries","1468308734":"This block repeats instructions as long as a given condition is true","1468419186":"Deriv currently supports withdrawals of Tether USDT to Omni wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","1468508098":"Slippage happens when the asset price changes by the time it reaches our servers.","1469133110":"cTrader Windows app","1469150826":"Take Profit","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1470565177":"Article of association","1471008053":"Deriv Bot isn't quite ready for real accounts","1471070549":"Can contract be sold?","1471741480":"Severe error","1473369747":"Synthetics only","1475513172":"Size","1476301886":"Similar to SMA, this block gives you the entire SMA line containing a list of all values for a given period.","1478030986":"Create or delete API tokens for trading and withdrawals","1480915523":"Skip","1484336612":"This block is used to either terminate or continue a loop, and can be placed anywhere within a loop block.","1487086154":"Your documents were submitted successfully","1488548367":"Upload again","1490509675":"Options accounts","1491392301":"<0>Sold for: {{sold_for}}","1492686447":"Your MT5 Financial STP account will be opened through Deriv (FX) Ltd. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","1493673429":"Change email","1493866481":"Run Deriv X on your browser","1496810530":"GBP/AUD","1497773819":"Deriv MT5 accounts","1499080621":"Tried to perform an invalid operation.","1501691227":"Add Your Deriv MT5 <0>{{account_type_name}} account under Deriv (V) Ltd, regulated by the Vanuatu Financial Services Commission.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503618738":"- Deal reference ID: the reference ID of the contract","1505420815":"No payment agents found for your search","1505898522":"Download stack","1505927599":"Our servers hit a bump. Let’s refresh to move on.","1506251760":"Wallets","1507554225":"Submit your proof of address","1509559328":"cTrader","1509570124":"{{buy_value}} (Buy)","1509678193":"Education","1510075920":"Gold/USD","1510357015":"Tax residence is required.","1510735345":"This block gives you a list of the last digits of the last 1000 tick values.","1512469749":"In the above example it is assumed that variable candle_open_price is processed somewhere within other blocks.","1513771077":"We're processing your withdrawal.","1516559721":"Please select one file only","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1519124277":"Derived SVG","1520332426":"Net annual income","1524636363":"Authentication failed","1526012495":"This could be because:","1526483456":"2. Enter a name for your variable, and hit Create. New blocks containing your new variable will appear below.","1527251898":"Unsuccessful","1527664853":"Your payout is equal to the payout per point multiplied by the difference between the final price and the strike price.","1527906715":"This block adds the given number to the selected variable.","1531017969":"Creates a single text string from combining the text value of each attached item, without spaces in between. The number of items can be added accordingly.","1533177906":"Fall","1534796105":"Gets variable value","1537192641":"Unable to process your request","1537711064":"You need to make a quick identity verification before you can access the Cashier. Please go to your account settings to submit your proof of identity.","1540585098":"Decline","1541508606":"Looking for CFDs? Go to Trader's Hub","1541770236":"The 1-3-2-6 strategy aims to maximise potential profits with four consecutive successful trades. One unit is equal to the amount of the initial stake. The stake will adjust from 1 unit to 3 units after the first successful trade, then to 2 units after your second successful trade, and to 6 units after the third successful trade. The stake for the next trade will reset to the initial stake if there is a losing trade or a completion of the trade cycle.","1541969455":"Both","1542742708":"Synthetics, Forex, Stocks, Stock indices, Commodities, and Cryptocurrencies","1544642951":"If you select \"Only Ups\", you win the payout if consecutive ticks rise successively after the entry spot. No payout if any tick falls or is equal to any of the previous ticks.","1547148381":"That file is too big (only up to 8MB allowed). Please upload another file.","1549098835":"Total withdrawn","1549645155":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your iCloud keychain. ","1551172020":"AUD Basket","1551689907":"Enhance your trading experience by upgrading your <0/><1>{{platform}} {{type}} {{from_account}} account(s).","1555345325":"User Guide","1556391770":"You cannot make a withdrawal as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","1557426040":"Demo Derived SVG","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1559220089":"Options and multipliers trading platform.","1560302445":"Copied","1562374116":"Students","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1566717687":"We also provide a guide on the Tutorial tab to show you how you can build and execute a simple strategy.","1567076540":"Only use an address for which you have proof of residence - ","1567745852":"Bot name","1569527365":"Verification failed. Resubmit your details.","1569624004":"Dismiss alert","1570484627":"Ticks list","1571575776":"Accepted formats: pdf, jpeg, jpg, and png. Max file size: 8MB","1572504270":"Rounding operation","1572982976":"Server","1573429525":"Call/Put","1575556189":"Tether on the Ethereum blockchain, as an ERC20 token, is a newer transport layer, which now makes Tether available in Ethereum smart contracts. As a standard ERC20 token, it can also be sent to any Ethereum address.","1577480486":"Your mobile link will expire in one hour","1577527507":"Account opening reason is required.","1577612026":"Select a folder","1579839386":"Appstore","1580498808":"Multiple faces found","1584109614":"Ticks String List","1584936297":"XML file contains unsupported elements. Please check or modify file.","1587046102":"Documents from that country are not currently supported — try another document type","1589148299":"Start","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1589863913":"These are the trade parameters used for D’Alembert strategy in Deriv Bot.","1590400723":"Total assets in all your accounts","1591933071":"Resubmit document","1593010588":"Login now","1594147169":"Please come back in","1594322503":"Sell is available","1595295238":"3. Use a logic block to check if Total profit/loss is more than the Stop loss threshold amount. You can find the Total profit/loss variable under Analysis > Stats on the Blocks menu on the left. Your bot will continue to purchase new contracts until the Total profit/loss amount exceeds the Stop loss threshold amount.","1597672660":"Deriv MT5 Password","1598009247":"<0>a.You may file a complaint with the Financial Commission up to 45 days after the incident.","1598386296":"Town/City is required.","1598443642":"Transaction hash","1599743312":"An example of Reverse Martingale strategy","1602894348":"Create a password","1604916224":"Absolute","1605222432":"I have no knowledge and experience in trading at all.","1605292429":"Max. total loss","1612105450":"Get substring","1612638396":"Cancel your trade at any time within a specified timeframe.","1615897837":"Signal EMA Period {{ input_number }}","1618652381":"For instance, if a trader has a loss threshold (B) is 1000 USD, with an initial stake (s) is 1 USD, and the Martingale multiplier (m) is 2, the calculation would be as follows:","1619070150":"You are being redirected to an external website.","1620278321":"Names and surnames by themselves are easy to guess","1620346110":"Set currency","1621024661":"Tether as a TRC20 token (tUSDT) is a version of Tether that is hosted on Tron.","1622662457":"Date from","1622944161":"Now, go to the <0>Restart trading conditions block.","1623706874":"Use this block when you want to use multipliers as your trade type.","1628981793":"Can I trade cryptocurrencies on Deriv Bot?","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1631281562":"GBP Basket","1633661992":"Tick {{current_tick}}/{{tick_count}}","1634016345":"2. If the trade is successful, this strategy will automatically adjust your stake to 3 units of your initial stake for the next trade. In this case, the stake adjustment is 3 units and the initial stake is 1 USD, hence the next trade will start at 3 USD.","1634903642":"Only your face can be in the selfie","1634969163":"Change currency","1635266650":"It seems that your name in the document is not the same as your Deriv profile. Please update your name in the <0>Personal details page to solve this issue.","1635628424":"An envelope with your name and address.","1636605481":"Platform settings","1636782601":"Multipliers","1638321777":"Your demo account balance is low. Reset your balance to continue trading from your demo account.","1639262461":"Pending withdrawal request:","1639304182":"Please click on the link in the email to reset your password.","1641395634":"Last digits list","1641635657":"New proof of identity document needed","1641980662":"Salutation is required.","1644636153":"Transaction hash: <0>{{value}}","1644703962":"Looking for CFD accounts? Go to Trader's Hub","1644864436":"You’ll need to authenticate your account before requesting to become a professional client. <0>Authenticate my account","1644908559":"Digit code is required.","1645315784":"{{display_currency_code}} Wallet","1647186767":"The bot encountered an error while running.","1648938920":"Netherlands 25","1649239667":"2. Under the Blocks menu, you'll see a list of categories. Blocks are grouped within these categories. Choose the block you want and drag them to the workspace.","1650963565":"Introducing Wallets","1651513020":"Display remaining time for each interval","1651951220":"Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"","1652366857":"get and remove","1652968048":"Define your trade options such as multiplier and stake.","1652976865":"In this example, this block is used with another block to get the open prices from a list of candles. The open prices are then assigned to the variable called \"cl\".","1653136377":"copied!","1653180917":"We cannot verify you without using your camera","1653999225":"Forex: major/minor","1654365787":"Unknown","1654529197":"Purchase condition","1654721858":"Upload anyway","1655372864":"Your contract will expire on this date (in GMT), based on the end time you’ve selected.","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1659352235":"Add your Deriv MT5 CFDs account under Deriv Investments (Europe) Limited, regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156).","1665272539":"Remember: You cannot log in to your account until the selected date.","1665718170":"The document must contain a letterhead.","1665738338":"Balance","1665756261":"Go to live chat","1668138872":"Modify account settings","1669062316":"The payout at expiry is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1670016002":"Multiplier: {{ multiplier }}","1670426231":"End Time","1671232191":"You have set the following limits:","1675030608":"To create this account first we need you to resubmit your proof of address.","1676549796":"Dynamic Leverage","1677027187":"Forex","1679743486":"1. Go to Quick strategy and select the strategy you want.","1680666439":"Upload your bank statement showing your name, account number, and transaction history.","1681765749":"Martingale formula 2","1682409128":"Untitled Strategy","1682636566":"Resend email in","1683963454":"Your contract will be closed automatically at the next available asset price on {{date}} at {{timestamp}}.","1684419981":"What's this?","1686800117":"{{error_msg}}","1689103988":"Second Since Epoch","1689258195":"We were unable to verify your address with the details you provided. Please check and resubmit or choose a different document type.","1690746575":"Enhance your trading experience by upgrading your <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s).","1691335819":"To continue trading with us, please confirm who you are.","1691536201":"If you choose your duration in number of ticks, you won’t be able to terminate your contract early.","1691765860":"- Negation","1692912479":"Deriv MT5, Deriv X","1693614409":"Start time","1694517345":"Enter a new email address","1696190747":"Trading inherently involves risks, and actual profits can fluctuate due to various factors, including market volatility and other unforeseen variables. As such, exercise caution and conduct thorough research before engaging in any trading activities.","1698624570":"2. Hit Ok to confirm.","1699606318":"You've reached the limit of uploading your documents.","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1701447705":"Please update your address","1702339739":"Common mistakes","1703091957":"We collect information about your employment as part of our due diligence obligations, as required by anti-money laundering legislation.","1703712522":"Your payout is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1704656659":"How much experience do you have in CFD trading?","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711016273":"<0>This may take up to 2 minutes. During this time, some services may be unavailable.","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1713633297":"3. If the second trade is also successful, your stake will adjust to 2 USD or 2 units of the initial stake for the next trade.","1714255392":"To enable withdrawals, please complete your financial assessment.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","1715680813":"Your contract will expire at exactly 23:59:59 GMT +0 on your selected expiry date.","1717023554":"Resubmit documents","1720451994":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv fiat and Deriv cryptocurrency accounts.","1720968545":"Upload passport photo page from your computer","1722056905":"The document you provided is not supported for your country. Please provide a supported document for your country.","1722888575":"{{mt5_migration_error}}","1723069433":"Your new Wallet","1723589564":"Represents the maximum number of outstanding contracts in your portfolio. Each line in your portfolio counts for one open position. Once the maximum is reached, you will not be able to open new positions without closing an existing position first.","1724367774":"You can make a funds transfer once the verification of your account is complete.","1724696797":"You are limited to one fiat account only.","1725958461":"Account number","1726472773":"Function with no return value","1726565314":"Close my account","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1733711201":"Regulators/external dispute resolution","1734185104":"Balance: %1","1734264460":"Disclaimer","1734521537":"The document you provided appears to be two different types. Please try again or provide another document.","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738094481":"<0>Duration: Ticks 1","1738611950":"About Reverse Martingale","1738681493":"Remove your glasses, if necessary","1739086943":"Wall Street 30","1739384082":"Unemployed","1739668049":"Close your account","1740371444":"Underlying market is not selected","1742256256":"Please upload one of the following documents:","1743448290":"Payment agents","1743679873":"If you select <0>\"Call\", you’ll earn a <1>payout if the <1>final price is above the <1>strike price at <1>expiry. Otherwise, you won’t receive a payout.","1743902050":"Complete your financial assessment","1744509610":"Just drag the XML file from your computer onto the workspace, and your bot will be loaded accordingly. Alternatively, you can hit Import in Bot Builder, and choose to import your bot from your computer or from your Google Drive.","1745523557":"- Square root","1746051371":"Download the app","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1753082252":"This article explores the strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as Forex, Commodities, and Derived Indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","1753183432":"We take all complaints seriously and aim to resolve them as quickly and fairly as possible. If you are unhappy with any aspect of our service, please let us know by submitting a complaint using the guidance below:","1753226544":"remove","1753975551":"Upload passport photo page","1754256229":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts, up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts, up to {{ allowed_ctrader }} transfers between your Deriv and {{platform_name_ctrader}} accounts, and up to {{ allowed_dxtrade }} transfers between your Deriv and {{platform_name_dxtrade}} accounts.","1756678453":"break out","1758386013":"Do not get lured to fake \"Deriv\" pages!","1761038852":"Let’s continue with providing proofs of address and identity.","1761254001":"A number","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1763123662":"Upload your NIMC slip.","1766212789":"Server maintenance starts at 06:00 GMT every Sunday and may last up to 2 hours. You may experience service disruption during this time.","1766993323":"Only letters, numbers, and underscores are allowed.","1768293340":"Contract value","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1770041368":"Experience safer logins","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772396880":"The date of birth on your document doesn’t match your profile.","1777847421":"This is a very common password","1778893716":"Click here","1779144409":"Account verification required","1779519903":"Should be a valid number.","1779801832":"Please update your password accordingly.","1779872677":"Download e-book","1780442963":"Scan the QR code to download {{ platform }}.","1780770384":"This block gives you a random fraction between 0.0 to 1.0.","1782308283":"Quick strategy","1782395995":"Last Digit Prediction","1782690282":"Blocks menu","1782703044":"Sign up","1783526986":"How do I build a trading bot?","1783740125":"Upload your selfie","1785298924":"D’Alembert formula 1","1786644593":"Supported formats: JPEG, JPG, PNG, PDF, and GIF only","1787492950":"Indicators on the chart tab are for indicative purposes only and may vary slightly from the ones on the {{platform_name_dbot}} workspace.","1788515547":"<0/>For more information on submitting a complaint with the Office of the Arbiter for Financial Services, please <1>see their guidance.","1788966083":"01-07-1999","1789273878":"Payout per point","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1791432284":"Search for country","1791971912":"Recent","1792037169":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your {{document_name}}.","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1796787905":"Please upload the following document(s).","1798943788":"You can only make deposits.","1801093206":"Get candle list","1801270786":"Ready to automate your trading strategy without writing any code? You’ve come to the right place.","1801927731":"{{platform_name_dxtrade}} accounts","1803338729":"Choose what type of contract you want to trade. For example, for the Rise/Fall trade type you can choose one of three options: Rise, Fall, or Both. Selected option will determine available options for the Purchase block.","1804620701":"Expiration","1804789128":"{{display_value}} Ticks","1806017862":"Max. ticks","1808058682":"Blocks are loaded successfully","1808867555":"This block uses the variable “i” to control the iterations. With each iteration, the value of “i” is determined by the items in a given list.","1810217569":"Please refresh this page to continue.","1811109068":"Jurisdiction","1811138041":"Enter a value from {{ value }} to 9.","1811343027":"2. Select your Martingale multiplier. In this example, it is 2.","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812006199":"Identity verification","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815905959":"DTrader, DBot, SmartTrader, and Binary Bot","1815995250":"Buying contract","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1821818748":"Enter Driver License Reference number","1823177196":"Most popular","1824193700":"This block gives you the last digit of the latest tick value.","1824292864":"Call","1827607208":"File not uploaded.","1828370654":"Onboarding","1830520348":"{{platform_name_dxtrade}} Password","1831847842":"I confirm that the name and date of birth above match my chosen identity document (see below)","1833499833":"Proof of identity documents upload failed","1836767074":"Search payment agent name","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1839021527":"Please enter a valid account number. Example: CR123456789","1840721160":"Deriv MT5 latest password requirements","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1843336754":"Select document","1843658716":"If you select \"Only Downs\", you win the payout if consecutive ticks fall successively after the entry spot. No payout if any tick rises or is equal to any of the previous ticks.","1845598565":"The second session concludes upon reaching the aim of one unit of potential profit per session, equivalent to 1 USD. If trading continues, a new session will commence again.","1845892898":"(min: {{min_stake}} - max: {{max_payout}})","1846266243":"This feature is not available for demo accounts.","1846587187":"You have not selected your country of residence","1846588117":"Your contract will be closed automatically when your loss reaches {{stop_out_percentage}}% of your stake.","1849484058":"Any unsaved changes will be lost.","1850031313":"- Low: the lowest price","1850132581":"Country not found","1850659345":"- Payout: the payout of the contract","1851052337":"Place of birth is required.","1851776924":"upper","1854480511":"Cashier is locked","1854874899":"Back to list","1854909245":"Multiplier:","1855566768":"List item position","1856485118":"Please <0>resubmit your proof of address to transfer funds between MT5 and Deriv accounts.","1856755117":"Pending action required","1858251701":"minute","1859308030":"Give feedback","1861688160":"Deposit, transfer, trade","1863053247":"Please upload your identity document.","1863731653":"To receive your funds, contact the payment agent","1865525612":"No recent transactions.","1866244589":"The entry spot is the first tick for High/Low Ticks.","1866811212":"Deposit in your local currency via an authorised, independent payment agent in your country.","1867217564":"Index must be a positive integer","1867783237":"High-to-Close","1869315006":"See how we protect your funds to unlock the cashier.","1869486036":"You receive a <0>payout at <0>expiry if the spot price never touches or breaches the <0>barrier during the contract period. If it does, your contract will be terminated early.","1869787212":"Even","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871377550":"Do you offer pre-built trading bots on Deriv Bot?","1871664426":"Note","1873376454":"This is a price level that you choose. If this barrier is ever crossed, your contract would be terminated.","1874481756":"Use this block to purchase the specific contract you want. You may add multiple Purchase blocks together with conditional blocks to define your purchase conditions. This block can only be used within the Purchase conditions block.","1874756442":"BVI","1875702561":"Load or build your bot","1876015808":"Social Security and National Insurance Trust","1876325183":"Minutes","1876333357":"Tax Identification Number is invalid.","1877225775":"Your proof of address is verified","1877832150":"# from end","1878172674":"No, we don't. However, you'll find quick strategies on Deriv Bot that'll help you build your own trading bot for free.","1878189977":"The Martingale strategy involves increasing your stake after each loss to recoup prior losses with a single successful trade.","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1879651964":"<0>Pending verification","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880227067":"Submit passport photo pages","1880377568":"An example of D’Alembert strategy","1880875522":"Create \"get %1\"","1881018702":"hour","1881380263":"Total assets in your account.","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887257727":"R is the number of rounds a trader can sustain given a specific loss threshold.","1887925280":"The document must be recent and include your name and address:","1889357660":"Enter a value in minutes, up to 60480 minutes (equivalent to 6 weeks).","1890171328":"By clicking Accept below and proceeding with the Account Opening you should note that you may be exposing yourself to risks (which may be significant, including the risk of loss of the entire sum invested) that you may not have the knowledge and experience to properly assess or mitigate.","1890332321":"Returns the number of characters of a given string of text, including numbers, spaces, punctuation marks, and symbols.","1893869876":"(lots)","1894667135":"Please verify your proof of address","1896269665":"CFDs on derived and financial instruments.","1899898605":"Maximum size: 8MB","1902547203":"MetaTrader 5 MacOS app","1903437648":"Blurry photo detected","1904665809":"The Reverse Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","1905032541":"We're now ready to verify your identity","1905589481":"If you want to change your account currency, please contact us via <0>live chat.","1906213000":"Our system will finish any Deriv Bot trades that are running, and Deriv Bot will not place any new trades.","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907423697":"Earn more with Deriv API","1908023954":"Sorry, an error occurred while processing your request.","1908239019":"Make sure all of the document is in the photo","1908686066":"Appropriateness Test Warning","1909647105":"TRX/USD","1909769048":"median","1913777654":"Switch account","1914014145":"Today","1914270645":"Default Candle Interval: {{ candle_interval_type }}","1914725623":"Upload the page that contains your photo.","1916129921":"Reverse Martingale","1917178459":"Bank Verification Number","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1918796823":"Please enter a stop loss amount.","1918832194":"No experience","1919030163":"Tips to take a good selfie","1919296368":"2. Select your unit. In this example, it is 2 units or 2 USD.","1919594496":"{{website_name}} is not affiliated with any payment agents. Customers deal with payment agents at their sole risk. Customers are advised to check the credentials of payment agents and the accuracy of any information about payment agents (on {{website_name}} or elsewhere) before using their services.","1919694313":"To start trading, transfer funds from your Deriv account into this account.","1920217537":"Compare","1920468180":"How to use the SMA block","1921634159":"A few personal details","1921914669":"Deposit with Deriv P2P","1922529883":"Boom 1000 Index","1922955556":"Use a longer keyboard pattern with more turns","1924365090":"Maybe later","1924765698":"Place of birth*","1928930389":"GBP/NOK","1929694162":"Compare accounts","1930899934":"Tether","1931659123":"Run on every tick","1931884033":"It seems that your date of birth in the document is not the same as your Deriv profile. Please update your date of birth in the <0>Personal details page to solve this issue.","1934450653":"For <0>Contract type, set it to Both.","1938327673":"Deriv {{platform}} <0>{{is_demo}}","1939014728":"How do I remove blocks from the workspace?","1939902659":"Signal","1940408545":"Delete this token","1941915555":"Try later","1943440862":"Calculates Bollinger Bands (BB) list from a list with a period","1944204227":"This block returns current account balance.","1947527527":"1. This link was sent by you","1948044825":"MT5 Derived","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1955219734":"Town/City*","1957759876":"Upload identity document","1958788790":"This is the amount you’ll receive at expiry for every point of change in the underlying price, if the spot price never touches or breaches the barrier throughout the contract duration.","1958807602":"4. 'Table' takes an array of data, such as a list of candles, and displays it in a table format.","1959678342":"Highs & Lows","1960240336":"first letter","1964165648":"Connection lost","1965916759":"Asian options settle by comparing the last tick with the average spot over the period.","1966023998":"2FA enabled","1966281100":"Console {{ message_type }} value: {{ input_message }}","1968025770":"Bitcoin Cash","1968077724":"Agriculture","1968368585":"Employment status","1970060713":"You’ve successfully deleted a bot.","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","1973910243":"Manage your accounts","1974273865":"This scope will allow third-party apps to view your account activity, settings, limits, balance sheets, trade purchase history, and more.","1974903951":"If you hit Yes, the info you entered will be lost.","1977724653":"This account offers CFDs on financial instruments.","1978218112":"Google Authenticator","1981940238":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_v}}.","1982790875":"Upgrade your <0/><1>{{account_title}} {{platform}} account(s)","1982796981":"Declarations","1982912252":"Relative Strength Index (RSI) from a list with a period","1983001416":"Define your trade options such as multiplier and stake. This block can only be used with the multipliers trade type. If you select another trade type, this block will be replaced with the Trade options block.","1983358602":"This policy, which may change from time to time, applies to your account registered with {{legal_entity_name}}.","1983387308":"Preview","1983480826":"Sign in","1983544897":"P.O. Box is not accepted in address","1983676099":"Please check your email for details.","1984700244":"Request an input","1984742793":"Uploading documents","1985366224":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts and up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts.","1985637974":"Any blocks placed within this block will be executed at every tick. If the default candle interval is set to 1 minute in the Trade Parameters root block, the instructions in this block will be executed once every minute. Place this block outside of any root block.","1986322868":"When your loss reaches or exceeds this amount, your trade will be closed automatically.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1990331072":"Proof of ownership","1990735316":"Rise Equals","1991055223":"View the market price of your favourite assets.","1991448657":"Don't know your tax identification number? Click <0>here to learn more.","1991524207":"Jump 100 Index","1994023526":"The email address you entered had a mistake or typo (happens to the best of us).","1994558521":"The platforms aren’t user-friendly.","1994600896":"This block requires a list of candles as an input parameter.","1995023783":"First line of address*","1996767628":"Please confirm your tax information.","1997138507":"If the last tick is equal to the average of the ticks, you don't win the payout.","1997313835":"Your stake will continue to grow as long as the current spot price remains within a specified <0>range from the <0>previous spot price. Otherwise, you lose your stake and the trade is terminated.","1999213036":"Enhanced security is just a tap away.","1999346412":"For faster verification, input the same address here as in your proof of address document (see section below)","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","2001361785":"1. Start with the initial stake. Let’s say 1 USD.","2004052487":"Estimating the lifespan of your trades","2007028410":"market, trade type, contract type","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","2012139674":"Android: Google password manager.","2014536501":"Card number","2014590669":"Variable '{{variable_name}}' has no value. Please set a value for variable '{{variable_name}}' to notify.","2017672013":"Please select the country of document issuance.","2019596693":"The document was rejected by the Provider.","2020545256":"Close your account?","2021037737":"Please update your details to continue.","2021161151":"Watch this video to learn how to build a trading bot on Deriv Bot. Also, check out this blog post on building a trading bot.","2023546580":"Your account will be available for trading once the verification of your account is complete.","2023659183":"Student","2023762268":"I prefer another trading website.","2025339348":"Move away from direct light — no glare","2027441253":"Why do we collect this?","2027625329":"Simple Moving Average Array (SMAA)","2027638150":"Upgrade","2027696535":"Tax information","2028163119":"EOS/USD","2029237955":"Labuan","2030018735":"RSI is a technical analysis tool that helps you identify the market trend. It will give you a value from 0 to 100. An RSI value of 70 and above means that the asset is overbought and the current trend may reverse, while a value of 30 and below means that the asset is oversold.","2030045667":"Message","2033648953":"This block gives you the specified candle value for a selected time interval.","2034803607":"You must be 18 years old and above.","2035258293":"Start trading with us","2035925727":"sort {{ sort_type }} {{ sort_direction }} {{ input_list }}","2036578466":"Should be {{value}}","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2038562422":"TIN is required.","2039198937":"Maximum stake: The maximum amount you are willing to pay to enter a single trade. The stake for your next trade will reset to the initial stake if it exceeds this value. This is an optional risk management parameter.","2042023623":"We’re reviewing your documents. This should take about 5 minutes.","2042050260":"- Purchase price: the purchase price (stake) of the contract","2042115724":"Upload a screenshot of your account and personal details page with your name, account number, phone number, and email address.","2044086432":"The close is the latest tick at or before the end time. If you selected a specific end time, the end time is the selected time.","2046273837":"Last tick","2046577663":"Import or choose your bot","2048110615":"Email address*","2048134463":"File size exceeded.","2049386104":"We need you to submit these in order to get this account:","2050170533":"Tick list","2051558666":"View transaction history","2052022586":"To enhance your MT5 account security we have upgraded our password policy.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2056369950":"<0>To complete your Wallet setup, log out and then log in again.","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2059365224":"Yes, you can get started with a pre-built bot using the Quick strategy feature. You’ll find some of the most popular trading strategies here: Martingale, D'Alembert, and Oscar's Grind. Just select the strategy, enter your trade parameters, and your bot will be created for you. You can always tweak the parameters later.","2059753381":"Why did my verification fail?","2060873863":"Your order {{order_id}} is complete","2062912059":"function {{ function_name }} {{ function_params }}","2063812316":"Text Statement","2063815003":"Ready to enable Wallets","2063890788":"Cancelled","2066978677":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0 /> {{opening_date}}.","2067903936":"Driving licence","2070002739":"Don’t accept","2070345146":"When opening a leveraged CFD trade.","2070518923":"Import your bot or tap Quick Strategies to choose from the ready-to-use bot templates.","2070752475":"Regulatory Information","2070858497":"Your document appears to be a screenshot.","2071043849":"Browse","2074207096":"How to create a passkey?","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","2074713563":"4.2. Submission of a complaint","2079925695":"Unit: The number of units that are added in the event of a trade resulting in loss or the number of units removed in the event of a trade resulting in profit. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","2080553498":"3. Get the chat ID using the Telegram REST API (read more: https://core.telegram.org/bots/api#getupdates)","2080829530":"Sold for: {{sold_for}}","2081622549":"Must be a number higher than {{ min }}","2082533832":"Yes, delete","2084693624":"Converts a string representing a date/time string into seconds since Epoch. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825. Time and time zone offset are optional.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","2086048243":"Certificate of incorporation","2086792088":"Both barriers should be relative or absolute","2088735355":"Your session and login limits","2089087110":"Basket indices","2089395053":"Unit","2089581483":"Expires on","2090650973":"The spot price may change by the time your order reaches our servers. When this happens, your payout may be affected.","2091671594":"Status","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2096603244":"Derived - Vanuatu","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2097815211":"Number of rounds (R) = 10","2097932389":"Upload 2 separate screenshots from the personal details page and the account page via <0>https://app.astropay.com/profile","2099488590":"Changes to your Deriv MT5 login","2100713124":"account","2100912278":"4. If a trade ends in a loss, the stake for the following trade will be reset to the initial stake amount of 1 USD.","2101972779":"This is the same as the above example, using a tick list.","2102572780":"Length of digit code must be 6 characters.","2104115663":"Last login","2104364680":"Please switch to your demo account to run your Deriv Bot.","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2107882050":"The back of your document appears to be missing. Please include both sides of your identity document.","2110365168":"Maximum number of trades reached","2111015970":"This block helps you check if your contract can be sold. If your contract can be sold, it returns “True”. Otherwise, it returns an empty string.","2111528352":"Creating a variable","2112119013":"Take a selfie showing your face","2112175277":"with delimiter","2113321581":"Add a Deriv Gaming account","2114766645":"Some trade types are unavailable for {{symbol}}.","2115223095":"Loss","2117165122":"1. Create a Telegram bot and get your Telegram API token. Read more on how to create bots in Telegram here: https://core.telegram.org/bots#6-botfather","2117489390":"Auto update in {{ remaining }} seconds","2118292085":"<0>Note: You’ll receive an email when your deposit starts being processed.","2119449126":"Example output of the below example will be:","2119710534":"FAQ","2121227568":"NEO/USD","2122152120":"Assets","2127564856":"Withdrawals are locked","2128919448":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price. We won’t offer a contract value if the remaining duration is below 15 seconds or if the contract duration is in ticks.","2129807378":"Update profile","2133075559":"This means after 10 rounds of consecutive losses, this trader will lose 100 USD. This reaches the loss threshold of 100 USD, stopping the bot.","2133451414":"Duration","2133470627":"This block returns the potential payout for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","2135563258":"Forex trading frequency","2136246996":"Selfie uploaded","2136480755":"Some details in your document appear to be invalid, missing, or unclear.","2137901996":"This will clear all data in the summary, transactions, and journal panels. All counters will be reset to zero.","2137993569":"This block compares two values and is used to build a conditional structure.","2138861911":"Scans and photocopies are not accepted","2139171480":"Reset Up/Reset Down","2139362660":"left side","2141055709":"New {{type}} password","2143803283":"Purchase Error","2144609616":"If you select \"Reset-Down”, you win the payout if the exit spot is strictly lower than either the entry spot or the spot at reset time.","2145690912":"Income Earning","2145995536":"Create new account","2146336100":"in text %1 get %2","2146698770":"Pro tip: You can also click and drag out the desired block","2146892766":"Binary options trading experience","2147244655":"How do I import my own trading bot into Deriv Bot?","-931052769":"Submit verification","-1004605898":"Tips","-1938142055":"Documents uploaded","-448090287":"The link only works on mobile devices","-1244287721":"Something's gone wrong","-241258681":"You'll need to restart your verification on your computer","-929254273":"Get secure link","-2021867851":"Check back here to finish the submission","-1547069149":"Open the link and complete the tasks","-1767652006":"Here's how to do it:","-277611959":"You can now return to your computer to continue","-724178625":"Make sure full document is visible","-1519380038":"Glare detected","-1895280620":"Make sure your card details are clear to read, with no blur or glare","-1464447919":"Make sure your permit details are clear to read, with no blur or glare","-1436160506":"Make sure details are clear to read, with no blur or glare","-759124288":"Close","-759118956":"Redo","-753375398":"Enlarge image","-1042933881":"Driver's license","-1503134764":"Face photo page","-1335343167":"Sorry, no mobile phone bills","-699045522":"Documents you can use to verify your identity","-543666102":"It must be an official photo ID","-903877217":"These are the documents most likely to show your current home address","-1356835948":"Choose document","-1364375936":"Select a %{country} document","-401586196":"or upload photo – no scans or photocopies","-3110517":"Take a photo with your phone","-2033894027":"Submit identity card (back)","-20684738":"Submit license (back)","-1359585500":"Submit license (front)","-106779602":"Submit residence permit (back)","-1287247476":"Submit residence permit (front)","-1954762444":"Restart the process on the latest version of Safari","-261174676":"Must be under 10MB.","-685885589":"An error occurred while loading the component","-502539866":"Your face is needed in the selfie","-1377968356":"Please try again","-1226547734":"Try using a JPG or PNG file","-849068301":"Loading...","-1730346712":"Loading","-1849371752":"Check that your number is correct","-309848900":"Copy","-1424436001":"Send link","-1093833557":"How to scan a QR code","-1408210605":"Point your phone’s camera at the QR code","-1773802163":"If it doesn’t work, download a QR code scanner from Google Play or the App Store","-109026565":"Scan QR code","-1644436882":"Get link via SMS","-1667839246":"Enter mobile number","-1533172567":"Enter your mobile number:","-1352094380":"Send this one-time link to your phone","-28974899":"Get your secure link","-359315319":"Continue","-826420669":"Make sure","-1279080293":"2. Your desktop window stays open","-102776692":"Continue with the verification","-89152891":"Take a photo of the back of your card","-1646367396":"Take a photo of the front of your card","-1350855047":"Take a photo of the front of your license","-2119367889":"Take a photo using the basic camera mode instead","-342915396":"Take a photo","-419040068":"Passport photo page","-1354983065":"Refresh","-1925063334":"Recover camera access to continue face verification","-54784207":"Camera access is denied","-1392699864":"Allow camera access","-269477401":"Provide the whole document page for best results","-864639753":"Upload back of card from your computer","-1309771027":"Upload front of license from your computer","-1722060225":"Take photo","-565732905":"Selfie","-1703181240":"Check that it is connected and functional. You can also continue verification on your phone","-2043114239":"Camera not working?","-2029238500":"It may be disconnected. Try using your phone instead.","-468928206":"Make sure your device's camera works","-466246199":"Camera not working","-698978129":"Remember to press stop when you're done. Redo video actions","-538456609":"Looks like you took too long","-781816433":"Photo of your face","-1471336265":"Make sure your selfie clearly shows your face","-1375068556":"Check selfie","-1914530170":"Face forward and make sure your eyes are clearly visible","-776541617":"We'll compare it with your document","-478752991":"Your link will expire in one hour","-1859729380":"Keep this window open while using your mobile","-1283761937":"Resend link","-629011256":"Don't refresh this page","-1005231905":"Once you've finished we'll take you to the next step","-542134805":"Upload photo","-1462975230":"Document example","-1472844935":"The photo should clearly show your document","-1120954663":"First name*","-1659980292":"First name","-962979523":"Your {{ field_name }} as in your identity document","-1416797980":"Please enter your {{ field_name }} as in your official identity documents.","-1466268810":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your <0>account settings.","-32386760":"Name","-766265812":"first name","-1857534296":"John","-1282749116":"last name","-1485480657":"Other details","-1784741577":"date of birth","-1702919018":"Second line of address (optional)","-1315410953":"State/Province","-2040322967":"Citizenship","-344715612":"Employment status*","-1543016582":"I hereby confirm that the tax information I provided is true and complete. I will also inform {{legal_entity_name}} about any changes to this information.","-946282997":"Additional information","-1315571766":"Place of birth","-789291456":"Tax residence*","-1692219415":"Tax residence","-1903720068":"The country in which you meet the criteria for paying taxes. Usually the country in which you physically reside.","-651516152":"Tax Identification Number","-1387062433":"Account opening reason","-222283483":"Account opening reason*","-583925597":"For verification purposes as required by regulation. It’s your responsibility to provide accurate and complete answers. You can update personal details at any time in your account settings.","-1113902570":"Details","-71696502":"Previous","-1541554430":"Next","-307865807":"Risk Tolerance Warning","-690100729":"Yes, I understand the risk.","-2010628430":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, you must confirm that you understand your capital is at risk.","-863770104":"Please note that by clicking ‘OK’, you may be exposing yourself to risks. You may not have the knowledge or experience to properly assess or mitigate these risks, which may be significant, including the risk of losing the entire sum you have invested.","-684271315":"OK","-1292808093":"Trading Experience","-153346659":"Upload your selfie.","-602131304":"Passport number","-1051213440":"Upload the front and back of your identity card.","-1600807543":"First, enter your identity card number and the expiry date.","-1139923664":"Next, upload the front and back of your identity card.","-783705755":"Upload the front of your identity card.","-566750665":"NIMC slip and proof of age","-1465944279":"NIMC slip number","-429612996":"Next, upload both of the following documents.","-376981174":"Upload your proof of age: birth certificate or age declaration document.","-612174191":"First line of address is required","-242734402":"Only {{max}} characters, please.","-378415317":"State is required","-1784470716":"State is not in a proper format","-1699820408":"Please enter a {{field_name}} under {{max_number}} characters.","-1575567374":"postal/ZIP code","-816263501":"Only letters, numbers, space and hyphen are allowed.","-755626951":"Complete your address details","-1024240099":"Address","-1534917661":"Select your preferred currency","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-1631552645":"Professionals","-474864470":"Personal Care, Sales and Service Workers","-1129355784":"Agricultural, Forestry and Fishery Workers","-1242914994":"Craft, Metal, Electrical and Electronics Workers","-1317824715":"Cleaners and Helpers","-1592729751":"Mining, Construction, Manufacturing and Transport Workers","-1030759620":"Government Officers","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-654781670":"Primary","-1717373258":"Secondary","-1156937070":"$500,001 - $1,000,000","-315534569":"Over $1,000,000","-2068544539":"Salaried Employee","-531314998":"Investments & Dividends","-1235114522":"Pension","-1298056749":"State Benefits","-449943381":"Savings & Inheritance","-477761028":"Voter ID","-1466346630":"CPF","-1161338910":"First name is required.","-1161818065":"Last name should be between 2 and 50 characters.","-1281693513":"Date of birth is required.","-26599672":"Citizenship is required","-912174487":"Phone is required.","-673765468":"Letters, numbers, spaces, periods, hyphens and forward slashes only.","-212167954":"Tax Identification Number is not properly formatted.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-204765990":"Terms of use","-189310067":"Account closed","-849320995":"Assessments","-773766766":"Email and passwords","-1144318594":"Passkeys","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-526636259":"Error 404","-739367071":"Employed","-626752657":"0-1 year","-532014689":"1-2 years","-1001024004":"Over 3 years","-790513277":"6-10 transactions in the past 12 months","-580085300":"11-39 transactions in the past 12 months","-1458676679":"You should enter 2-50 characters.","-1116008222":"You should enter 9-35 numbers.","-1995979930":"First line of address is required.","-703454156":"Please enter a Postal/ZIP code under 20 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-1103497546":"Tax return","-700600899":"Business proof of address","-1073862586":"Memorandum","-1823328095":"Authorization letter","-397487797":"Enter your full card number","-1376950117":"That file format isn't supported. Please upload .pdf, .png, .jpg, or .jpeg files only.","-612752984":"These are default limits that we apply to your accounts.","-1411635770":"Learn more about account limits","-1340125291":"Done","-1101543580":"Limit","-858297154":"Represents the maximum amount of cash that you may hold in your account. If the maximum is reached, you will be asked to withdraw funds.","-976258774":"Not set","-1182362640":"Represents the maximum aggregate payouts on outstanding contracts in your portfolio. If the maximum is attained, you may not purchase additional contracts without first closing out existing positions.","-1781293089":"Maximum aggregate payouts on open positions","-1412690135":"*Any limits in your Self-exclusion settings will override these default limits.","-1598751496":"Represents the maximum volume of contracts that you may purchase in any given trading day.","-173346300":"Maximum daily turnover","-138380129":"Total withdrawal allowed","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-506122621":"Please take a moment to update your information now.","-1106259572":"Don't know your tax identification number? <1 />Click <0>here to learn more.","-252665911":"Place of birth{{required}}","-859814496":"Tax residence{{required}}","-237940902":"Tax Identification number{{required}}","-919191810":"Please fill in tax residence.","-270569590":"Intended use of account{{required}}","-2120290581":"Intended use of account is required.","-1662154767":"a recent utility bill (e.g. electricity, water, gas, landline, or internet), bank statement, or government-issued letter with your name and this address.","-594456225":"Second line of address","-1964954030":"Postal/ZIP Code","-516397235":"Be careful who you share this token with. Anyone with this token can perform the following actions on your account behalf","-989216986":"Add accounts","-617480265":"Delete token","-316749685":"Are you sure you want to delete this token?","-955038366":"Copy this token","-1668692965":"Hide this token","-1661284324":"Show this token","-1076138910":"Trade","-1666909852":"Payments","-488597603":"Trading information","-605778668":"Never","-1628008897":"Token","-1238499897":"Last Used","-1171226355":"Length of token name must be between {{MIN_TOKEN}} and {{MAX_TOKEN}} characters.","-1803339710":"Maximum {{MAX_TOKEN}} characters.","-408613988":"Select scopes based on the access you need.","-5605257":"This scope will allow third-party apps to withdraw to payment agents and make inter-account transfers for you.","-1373485333":"This scope will allow third-party apps to view your trading history.","-758221415":"This scope will allow third-party apps to open accounts for you, manage your settings and token usage, and more. ","-807767876":"Note:","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-1652683689":"Please note that you can only have 1 fiat account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-2087317410":"Oops, something went wrong.","-184202848":"Upload file","-370334393":"Click here to browse your files.","-863586176":"Drag and drop a file or click to browse your files.","-723198394":"File size should be 8MB or less","-1948369500":"File uploaded is not supported","-1040865880":"Drop files here..","-1100235269":"Industry of employment","-684388823":"Estimated net worth","-509054266":"Anticipated annual turnover","-1117345066":"Choose the document type","-1634507018":"Enter your {{document_name}}","-1237846864":"Verify again","-39187636":"{{index}}.","-337620257":"Switch to real account","-2120454054":"Add a real account","-38915613":"Unsaved changes","-2137450250":"You have unsaved changes. Are you sure you want to discard changes and leave this page?","-1067082004":"Leave Settings","-1982432743":"It appears that the address in your document doesn’t match the address\n in your Deriv profile. Please update your personal details now with the\n correct address.","-1451334536":"Continue trading","-251603364":"Your document for proof of address is expired. <0/>Please submit again.","-1425489838":"Proof of address verification not required","-1008641170":"Your account does not need address verification at this time. We will inform you if address verification is required in the future.","-60204971":"We could not verify your proof of address","-1944264183":"To continue trading, you must also submit a proof of identity.","-1088324715":"We’ll review your documents and notify you of its status within 1 - 3 working days.","-329713179":"Ok","-2145244263":"This field is required","-839094775":"Back","-1813671961":"Your identity verification failed because:","-2097808873":"We were unable to verify your ID with the details you provided. ","-1652371224":"Your profile is updated","-504784172":"Your document has been submitted","-1391934478":"Your ID is verified. You will also need to submit proof of your address.","-118547687":"ID verification passed","-200989771":"Go to personal details","-1358357943":"Please check and update your postal code before submitting proof of identity.","-1401994581":"Your personal details are missing","-2004327866":"Please select a valid country of document issuance.","-1664159494":"Country","-1044962593":"Upload Document","-749870311":"Please contact us via <0>live chat.","-1084991359":"Proof of identity verification not required","-1981334109":"Your account does not need identity verification at this time. We will inform you if identity verification is required in the future.","-182918740":"Your proof of identity submission failed because:","-155705811":"A clear colour photo or scanned image","-246893488":"JPEG, JPG, PNG, PDF, or GIF","-1454880310":"Must be valid for at least 6 months","-1949501500":"First, enter your {{label}}.","-100534371":"Before uploading, please ensure that you’re facing forward in the selfie, your face is within the frame, and your eyes are clearly visible even if you’re wearing glasses.","-1529523673":"Confirm and upload","-705047643":"Sorry, an error occured. Please select another file.","-1664309884":"Tap here to upload","-1725454783":"Failed","-856213726":"You must also submit a proof of address.","-552371330":"We were unable to verify your income. <0 /> Please check the email we've sent you for further information.","-841187054":"Try Again","-978467455":"Limit reached","-361316523":"You have reached the maximum number of allowed attempts for submitting proof of income. <0 /> Please check the email we've sent you for further information.","-1785967427":"We'll review your documents and notify you of its status within 7 working days.","-987011273":"Your proof of ownership isn't required.","-808299796":"You are not required to submit proof of ownership at this time. We will inform you if proof of ownership is required in the future.","-179726573":"We’ve received your proof of ownership.","-813779897":"Proof of ownership verification passed.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-47815161":"Please include at least 1 special character such as ( _ @ ? ! / # ) in your password.","-1313806160":"Please request a new password and check your email for the new token.","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-1108813179":"You can use this password for all your Deriv MT5 accounts.","-2068479232":"{{platform}} password","-507633532":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character such as ( _ @ ? ! / # ).","-1597186502":"Reset {{platform}} password","-638756912":"Black out digits 7 to 12 of the card number that’s shown on the front of your debit/credit card.⁤","-996691262":"We’ve introduced these limits to encourage <0>responsible trading. They are optional, and you can adjust them anytime.","-2079276011":"These limits apply to your multipliers trades only. For example, <0>maximum total loss refers to the losses on your multipliers trades.","-2116570030":"If you want to adjust your limits, <0>contact us via live chat. We’ll make the adjustments within 24 hours.","-1389915983":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or log in to resume trading. If you don’t want to set a specific limit, leave the field empty.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-1088698009":"These self-exclusion limits help you control the amount of money and time you spend trading on {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. The limits you set here will help you exercise <0>responsible trading.","-933963283":"No, review my limits","-1759860126":"Yes, log me out immediately","-572347855":"{{value}} mins","-313333548":"You’ll be able to adjust these limits at any time. You can reduce your limits from the <0>self-exclusion page. To increase or remove your limits, please contact our <1>Customer Support team.","-1265833982":"Accept","-2123139671":"Your stake and loss limits","-1250802290":"24 hours","-2070080356":"Max. total stake","-1545823544":"7 days","-180147209":"You will be automatically logged out from each session after this time limit.","-374553538":"Your account will be excluded from the website until this date (at least 6 months, up to 5 years).","-2105708790":"Your maximum account balance and open positions","-1960600163":"Once your account balance reaches this amount, you will not be able to deposit funds into your account.","-1073845224":"No. of open position(s)","-288196326":"Your maximum deposit limit","-568749373":"Max. deposit limit","-1617352279":"The email is in your spam folder (Sometimes things get lost there).","-547557964":"We can’t deliver the email to this address (Usually because of firewalls or filtering).","-142444667":"Please click on the link in the email to change your Deriv MT5 password.","-742748008":"Check your email and click the link in the email to proceed.","-84068414":"Still didn't get the email? Please contact us via <0>live chat.","-474419287":"FATCA declaration","-1101737402":"Please select*","-975118358":"Your account will be opened with {{legal_entity_name}}, regulated by the Malta Financial Services Authority (MFSA), and will be subject to the laws of Malta.","-2073934245":"The financial trading services offered on this site are only suitable for customers who accept the possibility of losing all the money they invest and who understand and have experience of the risk involved in the purchase of financial contracts. Transactions in financial contracts carry a high degree of risk. If the contracts you purchased expire as worthless, you will lose all your investment, which includes the contract premium.","-1035494182":"You acknowledge that, subject to the Company's discretion, applicable regulations, and internal checks being fulfilled, we will open an account for you and allow you to deposit funds during the client acceptance procedure. However, until the verification of your account is completed, you will not be able to trade, withdraw or make further deposits. If you do not provide relevant documents within 30-days, we will refund the deposited amount through the same payment method you used to deposit.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-1209644365":"I hereby confirm that my request for opening an account with Deriv Investments (Europe) Ltd is made on my own initiative.","-740157281":"Trading Experience Assessment","-1720468017":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you.","-1685104463":"* This is required","-186841084":"Change your login email","-907403572":"To change your email address, you'll first need to unlink your email address from your {{identifier_title}} account.","-1850792730":"Unlink from {{identifier_title}}","-428335668":"You will need to set a password to complete the process.","-1232613003":"<0>Verification failed. <1>Why?","-805775852":"<0>Needs verification.<1>Verify now","-1983989074":"<0>No new positions","-1196936955":"Upload a screenshot of your name and email address from the personal information section.","-1286823855":"Upload your mobile bill statement showing your name and phone number.","-1309548471":"Upload your bank statement showing your name and account details.","-1410396115":"Upload a photo showing your name and the first six and last four digits of your card number. If the card does not display your name, upload the bank statement showing your name and card number in the transaction history.","-3805155":"Upload a screenshot of either of the following to process the transaction:","-1523487566":"- your account profile section on the website","-613062596":"- the Account Information page on the app","-1718304498":"User ID","-609424336":"Upload a screenshot of your name, account number, and email address from the personal details section of the app or profile section of your account on the website.","-1954436643":"Upload a screenshot of your username on the General Information page at <0>https://onlinenaira.com/members/index.htm","-79853954":"Upload a screenshot of your account number and phone number on the Bank Account/Mobile wallet page at <0>https://onlinenaira.com/members/bank.htm","-1192882870":"Upload a screenshot of your name and account number from the personal details section.","-818898181":"Name in document doesn’t match your Deriv profile.","-310316375":"Address in document doesn’t match address you entered above.","-485368404":"Document issued more than 6-months ago.","-91160765":"Document issued more than 12-months ago.","-367016488":"Blurry document. All information must be clear and visible.","-1957076143":"Cropped document. All information must be clear and visible.","-1576856758":"An account with these details already exists. Please make sure the details you entered are correct as only one real account is allowed per client. If this is a mistake, contact us via <0>live chat.","-1792723131":"To avoid delays, enter your <0>date of birth exactly as it appears on your {{document_name}}.","-1629894615":"I have other financial priorities.","-844051272":"I want to stop myself from trading.","-1113965495":"I’m no longer interested in trading.","-1224285232":"Customer service was unsatisfactory.","-1231402474":"Connected apps are authorised applications associated with your account through your API token or the OAuth authorisation process. They can act on your behalf within the limitations that you have set.","-506083843":"As a user, you are responsible for sharing access and for actions that occur in your account (even if they were initiated by a third-party app on your behalf).","-831752682":"Please note that only third-party apps will be displayed on this page. Official Deriv apps will not appear here.","-915844096":"US citizenship or lawful permanent resident (green card) status","-208714573":"An “in care of” address or a “hold mail” address that is the sole address with respect to the client","-1082633433":"A power of attorney or signatory authority granted to a person with a US address.","-231863107":"No","-1858215754":"The document must be up-to-date and signed by the issuance authority.","-718917527":"Invalid or incomplete documents shall be rejected.","-1526404112":"Utility bill: electricity, water, gas, or landline phone bill.","-537552700":"Home rental agreement: valid and current agreement.","-506510414":"Date and time","-1708927037":"IP address","-870902742":"How much knowledge and experience do you have in relation to online trading?","-1929477717":"I have an academic degree, professional certification, and/or work experience related to financial services.","-1540148863":"I have attended seminars, training, and/or workshops related to trading.","-922751756":"Less than a year","-542986255":"None","-1337206552":"In your understanding, CFD trading allows you to","-456863190":"Place a position on the price movement of an asset where the outcome is a fixed return or nothing at all.","-1314683258":"Make a long-term investment for a guaranteed profit.","-1546090184":"How does leverage affect CFD trading?","-1636427115":"Leverage helps to mitigate risk.","-800221491":"Leverage guarantees profits.","-811839563":"Leverage lets you open large positions for a fraction of trade value, which may result in increased profit or loss.","-1185193552":"Close your trade automatically when the loss is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1046354":"Close your trade automatically when the profit is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1842858448":"Make a guaranteed profit on your trade.","-860053164":"When trading multipliers.","-1250327770":"When buying shares of a company.","-1222388581":"All of the above.","-1592318047":"See example","-1694758788":"Enter your document number","-1176889260":"Please select a document type.","-1265050949":"identity document","-2139303636":"You may have followed a broken link, or the page has moved to a new address.","-1448368765":"Error code: {{error_code}} page not found","-254792921":"You can only make deposits at the moment. To enable withdrawals, please complete your financial assessment.","-1437017790":"Financial information","-70342544":"We’re legally obliged to ask for your financial information.","-39038029":"Trading experience","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-1743024217":"Select Language","-136976514":"Country of residence*","-1124948631":"Professional Client","-259515058":"By default, all {{brand_website_name}} clients are retail clients but anyone can request to be treated as a professional client.","-1463348492":"I would like to be treated as a professional client.","-1958764604":"Email preference","-2068064150":"Get updates about Deriv products, services and events.","-1558679249":"Please make sure your information is correct or it may affect your trading experience.","-1822545742":"Ether Classic","-1334641066":"Litecoin","-1214036543":"US Dollar","-1782590355":"No currency has been set for this account","-2116332353":"Please close your positions in the following Deriv account(s):","-2048005267":"{{number_of_positions}} position(s)","-2125635811":"Please withdraw your funds from the following {{platform_name}} account(s):","-577445413":"Please close your positions in the following {{platform_name}} account(s):","-1219849101":"Please select at least one reason","-9323953":"Remaining characters: {{remaining_characters}}","-484540402":"An error occurred","-1911549768":"Inaccessible MT5 account(s)","-1869355019":"Action required","-1030102424":"You can't trade on Deriv.","-448385353":"You can't make transactions.","-1058447223":"Before closing your account:","-912764166":"Withdraw your funds.","-60139953":"We shall delete your personal information as soon as our legal obligations are met, as mentioned in the section on Data Retention in our <0>Security and privacy policy","-2061895474":"Closing your account will automatically log you out. We shall delete your personal information as soon as our legal obligations are met.","-203298452":"Close account","-937707753":"Go Back","-771109503":"Use our powerful, flexible, and free API to build a custom trading platform for yourself or for your business.","-1815044949":"You currently don't have any third-party authorised apps associated with your account.","-1699100421":"What are connected apps?","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-1468863262":"{{action}}","-727433417":"{{status}}","-1814836151":"What are passkeys?","-1275937234":"Unlock your account like your phone - with biometrics, face scan or PIN.","-587750445":"Extra security layer.","-642452561":"Shields against unauthorised access and phishing.","-1654043401":"You can create one passkey per device.","-1411242065":"Where are passkeys saved?","-258752017":"What happens if my Deriv account email is changed?","-634268263":"Sign in to Deriv with your existing passkey.","-1405679241":"Stored on: ","-1700177761":"Create passkey","-1729774899":"Sign in to your Google or iCloud account.","-1708254107":"Enable Bluetooth.","-613368504":"Tips:","-1897886029":"Before using passkey:","-592543249":"Add more passkeys","-585339315":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your Google password manager. ","-1728732301":"Effortless login with passkeys","-684009726":"Edit passkey","-1140319320":"Your account is now secured with a passkey.<0/>Manage your passkey through your<0/>Deriv account settings.","-1036903080":"We’re experiencing a temporary issue in processing your request. Please try again later.","-331060101":"Passkey setup failed","-713875531":"Enable bluetooth.","-80717068":"Apps you have linked to your <0>Deriv password:","-340060402":"Your Deriv X password is for logging in to your Deriv X accounts on the web and mobile apps.","-619126443":"Use the <0>Deriv password to log in to {{brand_website_name}} and {{platform_name_trader}}.","-623760979":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_trader}} and {{platform_name_go}}.","-459147994":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, {{platform_name_dbot}} and {{platform_name_ctrader}}.","-1884902844":"Max. deposit limit per day","-545085253":"Max. deposit limit over 7 days","-1031006762":"Max. deposit limit over 30 days","-1116871438":"Max. total loss over 30 days","-2134714205":"Time limit per session","-1884271702":"Time out until","-1265825026":"Timeout time must be greater than current time.","-1332882202":"Timeout time cannot be more than 6 weeks.","-1635977118":"Exclude time cannot be less than 6 months.","-2131200819":"Disable","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-2067796458":"Authentication code","-790444493":"Protect your account with 2FA. Each time you log in to your account, you will need to enter your password and an authentication code generated by a 2FA app on your smartphone.","-752939584":"How to set up 2FA for your Deriv account","-90649785":"Click here to copy key","-206376148":"Key copied!","-368010540":"You have enabled 2FA for your Deriv account.","-403552929":"To disable 2FA, please enter the six-digit authentication code generated by your 2FA app below:","-890084320":"Save and submit","-30772747":"Your personal details have been saved successfully.","-2021135479":"This field is required.","-1002044401":"Select your document*","-1272489896":"Please complete this field.","-1107320163":"Automate your trading, no coding needed.","-829643221":"Multipliers trading platform.","-2115275974":"CFDs","-1585707873":"Financial Commission","-199154602":"Vanuatu Financial Services Commission","-191165775":"Malta Financial Services Authority","-194969520":"Counterparty company","-1089385344":"Deriv (SVG) LLC","-2019617323":"Deriv (BVI) Ltd","-112814932":"Deriv (FX) Ltd","-1131400885":"Deriv Investments (Europe) Limited","-1471207907":"All assets","-781132577":"Leverage","-1591882610":"Synthetics","-543177967":"Stock indices","-362324454":"Commodities","-1071336803":"Platform","-1879666853":"Deriv MT5","-820028470":"Options & Multipliers","-1186807402":"Transfer","-224804428":"Transactions","-470018967":"Reset balance","-693105141":"MT5 Financial","-145462920":"Deriv cTrader","-1210359945":"Transfer funds to your accounts","-81256466":"You need a Deriv account to create a CFD account.","-1926387364":"We’ve sent your e-book to your email. You can also download it here.","-1057002564":"<0>We’re unable to upgrade you to Wallets at this time and are working to get this fixed as soon as we can. Please <1>try again<0>.","-1424352390":"<0>Wallets<1> — A smarter way to manage your funds","-280236366":"Enable now","-699372497":"Trade with leverage and tight spreads for better returns on successful trades. <0>Learn more","-982095728":"Get","-1790089996":"NEW!","-2134770229":"Total assets in your Deriv Apps and Deriv MT5 CFDs demo account.","-1277942366":"Total assets","-1255879419":"Trader's Hub","-493788773":"Non-EU","-673837884":"EU","-230566990":"The following documents you submitted did not pass our checks:","-846812148":"Proof of address.","-1146027991":"If you’d like to get the {{from_account}} account, resubmit these documents.","-710685402":"No new positions","-1445744852":"You can no longer open new positions with your {{from_account}} account. Please use your {{to_account}} account to open new positions.","-1699909965":"or ","-2127865736":"Your {{from_account}} account will be archived after 30 days of inactivity. You can still access your trade history until the account is archived.","-417529381":"Your current trading account(s)","-1543281897":"Instant transfers between Wallets and trading accounts","-1415400918":"Multiple currency support","-1712363879":"Why Wallets","-348452343":"Your open trading positions will not be affected while we are setting up your wallets.","-2055865877":"Non-EU regulation","-643108528":"Non-EU and EU regulation","-1002556560":"We’re unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-2051096382":"Earn a range of payouts by correctly predicting market movements with <0>options, or get the\n upside of CFDs without risking more than your initial stake with <1>multipliers.","-1638358352":"Get the upside of CFDs without risking more than your initial stake with <0>Multipliers.","-744999940":"Deriv account","-749129977":"Get a real Deriv account, start trading and manage your funds.","-2146691203":"Choice of regulation","-249184528":"You can create real accounts under EU or non-EU regulation. Click the <0><0/> icon to learn more about these accounts.","-1505234170":"Trader's Hub tour","-1901718278":"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. 70.1% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how these products work and whether you can afford to take the high risk of losing your money.","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1975494965":"Cashier","-42592103":"Deposit cryptocurrencies","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-520142572":"Cashier is currently down for maintenance","-1552080215":"Please check back in a few minutes.<0>Thank you for your patience.","-215186732":"You’ve not set your country of residence. To access Cashier, please update your country of residence in the Personal details section in your account settings.","-1392897508":"The identification documents you submitted have expired. Please submit valid identity documents to unlock Cashier. ","-954082208":"Your cashier is currently locked. Please contact us via <0>live chat to find out how to unlock it.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-2027907316":"You can make a withdrawal once the verification of your account is complete.","-541392118":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and access your cashier.","-599998434":"You cannot make a fund transfer as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","-247122507":"Your cashier is locked. Please complete the <0>financial assessment to unlock it.","-1443721737":"Your cashier is locked. See <0>how we protect your funds before you proceed.","-901712457":"Your access to Cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to <0>Self-exclusion and set your 30-day turnover limit.","-166472881":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.","-666905139":"Deposits are locked","-378858101":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits.","-1318742415":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and request for withdrawals.","-1923809087":"Unfortunately, you can only make deposits. Please contact us via <0>live chat to enable withdrawals.","-172277021":"Cashier is locked for withdrawals","-1624999813":"It seems that you've no commissions to withdraw at the moment. You can make withdrawals once you receive your commissions.","-1077304626":"Amount ({{currency}})","-1559994981":"Approximate value","-1272778997":"We've sent you an email.","-89973258":"Resend email in {{seconds}}s","-1332236294":"Please verify your identity","-1675848843":"Error","-283017497":"Retry","-1294455996":"Deriv P2P unavailable","-1838982691":"UNKNOWN","-532693866":"Something went wrong. Please refresh the page and try again.","-1196049878":"First line of home address","-1326406485":"Postal Code/ZIP","-939625805":"Telephone","-442575534":"Email verification failed","-1459042184":"Update your personal details","-1603543465":"We can't validate your personal details because there is some information missing.","-614516651":"Need help? <0>Contact us.","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-379487596":"{{selected_percentage}}% of available balance ({{format_amount}} {{currency__display_code}})","-1957498244":"more","-1059419768":"Notes","-285921910":"Learn more about <0>payment methods.","-190084602":"Transaction","-1995606668":"Amount","-2024290965":"Confirmations","-811190405":"Time","-1984478597":"The details of this transaction is available on CoinsPaid.","-316545835":"Please ensure <0>all details are <0>correct before making your transfer.","-949073402":"I confirm that I have verified the client’s transfer information.","-1752211105":"Transfer now","-1787304306":"Deriv P2P","-174976899":"P2P verification","-1705887186":"Your deposit is successful.","-142361708":"In process","-1582681840":"We’ve received your request and are waiting for more blockchain confirmations.","-1626218538":"You’ve cancelled your withdrawal request.","-1062841150":"Your withdrawal is unsuccessful due to an error on the blockchain. Please <0>contact us via live chat for more info.","-630780094":"We’re awaiting confirmation from the blockchain.","-1525882769":"Your withdrawal is unsuccessful. We've sent you an email with more information.","-298601922":"Your withdrawal is successful.","-922143389":"Deriv P2P is currently unavailable in this currency.","-1310327711":"Deriv P2P is currently unavailable in your country.","-1463156905":"Learn more about payment methods","-972283623":"Deriv P2P-V2","-685073712":"This is your <0>{{currency}} account {{loginid}}.","-1547606079":"We accept the following cryptocurrencies:","-1517325716":"Deposit via the following payment methods:","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-515809216":"Send only {{currency_name}} ({{currency_code}}) to this address.","-748636591":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, a fee is applied.","-1589407981":"To avoid loss of funds:","-1042704302":"Make sure to copy your Deriv account address correctly into your crypto wallet.","-2108344100":"Looking for a way to buy cryptocurrencies? <0>Try Fiat onramp.","-598073640":"About Tether (Ethereum)","-275902914":"Tether on Ethereum (eUSDT)","-1188009792":"Tether on Omni Layer (USDT)","-1239329687":"Tether was originally created to use the bitcoin network as its transport protocol ‒ specifically, the Omni Layer ‒ to allow transactions of tokenised traditional currency.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-91824739":"Deposit {{currency}}","-523804269":"{{amount}} {{currency}} on {{date}}","-494847428":"Address: <0>{{value}}","-1117977576":"Confirmations: <0>{{value}}","-1935946851":"View more","-1744490898":"Unfortunately, we cannot retrieve the information at this time. ","-338505133":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts, between your Deriv fiat and {{platform_name_ctrader}} accounts, and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-2056016338":"You’ll not be charged a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts.","-599632330":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-1196994774":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency accounts.","-993556039":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts and between your Deriv cryptocurrency and {{platform_name_dxtrade}} accounts.","-1382702462":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts.","-1339063554":"You may transfer between your Deriv fiat, cryptocurrency, {{platform_name_mt5}}, {{platform_name_ctrader}}, and {{platform_name_dxtrade}} accounts.","-1151983985":"Transfer limits may vary depending on the exchange rates.","-1747571263":"Please bear in mind that some transfers may not be possible.","-757062699":"Transfers may be unavailable due to high volatility or technical issues and when the exchange markets are closed.","-855721928":"Needs verification","-908402700":"Verification failed","-1866405488":"Deriv cTrader accounts","-1344870129":"Deriv accounts","-1109729546":"You will be able to transfer funds between MT5 accounts and other accounts once your address is verified.","-1593609508":"Transfer between your accounts in Deriv","-1155970854":"You have reached the maximum daily transfers. Please try again tomorrow.","-464965808":"Transfer limits: <0 /> - <1 />","-553249337":"Transfers are locked","-1638172550":"To enable this feature you must complete the following:","-1949883551":"You only have one account","-1149845849":"Back to Trader's Hub","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-1632668764":"I accept","-544232635":"Please go to the Deposit page to generate an address. Then come back here to continue with your transaction.","-1161069724":"Please copy the crypto address you see below. You'll need it to deposit your cryptocurrency.","-1388977563":"Copied!","-1962894999":"This address can only be used ONCE. Please copy a new one for your next transaction.","-451858550":"By clicking 'Continue' you will be redirected to {{ service }}, a third-party payment service provider. Please note that {{ website_name }} is not responsible for the content or services provided by {{ service }}. If you encounter any issues related to {{ service }} services, you must contact {{ service }} directly.","-2005265642":"Fiat onramp is a cashier service that allows you to convert fiat currencies to crypto to top up your Deriv crypto accounts. Listed here are third-party crypto exchanges. You’ll need to create an account with them to use their services.","-1593063457":"Select payment channel","-1309258714":"From account number","-1247676678":"To account number","-816476007":"Account holder name","-344403983":"Description","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-1254233806":"You've transferred","-953082600":"Some payment methods may not be listed here but payment agents may still offer them. If you can’t find your favourite method, contact the payment agents directly to check further.","-1491457729":"All payment methods","-142563298":"Contact your preferred payment agent for payment instructions and make your deposit.","-352134412":"Transfer limit","-1023961762":"Commission on deposits","-552873274":"Commission on withdrawal","-880645086":"Withdrawal amount","-118683067":"Withdrawal limits: <0 />-<1 />","-1125090734":"Important notice to receive your funds","-1924707324":"View transaction","-1474202916":"Make a new withdrawal","-511423158":"Enter the payment agent account number","-2059278156":"Note: {{website_name}} does not charge any transfer fees.","-1201279468":"To withdraw your funds, please choose the same payment method you used to make your deposits.","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-38063175":"{{account_text}} wallet","-705272444":"Upload a proof of identity to verify your identity","-130833284":"Please note that your maximum and minimum withdrawal limits aren’t fixed. They change due to the high volatility of cryptocurrency.","-1531269493":"We'll send you an email once your transaction has been processed.","-1572746946":"Asian Up","-686840306":"Asian Down","-2141198770":"Higher","-816098265":"Lower","-1646655742":"Spread Up","-668987427":"Spread Down","-912577498":"Matches","-1862940531":"Differs","-808904691":"Odd","-556230215":"Ends Outside","-1268220904":"Ends Between","-703542574":"Up","-1127399675":"Down","-768425113":"No Touch","-1163058241":"Stays Between","-1354485738":"Reset Call","-376148198":"Only Ups","-1337379177":"High Tick","-328036042":"Please enter a stop loss amount that's higher than the current potential loss.","-2127699317":"Invalid stop loss. Stop loss cannot be more than stake.","-1428017300":"THE","-1450728048":"OF","-255051108":"YOU","-1845434627":"IS","-931434605":"THIS","-740712821":"A","-187634388":"This block is mandatory. Here is where you can decide if your bot should continue trading. Only one copy of this block is allowed.","-2105473795":"The only input parameter determines how block output is going to be formatted. In case if the input parameter is \"string\" then the account currency will be added.","-1800436138":"2. for \"number\": 1325.68","-530632460":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of \"True\" or \"False\".","-1875717842":"Examples:","-890079872":"1. If the selected direction is \"Rise\", and the previous tick value is less than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-489739641":"2. If the selected direction is \"Fall\", and the previous tick value is more than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-2116076360":"There are 4 message types:","-1421941045":"2. 'Warn' displays a message in yellow to highlight something that needs attention.","-277850921":"If \"Win\" is selected, it will return \"True\" if your last trade was successful. Otherwise, it will return an empty string.","-1918487001":"Example:","-2139916657":"1. In the below example the loop is terminated in case \"x\" is \"False\" even though only one iteration is complete","-1238900333":"2. In the below example the loop jumps to the next iteration without executing below block in case if \"x\" is \"False\"","-1729479576":"You can use \"i\" inside the loop, for example to access list items","-1474636594":"In this example, the loop will repeat three times, as that is the number of items in the given list. During each iteration, the variable \"i\" will be assigned a value from the list. ","-908772734":"This block evaluates a statement and will perform an action only when the statement is true.","-334040831":"2. In this example, the instructions are repeated as long as the value of x is greater than or equal to 10. Once the value of x drops below 10, the loop is terminated.","-444267958":"\"Seconds Since Epoch\" block returns the number of seconds since January 1st, 1970.","-447522129":"You might need it when you want to repeat an actions after certain amount of time.","-1488259879":"The term \"candle\" refers to each bar on the candlestick chart. Each candle represents four market prices for the selected time interval:","-2020693608":"Each candlestick on the chart represents 4 market prices for the selected time interval:","-62728852":"- Open price: the opening price","-1247744334":"- Low price: the lowest price","-1386365697":"- Close price: the closing price","-1498732382":"A black (or red) candle indicates that the open price is higher than the close price. This represents a downward movement of the market price.","-1871864755":"This block gives you the last digit of the latest tick value of the selected market. If the latest tick value is 1410.90, this block will return 0. It’s useful for digit-based contracts such as Even/Odd, Matches/Differs, or Higher/Lower.","-1029671512":"In case if the \"OR\" operation is selected, the block returns \"True\" in case if one or both given values are \"True\"","-210295176":"Available operations:","-1385862125":"- Addition","-983721613":"- Subtraction","-854750243":"- Multiplication","-1394815185":"In case if the given number is less than the lower boundary of the range, the block returns the lower boundary value. Similarly, if the given number is greater than the higher boundary, the block will return the higher boundary value. In case if the given value is between boundaries, the block will return the given value unchanged.","-1034564248":"In the below example the block returns the value of 10 as the given value (5) is less than the lower boundary (10)","-2009817572":"This block performs the following operations to a given number","-671300479":"Available operations are:","-514610724":"- Absolute","-1923861818":"- Euler’s number (2.71) to the power of a given number","-1556344549":"Here’s how:","-1061127827":"- Visit the following URL, make sure to replace with the Telegram API token you created in Step 1: https://api.telegram.org/bot/getUpdates","-311389920":"In this example, the open prices from a list of candles are assigned to a variable called \"cl\".","-1460794449":"This block gives you a list of candles within a selected time interval.","-1634242212":"Used within a function block, this block returns a value when a specific condition is true.","-2012970860":"This block gives you information about your last contract.","-1504783522":"You can choose to see one of the following:","-10612039":"- Profit: the profit you’ve earned","-555996976":"- Entry time: the starting time of the contract","-1391071125":"- Exit time: the contract expiration time","-1961642424":"- Exit value: the value of the last tick of the contract","-111312913":"- Barrier: the barrier value of the contract (applicable to barrier-based trade types such as stays in/out, touch/no touch, etc.)","-674283099":"- Result: the result of the last contract: \"win\" or \"loss\"","-704543890":"This block gives you the selected candle value such as open price, close price, high price, low price, and open time. It requires a candle as an input parameter.","-482281200":"In the example below, the open price is assigned to the variable \"op\".","-364621012":"This block gives you the specified candle value for a selected time interval. You can choose which value you want:","-232477769":"- Open: the opening price","-610736310":"Use this block to sell your contract at the market price. Selling your contract is optional. You may choose to sell if the market trend is unfavourable.","-1307657508":"This block gives you the potential profit or loss if you decide to sell your contract. It can only be used within the \"Sell conditions\" root block.","-1921072225":"In the example below, the contract will only be sold if the potential profit or loss is more than the stake.","-955397705":"SMA adds the market price in a list of ticks or candles for a number of time periods, and divides the sum by that number of time periods.","-1424923010":"where n is the number of periods.","-1835384051":"What SMA tells you","-749487251":"SMA serves as an indicator of the trend. If the SMA points up then the market price is increasing and vice versa. The larger the period number, the smoother SMA line is.","-1996062088":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 10 days.","-1866751721":"Input list accepts a list of ticks or candles, while period is the specified time period.","-1097076512":"You may compare SMA values calculated on every bot run to identify the market trend direction. Alternatively, you may also use a variation of the SMA block, the Simple Moving Average Array block. ","-1254849504":"If a period of 10 is entered, the Simple Moving Average Array block will return a list of SMA values calculated based on period of 10.","-1190046167":"This block displays a dialog box with a customised message. When the dialog box is displayed, your strategy is paused and will only resume after you click \"OK\".","-859028989":"In this example, the date and time will be displayed in a green notification box.","-1452086215":"In this example, a Rise contract will be purchased at midnight on 1 August 2019.","-1765276625":"Click the multiplier drop-down menu and choose the multiplier value you want to trade with.","-1872233077":"Your potential profit will be multiplied by the multiplier value you’ve chosen.","-614454953":"To learn more about multipliers, please go to the <0>Multipliers page.","-2078588404":"Select your desired market and asset type. For example, Forex > Major pairs > AUD/JPY","-2037446013":"2. Trade Type","-533927844":"Select your desired trade type. For example, Up/Down > Rise/Fall","-1192411640":"4. Default Candle Interval","-485434772":"8. Trade Options","-1827646586":"This block assigns a given value to a variable, creating the variable if it doesn't already exist.","-254421190":"List: ({{message_length}})","-1616649196":"results","-90107030":"No results found","-1373954791":"Should be a valid number","-1278608332":"Please enter a number between 0 and {{api_max_losses}}.","-287597204":"Enter limits to stop your bot from trading when any of these conditions are met.","-1445989611":"Limits your potential losses for the day across all Deriv platforms.","-152878438":"Maximum number of trades your bot will execute for this run.","-1490942825":"Apply and run","-2067572496":"You’ve just stopped the bot. Any open contracts can be viewed on the Reports page.","-992003496":"Changes you make will not affect your running bot.","-1778025545":"You’ve successfully imported a bot.","-179005984":"Save","-610059687":"Exploring the D’Alembert strategy in Deriv Bot","-1226666341":"The D'Alembert strategy involves increasing your stake after a losing trade and reducing it after a successful trade by a predetermined number of units.","-312844882":"Initial stake: The amount that you are willing to place as a stake to enter a trade. This is the starting point for any changes in stake depending on the dynamic of the strategy being used.","-1173302981":"1. Start with the initial stake. In this example, we’ll use 1 USD.","-1540106116":"Profit and loss thresholds","-894905768":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss thresholds are reached. It's a form of risk management that can potentially enhance returns. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1946134465":"Where:","-248283982":"B is the loss threshold.","-1148521416":"f is the unit increment.","-211800490":"D’Alembert formula 2","-1772692202":"This formula helps you plan your trades by considering the amount of money you have and your comfort level with risk. It involves determining your loss threshold and the initial stake you want to trade with. Then, you use this formula to calculate the number of rounds you can trade. This process provides insight into stake sizing and expectations.","-2107238266":"The D'Alembert system offers more balanced trading through controlled stake progression. With prudent risk management like stake limits, it can be effectively automated in Deriv Bot. However, traders should thoroughly assess their risk appetite, test strategies on a demo account to align with their trading style before trading with real money. This allows optimising the approach and striking a balance between potential gains and losses whilst managing risk.","-500873566":"Disclaimer:","-344769349":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-818800551":"Exploring the Martingale strategy in Deriv Bot","-533490374":"These are the trade parameters used in Deriv Bot with Martingale strategy.","-1507161059":"Multiplier: The multiplier used to increase your stake if you're losing a trade. The value must be greater than 1.","-1333404686":"An example of Martingale strategy","-1755877136":"3. If the first trade ends in a loss, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every losing trade.","-1297651002":"If you're about to start trading and haven't established a Maximum Stake as part of your risk management strategy, you can determine how long your funds will last by employing the Martingale strategy. Simply use this formula.","-46865201":"Martingale formula 1","-116397598":"m is the Martingale multiplier.","-658161609":"Number of rounds, R ≈ 9.965","-288082521":"This means that after 10 rounds of consecutive losses, this trader will lose 1023 USD which exceeds the loss threshold of 1000 USD, stopping the bot.","-770387160":"The Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","-1901073152":"These are the trade parameters used for Oscar’s Grind strategy in Deriv Bot.","-1575153036":"An example of Oscar’s Grind strategy","-732418614":"The table above demonstrates this principle by showing that when a successful trade occurs and meets the target of one unit of potential profit which is 1 USD in this example, the session ends. If trading continues, a new session will begin.","-106266344":"Principle 3: The stake adjusts to the gap size between current loss and the target profit for the session","-492908094":"In round 7, the stake is adjusted downwards from 2 USD to 1 USD, to meet the target profit of 1 USD.","-90079299":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss threshold is reached. This is a form of risk management that can potentially boost successful trades whilst limiting the impact of loss. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1549673884":"The Oscar's Grind strategy provides a disciplined approach for incremental gains through systematic stake progression. When integrated into Deriv Bot with proper risk management like profit or loss thresholds, it offers traders a potentially powerful automated trading technique. However, traders should first thoroughly assess their risk tolerance and first try trading on a demo account in order to familiarise with the strategy before trading with real funds.","-655650222":"Exploring the Reverse D’Alembert strategy in Deriv Bot","-1864807973":"The Reverse D'Alembert strategy involves increasing your stake after a successful trade and reducing it after a losing trade by a predetermined number of units.","-809681645":"These are the trade parameters used in Deriv Bot with Reverse D’Alembert strategy.","-1239374257":"An example of Reverse D’Alembert strategy","-309821442":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-1576691912":"This article explores the Reverse Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","-1934849823":"These are the trade parameters used in Deriv Bot with Reverse Martingale strategy.","-1021919630":"Multiplier: The multiplier used to increase your stake if your trade is successful. The value must be greater than 1.","-760516362":"3. If the first trade is a successful trade, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every successful trade.","-1410950365":"Exploring the 1-3-2-6 strategy in Deriv Bot","-1175255072":"These are the trade parameters used in Deriv Bot with 1-3-2-6 strategy.","-183884527":"An example of 1-3-2-6 strategy","-275617819":"4. However, if any trade results in a loss, your stake will reset back to the initial stake of 1 USD for the next trade. The third trade results in a loss hence the stake resets to the initial stake of 1 USD for the next trade.","-719846465":"5. Upon reaching the initial stake, if the next trade still results in a loss, your stake will remain at the initial stake of 1 USD. This strategy will minimally trade at the initial stake. Refer to the fourth and fifth trade.","-1452746011":"The 1-3-2-6 strategy in trading may offer substantial gains but also comes with significant risks. Each stake is independent, and the strategy does not increase your chances of successful trades in the long run. If you encounter a series of losses, the strategy can lead to significant losses. Therefore, it is crucial for traders to assess their risk tolerance, practice in a demo account, utilise profit and loss thresholds, and fully comprehend the strategy before engaging in real-money trading.","-1016171176":"Asset","-138833194":"The underlying market your bot will trade with this strategy.","-621128676":"Trade type","-399349239":"Your bot will use this trade type for every run","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-447853970":"Loss threshold","-33106112":"The size used to multiply the stake after a successful trade for the next trade.","-1503301801":"The value must be equal or greater than {{ min }}","-1596504046":"Number of unit(s) to be added to the next trade after a successful trade. One unit is equivalent to the amount of initial stake.","-1521098535":"Max stake","-1448426542":"The stake for your next trade will reset to the initial stake if it exceeds this value.","-993953307":"Your prediction of the last digit of the asset price.","-1305281529":"D’Alembert","-1842451303":"Welcome to Deriv Bot!","-1391310674":"Check out these guides and FAQs to learn more about building your bot:","-2066779239":"FAQs","-280324365":"What is Deriv Bot?","-155173714":"Let’s build a bot!","-1919212468":"3. You can also search for the blocks you want using the search bar above the categories.","-1520558271":"For more info, check out this blog post on the basics of building a trading bot.","-980360663":"3. Choose the block you want and drag it to the workspace.","-1493168314":"What is a quick strategy?","-1680391945":"Using a quick strategy","-1177914473":"How do I save my strategy?","-271986909":"In Bot Builder, hit Save on the toolbar at the top to download your bot. Give your bot a name, and choose to download your bot to your device or Google Drive. Your bot will be downloaded as an XML file.","-1149045595":"1. After hitting Import, select Local and click Continue.","-288041546":"2. Select your XML file and hit Open.","-2127548288":"3. Your bot will be loaded accordingly.","-1311297611":"1. After hitting Import, select Google Drive and click Continue.","-1549564044":"How do I reset the workspace?","-1127331928":"In Bot Builder, hit Reset on the toolbar at the top. This will clear the workspace. Please note that any unsaved changes will be lost.","-1720444288":"How do I control my losses with Deriv Bot?","-1142295124":"There are several ways to control your losses with Deriv Bot. Here’s a simple example of how you can implement loss control in your strategy:","-2129119462":"1. Create the following variables and place them under Run once at start:","-468926787":"This is how your trade parameters, variables, and trade options should look like:","-1565344891":"Can I run Deriv Bot on multiple tabs in my web browser?","-90192474":"Yes, you can. However, there are limits on your account, such as maximum number of open positions and maximum aggregate payouts on open positions. So, just keep these limits in mind when opening multiple positions. You can find more info about these limits at Settings > Account limits.","-213872712":"No, we don't offer cryptocurrencies on Deriv Bot.","-2147346223":"In which countries is Deriv Bot available?","-352345777":"What are the most popular strategies for automated trading?","-552392096":"Three of the most commonly used strategies in automated trading are Martingale, D'Alembert, and Oscar's Grind — you can find them all ready-made and waiting for you in Deriv Bot.","-1630262763":"About Martingale","-413928457":"About Oscar's Grind","-1497015866":"About Reverse D’Alembert","-437005403":"About 1-3-2-6","-590765322":"Unfortunately, this trading platform is not available for EU Deriv account. Please switch to a non-EU account to continue trading.","-2110207996":"Deriv Bot is unavailable for this account","-971295844":"Switch to another account","-1194079833":"Deriv Bot is not available for EU clients","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-597939268":"Keep my contract","-1322453991":"You need to log in to run the bot.","-236548954":"Contract Update Error","-1223145005":"Loss amount: {{profit}}","-1206212388":"Welcome back! Your messages have been restored. You are using your {{current_currency}} account.","-1724342053":"You are using your {{current_currency}} account.","-555886064":"Won","-529060972":"Lost","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-287223248":"No transaction or activity yet.","-418247251":"Download your journal.","-2123571162":"Download","-984140537":"Add","-870004399":"<0>Bought: {{longcode}} (ID: {{transaction_id}})","-1211474415":"Filters","-186972150":"There are no messages to display","-558594655":"The bot is not running","-478946875":"The stats are cleared","-999254545":"All messages are filtered out","-934909826":"Load strategy","-1121028020":"or, if you prefer...","-254025477":"Select an XML file from your device","-1131095838":"Please upload an XML file","-523928088":"Create one or upload one from your local drive or Google Drive.","-1684205190":"Why can't I see my recent bots?","-2050879370":"1. Logged in from a different device","-811857220":"3. Cleared your browser cache","-625024929":"Leaving already?","-584289785":"No, I'll stay","-1435060006":"If you leave, your current contract will be completed, but your bot will stop running immediately.","-783058284":"Total stake","-2077494994":"Total payout","-1073955629":"No. of runs","-1729519074":"Contracts lost","-42436171":"Total profit/loss","-1856204727":"Reset","-1137823888":"Total payout since you last cleared your stats.","-992662695":"The number of times your bot has run since you last cleared your stats. Each run includes the execution of all the root blocks.","-1382491190":"Your total profit/loss since you last cleared your stats. It is the difference between your total payout and your total stake.","-24780060":"When you’re ready to trade, hit ","-2147110353":". You’ll be able to track your bot’s performance here.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-411060180":"TradingView Chart","-627895223":"Exit spot","-2140412463":"Buy price","-1299484872":"Account","-2004386410":"Win","-266502731":"Transactions detailed summary","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-596238067":"Entry/Exit spot","-1823621139":"Quick Strategy","-1782602933":"Choose a template below and set your trade parameters.","-315611205":"Strategy","-1524489375":"(optional)","-150224710":"Yes, continue","-475765963":"Edit the amount","-1349897832":"Do not show this message again.","-984512425":"Minimum duration: {{ value }}","-2084091453":"The value must be equal or greater than {{ value }}","-657364297":"The value must be equal or less than {{ value }}","-1696412885":"Import","-320197558":"Sort blocks","-939764287":"Charts","-1566369363":"Zoom out","-1285759343":"Search","-1291088318":"Purchase conditions","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1692205739":"Import a bot from your computer or Google Drive, build it from scratch, or start with a quick strategy.","-1545070554":"Delete bot","-1972599670":"Your bot will be permanently deleted when you hit ","-1692956623":"Yes, delete.","-573479616":"Are you sure you want to delete it?","-786915692":"You are connected to Google Drive","-1256971627":"To import your bot from your Google Drive, you'll need to sign in to your Google account.","-1233084347":"To know how Google Drive handles your data, please review Deriv’s <0>Privacy policy.","-1150107517":"Connect","-1150390589":"Last modified","-1393876942":"Your bots:","-767342552":"Enter your bot name, choose to save on your computer or Google Drive, and hit ","-1372891985":"Save.","-1003476709":"Save as collection","-636521735":"Save strategy","-1953880747":"Stop my bot","-1899230001":"Stopping the current bot will load the Quick Strategy you just created to the workspace.","-2131847097":"Any open contracts can be viewed on the ","-563774117":"Dashboard","-683790172":"Now, <0>run the bot to test out the strategy.","-1127164953":"Hi! Hit <0>Start for a quick tour.","-358288026":"Note: You can also find this tutorial in the <0>Tutorials tab.","-129587613":"Got it, thanks!","-1793577405":"Build from scratch","-358753028":"Create your bot using our drag-and-drop blocks or click Quick Strategy to choose from the ready-to-use bot templates.","-1212601535":"Monitor the market","-21136101":"See how your bot is doing in real-time.","-631097919":"Click <0>Run when you want to start trading, and click <0>Stop when you want to stop.","-1999747212":"Want to retake the tour?","-782992165":"Step 1 :","-1207872534":"First, set the <0>Trade parameters block.","-1656388044":"First, set <0>Market to Derived > Continuous Indices > Volatility 100 (1s) Index.","-1706298865":"Then, set <0>Trade type to Up/Down > Rise/Fall.","-1834358537":"For <0>Default candle interval, set it to 1 minute","-1940971254":"For <0>Trade options, set it as below:","-512839354":"<0>Stake: USD 10 (min: 0.35 - max: 50000)","-753745278":"Step 2 :","-1056713679":"Then, set the <0>Purchase conditions block.","-245497823":"<0>2. Purchase conditions:","-916770284":"<0>Purchase: Rise","-758077259":"Step 3 :","-677396944":"Step 4 :","-295975118":"Next, go to <0>Utility tab under the Blocks menu. Tap the drop-down arrow and hit <0>Loops.","-698493945":"Step 5 :","-1992994687":"Now, tap the <0>Analysis drop-down arrow and hit <0>Contract.","-1844492873":"Go to the <0>Last trade result block and click + icon to add the <0>Result is Win block to the workspace.","-1547091772":"Then, drag the <0>Result is win into the empty slot next to <0>repeat until block.","-736400802":"Step 6 :","-732067680":"Finally, drag and add the whole <0>Repeat block to the <0>Restart trading conditions block.","-1411787252":"Step 1","-1109392787":"Learn how to build your bot from scratch using a simple strategy.","-1263822623":"You can import a bot from your mobile device or from Google drive, see a preview in the bot builder, and start trading by running the bot.","-563921656":"Bot Builder guide","-1596172043":"Quick strategy guides","-662836330":"Would you like to keep your current contract or close it? If you decide to keep it running, you can check and close it later on the <0>Reports page.","-1717650468":"Online","-1309011360":"Open positions","-1597214874":"Trade table","-1929724703":"Compare CFD accounts","-883103549":"Account deactivated","-45873457":"NEW","-1190972431":"P2P-V2","-1837059346":"Buy / Sell","-1845037007":"Advertiser's page","-494667560":"Orders","-679691613":"My ads","-821418875":"Trader","-679102561":"Contract Details","-430118939":"Complaints policy","-1308346982":"Derived","-579984289":"Derived Demo","-1596515467":"Derived BVI","-222394569":"Derived Vanuatu","-328128497":"Financial","-533935232":"Financial BVI","-565431857":"Financial Labuan","-659955365":"Swap-Free","-291535132":"Swap-Free Demo","-1472945832":"Swap-Free SVG","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1966032552":"The length of token should be 8.","-2128137611":"Should start with letter or number, and may contain hyphen and underscore.","-1590869353":"Up to {{decimal_count}} decimal places are allowed.","-2061307421":"Should be more than {{min_value}}","-1099941162":"Should be less than {{max_value}}","-1528188268":"Straight rows of keys are easy to guess","-1339903234":"Short keyboard patterns are easy to guess","-23980798":"Repeats like \"aaa\" are easy to guess","-235760680":"Avoid repeated words and characters","-1568933154":"Sequences like abc or 6543 are easy to guess","-725663701":"Avoid sequences","-1450768475":"Recent years are easy to guess","-1804838610":"Avoid years that are associated with you","-64849469":"Dates are often easy to guess","-2006915194":"Avoid dates and years that are associated with you","-2124205211":"A word by itself is easy to guess","-1095202689":"All-uppercase is almost as easy to guess as all-lowercase","-2137856661":"Reversed words aren't much harder to guess","-1885413063":"Predictable substitutions like '@' instead of 'a' don't help very much","-369258265":"This password is on the blacklist","-577777971":"You have reached the rate limit of requests per second. Please try later.","-206321775":"Fiat","-522767852":"DEMO","-433761292":"Switching to default account.","-405439829":"Sorry, you can't view this contract because it doesn't belong to this account.","-1590712279":"Gaming","-16448469":"Virtual","-2093768906":"{{name}} has released your funds.
Would you like to give your feedback?","-705744796":"Your demo account balance has reached the maximum limit, and you will not be able to place new trades. Reset your balance to continue trading from your demo account.","-2063700253":"disabled","-1585069798":"Please click the following link to complete your Appropriateness Test.","-1287141934":"Find out more","-367759751":"Your account has not been verified","-596690079":"Enjoy using Deriv?","-265932467":"We’d love to hear your thoughts","-1815573792":"Drop your review on Trustpilot.","-823349637":"Go to Trustpilot","-1204063440":"Set my account currency","-1601813176":"Would you like to increase your daily limits to {{max_daily_buy}} {{currency}} (buy) and {{max_daily_sell}} {{currency}} (sell)?","-1751632759":"Get a faster mobile trading experience with the <0>{{platform_name_go}} app!","-1164554246":"You submitted expired identification documents","-1090244963":"Trade Smarter with Deriv Trader Chart v2.0:","-219846634":"Let’s verify your ID","-529038107":"Install","-1738575826":"Please switch to your real account or create one to access the cashier.","-1329329028":"You’ve not set your 30-day turnover limit","-132893998":"Your access to the cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to Self-exclusion and set the limit.","-1852207910":"MT5 withdrawal disabled","-764323310":"MT5 withdrawals have been disabled on your account. Please check your email for more details.","-1744163489":"Please verify your proof of income","-382676325":"To continue trading with us, please submit your proof of income.","-1902997828":"Refresh now","-753791937":"A new version of Deriv is available","-1775108444":"This page will automatically refresh in 5 minutes to load the latest version.","-1175685940":"Please contact us via live chat to enable withdrawals.","-493564794":"Please complete your financial assessment.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-1728185398":"Resubmit proof of address","-612396514":"Please resubmit your proof of address.","-1519764694":"Your proof of address is verified.","-1629185222":"Submit now","-1961967032":"Resubmit proof of identity","-117048458":"Please submit your proof of identity.","-1196422502":"Your proof of identity is verified.","-1392958585":"Please check your email.","-136292383":"Your proof of address verification is pending","-386909054":"Your proof of address verification has failed","-430041639":"Your proof of address did not pass our verification checks, and we’ve placed some restrictions on your account. Please resubmit your proof of address.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-904632610":"Reset your balance","-156611181":"Please complete the financial assessment in your account settings to unlock it.","-1925176811":"Unable to process withdrawals in the moment","-980696193":"Withdrawals are temporarily unavailable due to system maintenance. You can make withdrawals when the maintenance is complete.","-1647226944":"Unable to process deposit in the moment","-488032975":"Deposits are temporarily unavailable due to system maintenance. You can make deposits when the maintenance is complete.","-2136953532":"Scheduled cashier maintenance","-849587074":"You have not provided your tax identification number","-47462430":"This information is necessary for legal and regulatory requirements. Please go to your account settings, and fill in your latest tax identification number.","-2067423661":"Stronger security for your Deriv account","-1719731099":"With two-factor authentication, you’ll protect your account with both your password and your phone - so only you can access your account, even if someone knows your password.","-949074612":"Please contact us via live chat.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1706642239":"<0>Proof of ownership <1>required","-553262593":"<0><1>Your account is currently locked <2><3>Please upload your proof of <4>ownership to unlock your account. <5>","-1834929362":"Upload my document","-1043638404":"<0>Proof of ownership <1>verification failed","-1766760306":"<0><1>Please upload your document <2>with the correct details. <3>","-8892474":"Start assessment","-1330929685":"Please submit your proof of identity and proof of address to verify your account and continue trading.","-99461057":"Please submit your proof of address to verify your account and continue trading.","-577279362":"Please submit your proof of identity to verify your account and continue trading.","-197134911":"Your proof of identity is expired","-152823394":"Your proof of identity has expired. Please submit a new proof of identity to verify your account and continue trading.","-822813736":"We're unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-285366843":"We are going to update the login process for your Deriv MT5 account.","-978414767":"We require additional information for your Deriv MT5 account(s). Please take a moment to update your information now.","-2142540205":"It appears that the address in your document doesn’t match the address in your Deriv profile. Please update your personal details now with the correct address.","-482715448":"Go to Personal details","-2072411961":"Your proof of address has been verified","-384887227":"Update the address in your profile.","-1779268418":"Trade swap-free CFDs on MT5 with forex, stocks, stock indices, commodities cryptocurrencies, ETFs and synthetic indices.","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-402093392":"Add Deriv Account","-1721181859":"You’ll need a {{deriv_account}} account","-1989074395":"Please add a {{deriv_account}} account first before adding a {{dmt5_account}} account. Deposits and withdrawals for your {{dmt5_label}} account are done by transferring funds to and from your {{deriv_label}} account.","-689237734":"Proceed","-1642457320":"Help centre","-1966944392":"Network status: {{status}}","-181484419":"Responsible trading","-650505513":"Full screen","-1823504435":"View notifications","-1954045170":"No currency assigned","-1591792668":"Account Limits","-34495732":"Regulatory information","-1496158755":"Go to Deriv.com","-1323441180":"I hereby confirm that my request for opening an account with Deriv to trade OTC products issued and offered exclusively outside Brazil was initiated by me. I fully understand that Deriv is not regulated by CVM and by approaching Deriv I intend to set up a relation with a foreign company.","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-288996254":"Unavailable","-1019903756":"Synthetic","-735306327":"Manage accounts","-1813972756":"Account creation paused for 24 hours","-366030582":"Sorry, you're unable to create an account at this time. As you declined our previous risk warnings, we need you to wait for 24 hours after your first account creation attempt before you can proceed.<0/><0/>","-534047566":"Thank you for your understanding. You can create your account on {{real_account_unblock_date}} or later.","-399816343":"Trading Experience Assessment<0/>","-1822498621":"As per our regulatory obligations, we are required to assess your trading knowledge and experience.<0/><0/>Please click ‘OK’ to continue","-71049153":"Keep your account secure with a password","-1861974537":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters, numbers, and symbols.","-1965920446":"Start trading","-1485242688":"Step {{step}}: {{step_title}} ({{step}} of {{steps}})","-1829842622":"You can open an account for each cryptocurrency.","-987221110":"Choose a currency you would like to trade with.","-1066574182":"Choose a currency","-1914534236":"Choose your currency","-200560194":"Please switch to your {{fiat_currency}} account to change currencies.","-1829493739":"Choose the currency you would like to trade with.","-1814647553":"Add a new","-1269362917":"Add new","-650480777":"crypto account","-175638343":"Choose an account or add a new one","-1768223277":"Your account is ready","-1215717784":"<0>You have successfully changed your currency to {{currency}}.<0>Make a deposit now to start trading.","-1775006840":"Make a deposit now to start trading.","-983734304":"We need proof of your identity and address before you can start trading.","-917733293":"To get trading, please confirm where you live.","-1282628163":"You'll be able to get trading as soon as verification is complete.","-952649119":"Log In","-3815578":"Sign Up","-1456176427":"Set a currency for your real account","-241733171":"Add a Deriv Financial account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1740162250":"Manage account","-1016775979":"Choose an account","-1362081438":"Adding more real accounts has been restricted for your country.","-1602122812":"24-hour Cool Down Warning","-1519791480":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the risk of losing your money. <0/><0/>\n As you have declined our previous warning, you would need to wait 24 hours before you can proceed further.","-1010875436":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, kindly note that you would need to wait 24 hours before you can proceed further.","-1725418054":"By clicking ‘Accept’ and proceeding with the account opening, you should note that you may be exposing yourself to risks. These risks, which may be significant, include the risk of losing the entire sum invested, and you may not have the knowledge and experience to properly assess or mitigate them.","-1369294608":"Already signed up?","-730377053":"You can’t add another real account","-2100785339":"Invalid inputs","-2061807537":"Something’s not right","-617844567":"An account with your details already exists.","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-310434518":"The email input should not be empty.","-437918412":"No currency assigned to your account","-1193651304":"Country of residence","-707550055":"We need this to make sure our service complies with laws and regulations in your country.","-280139767":"Set residence","-601615681":"Select theme","-1152511291":"Dark","-1428458509":"Light","-1976089791":"Your Deriv account has been unlinked from your {{social_identity_provider}} account. You can now log in to Deriv using your new email address and password.","-505449293":"Enter a new password for your Deriv account.","-1728963310":"Stop creating an account?","-703818088":"Only log in to your account at this secure link, never elsewhere.","-1235799308":"Fake links often contain the word that looks like \"Deriv\" but look out for these differences.","-2102997229":"Examples","-82488190":"I've read the above carefully.","-97775019":"Do not trust and give away your credentials on fake websites, ads or emails.","-2142491494":"OK, got it","-611136817":"Beware of fake links.","-1342699195":"Total profit/loss:","-1941013000":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, and {{legal_entity_name_v}}.","-594812204":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}.","-813256361":"We are committed to treating our clients fairly and providing them with excellent service.<0/><1/>We would love to hear from you on how we can improve our services to you. Any information you provide will be treated in the strictest confidence. Rest assured that you will be heard, valued, and always treated fairly.","-1622847732":"If you have an inquiry regarding your trading account with {{legal_entity_name}}, you can contact us through our <0>Help centre or by chatting with a representative via <1>Live Chat.<2/><3/>We are committed to resolving your query in the quickest time possible and appreciate your patience in allowing us time to resolve the matter.<4/><5/>We strive to provide the best possible service and support to our customers. However, in the event that we are unable to resolve your query or if you feel that our response is unsatisfactory, we want to hear from you. We welcome and encourage you to submit an official complaint to us so that we can review your concerns and work towards a resolution.","-1406192787":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Financial Commission.","-1776547326":"<0/><1/>If you reside in the UK and you are unhappy with our response you may escalate your complaint to the <2>Financial Ombudsman Service.","-2115348800":"1. Introduction","-744009523":"2. Fair treatment","-866831420":"3.1. Submission of a complaint","-1102904026":"3.2. Handling your complaint","-603378979":"3.3. Resolving your complaint","-697569974":"3.4. Your decision","-1280998762":"4. Complaints","-1886635232":"A complaint is any expression of dissatisfaction by a client regarding our products or services that requires a formal response.<0/><1/>If what you submit does not fall within the scope of a complaint, we may reclassify it as a query and forward it to the relevant department for handling. However, if you believe that your query should be classified as a complaint due to its relevance to the investment services provided by {{legal_entity_name}}, you may request that we reclassify it accordingly.","-1771496016":"To submit a complaint, please send an email to <0>complaints@deriv.com, providing as much detail as possible. To help us investigate and resolve your complaint more efficiently, please include the following information:","-1197243525":"<0>•A clear and detailed description of your complaint, including any relevant dates, times, and transactions","-1795134892":"<0>•Any relevant screenshots or supporting documentation that will assist us in understanding the issue","-2053887036":"4.4. Handling your complaint","-717170429":"Once we have received the details of your complaint, we shall review it carefully and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","-1841922393":"4.5. Resolving your complaint","-1327119795":"4.6. Your decision","-2019654103":"If we are unable to resolve your complaint or you are not satisfied with the outcome, you can escalate your complaint to the Office of the Arbiter for Financial Services.<0/><1/><2>Filing complaints with the Office of the Arbiter for Financial Services","-687172857":"<0>•You may file a complaint with the Arbiter for Financial Services only if you are not satisfied with our decision or the decision wasn’t made within 15 business days.","-262934706":"<0>•If the complaint is accepted by the Arbiter, you will receive another email with further details relating to the payment of the €25 complaint fee and the processes that follow.","-993572476":"<0>b.The Financial Commission has 5 days to acknowledge that your complaint was received and 14 days to answer the complaint through our Internal Dispute Resolution (IDR) procedure.","-1769159081":"<0>c.You will be able to file a complaint with the Financial Commission only if you are not satisfied with our decision or the decision wasn’t made within 14 days.","-58307244":"3. Determination phase","-356618087":"<0>b.The DRC may request additional information from you or us, who must then provide the requested information within 7 days.","-945718602":"<0>b.If you agree with a DRC decision, you will need to accept it within 14 days. If you do not respond to the DRC decision within 14 days, the complaint is considered closed.","-1500907666":"<0>d.If the decision is made in our favour, you must provide a release for us within 7 days of when the decision is made, and the complaint will be considered closed.","-429248139":"5. Disclaimer","-818926350":"The Financial Commission accepts appeals for 45 days following the date of the incident and only after the trader has tried to resolve the issue with the company directly.","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-981017278":"Automated trading at your fingertips. No coding needed.","-583559763":"Menu","-1685795001":"Demo Wallet","-319395348":"Looking for CFDs? Go to Trader’s Hub","-554054753":"Get started","-1364763296":"No need to remember a password","-1274467503":"Sync across devices","-2036288743":"Enhanced security with biometrics or screen lock ","-143216768":"Learn more about passkeys <0> here.","-778309978":"The link you clicked has expired. Ensure to click the link in the latest email in your inbox. Alternatively, enter your email below and click <0>Resend email for a new link.","-2007055538":"Information updated","-521477049":"We are going to update the login process for your Deriv MT5 account. Here is what you need to do when you want to log in via your MT5 mobile app starting from 7 February:","-749864644":"If you have trouble logging into your Deriv MT5 account, please follow this <0>guide.","-238296389":"Need help? Contact us via <0>live chat to assist you with any login questions.","-941870889":"The cashier is for real accounts only","-352838513":"It looks like you don’t have a real {{regulation}} account. To use the cashier, switch to your {{active_real_regulation}} real account, or get an {{regulation}} real account.","-1858915164":"Ready to deposit and trade for real?","-162753510":"Add real account","-1208519001":"You need a real Deriv account to access the cashier.","-715867914":"Successfully deposited","-1271218821":"Account added","-197631101":"Your funds will be available for trading once the verification of your account is complete.","-835056719":"We’ve received your documents","-55435892":"We’ll need 1 - 3 days to review your documents and notify you by email. You can practice with demo accounts in the meantime.","-1916578937":"<0>Explore the exciting new features that your Wallet offers.","-1724438599":"<0>You're almost there!","-1089300025":"We don’t charge deposit fees! Once your account is verified, you will be able to trade, make additional deposits, or withdraw funds.","-476018343":"Live Chat","-1471705969":"<0>{{title}}: {{trade_type_name}} on {{symbol}}","-1771117965":"Trade opened","-1856112961":"The URL you requested isn’t available","-304807228":"<0>You’re not logged in, or<0>Our services are unavailable in your country.","-1567989247":"Submit your proof of identity and address","-523602297":"Forex majors","-1303090739":"Up to 1:1500","-19213603":"Metals","-1264604378":"Up to 1:1000","-1728334460":"Up to 1:300","-646902589":"(US_30, US_100, US_500)","-705682181":"Malta","-1835174654":"1:30","-1647612934":"Spreads from","-1587894214":"about verifications needed.","-466784048":"Regulator/EDR","-2098459063":"British Virgin Islands","-1005069157":"Synthetic indices, basket indices, and derived FX","-1344709651":"40+","-1326848138":"British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114)","-1711743223":"Forex (standard/micro), stocks, stock indices, commodities, cryptocurrencies and ETFs","-1372141447":"Straight-through processing","-1969608084":"Forex and Cryptocurrencies","-800771713":"Labuan Financial Services Authority (licence no. MB/18/0024)","-1497128311":"80+","-1689815930":"You will need to submit proof of identity and address once you reach certain thresholds.","-1175785439":"Deriv (SVG) LLC (company no. 273 LLC 2020)","-139026353":"A selfie of yourself.","-1228847561":"Verification in review.","-618322245":"Verification successful.","-149461870":"Forex: standard/exotic","-1995163270":"ETFs","-651501076":"Derived - SVG","-865172869":"Financial - BVI","-1851765767":"Financial - Vanuatu","-558597854":"Financial - Labuan","-2052425142":"Swap-Free - SVG","-1192904361":"Deriv X Demo","-283929334":"Deriv cTrader Demo","-1269597956":"MT5 Platform","-1302404116":"Maximum leverage","-239789243":"(License no. SIBA/L/18/1114)","-941636117":"MetaTrader 5 Linux app","-1434036215":"Demo Financial","-1416247163":"Financial STP","-1637969571":"Demo Swap-Free","-1882063886":"Demo CFDs","-1347908717":"Demo Financial SVG","-1780324582":"SVG","-860609405":"Password","-742647506":"Fund transfer","-712681566":"Peer-to-peer exchange","-1267880283":"{{field_name}} is required","-2084509650":"{{field_name}} is not properly formatted.","-790488576":"Forgot password?","-476558960":"If you don’t have open positions","-1385484963":"Confirm to change your {{platform}} password","-1990902270":"This will change the password to all of your {{platform}} accounts.","-12535938":"*Volatility 250 Index, Volatility 150 Index, Boom 300 and Crash 300 Index","-201485855":"Up to","-700260448":"demo","-1769158315":"real","-1922462747":"Trader's hub","-16858060":"You have a new Deriv MT5 password to log in to your Deriv MT5 accounts on the web and mobile apps.","-1868608634":"Current password","-2092058806":"8 to 16 characters","-2051033705":"A special character such as ( _ @ ? ! / # )","-1762249687":"A lowercase letter","-535365199":"Enter your {{platform}} password to add a {{platform_name}} {{account}} account.","-184453418":"Enter your {{platform}} password","-393388362":"We’re reviewing your documents. This should take about 1 to 3 days.","-2057918502":"Hint: You may have entered your Deriv password, which is different from your {{platform}} password.","-510908328":"To start trading, <0 />transfer funds <1 />from your Deriv account into this account.","-1184248732":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. ","-1928229820":"Reset Deriv X investor password","-1969916895":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character ( _ @ ? ! / # ).","-1087845020":"main","-1950683866":"investor","-1874242353":"Fund top up","-89838213":"You can top up your demo account with an additional <0> if your balance is <1> or less.","-1211122723":"{{ platform }} {{ account_title }} account","-78895143":"Current balance","-149993085":"New current balance","-1615126227":"Manage up to {{max_count}} Deriv cTrader accounts. While you can convert any of your Deriv cTrader accounts into a strategy account, please take note of the following:","-1547739386":"To ensure you can always create and manage strategies with fees, <0>keep at least one account free from being a strategy provider. This way, you’ll always have an account ready for collecting fees, allowing you to have up to four strategies where you may impose fees.","-2145356061":"Download Deriv X on your phone to trade with the Deriv X account","-1547458328":"Run cTrader on your browser","-747382643":"Get another cTrader account","-1986258847":"Server maintenance starts at 01:00 GMT every Sunday, and this process may take up to 2 hours to complete. Service may be disrupted during this time.","-499504077":"Choose a cTrader account to transfer","-251202291":"Broker","-678964540":"to","-206829624":"(1:x)","-616293830":"Enjoy dynamic leverage of <0>up to 1:1500 when trading selected instruments in the forex, commodities, cryptocurrencies, and stock indices markets. Our dynamic leverage adjusts automatically to your trading position, based on asset type and trading volume.","-2042845290":"Your investor password has been changed.","-1882295407":"Your password has been changed.","-254497873":"Use this password to grant viewing access to another user. While they may view your trading account, they will not be able to trade or take any other actions.","-161656683":"Current investor password","-374736923":"New investor password","-1793894323":"Create or reset investor password","-21438174":"Add your Deriv cTrader account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-2026018074":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-162320753":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (BVI) Ltd, regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114).","-271828350":"Get more out of Deriv MT5 Financial","-2125860351":"Choose a jurisdiction for your Deriv MT5 CFDs account","-1460321521":"Choose a jurisdiction for your {{account_type}} account","-637537305":"Download {{ platform }} on your phone to trade with the {{ platform }} {{ account }} account","-964130856":"{{existing_account_title}}","-879259635":"Enter your Deriv MT5 password to upgrade your account(s).","-1504907646":"Deriv MT5 password","-361998267":"We've introduced additional password requirements to increase your account security. Your password should:","-996995493":"Be between 8 to 16 characters.","-219163415":"Contain at least one special character.","-1446636186":"By clicking on <0>Next you agree to move your {{platform}} {{type_1}} and {{type_2}} {{from_account}} account(s) under Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","-1766387013":"Upgrade your MT5 account(s)","-990927225":"Enter your Deriv MT5 password","-1486399361":"Trade with MT5 mobile app","-301350824":"Note: Don't have the MT5 app? Tap the <0>Trade with MT5 mobile app button to download. Once you have\n installed the app, return to this screen and hit the same button to log in.","-648956272":"Use this password to log in to your Deriv X accounts on the web and mobile apps.","-1814308691":"Please click on the link in the email to change your {{platform}} password.","-2015785957":"Compare CFDs {{demo_title}} accounts","-81650212":"MetaTrader 5 web","-508045656":"Coming soon on IOS","-601303096":"Scan the QR code to download Deriv {{ platform }}.","-1357917360":"Web terminal","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-1386326276":"Barrier is a required field.","-1418742026":"Higher barrier must be higher than lower barrier.","-92007689":"Lower barrier must be lower than higher barrier.","-1095538960":"Please enter the start time in the format \"HH:MM\".","-1975910372":"Minute must be between 0 and 59.","-866277689":"Expiry time cannot be in the past.","-1455298001":"Now","-256210543":"Trading is unavailable at this time.","-1150099396":"We’re working to have this available for you soon. If you have another account, switch to that account to continue trading. You may add a Deriv MT5 Financial.","-28115241":"{{platform_name_trader}} is not available for this account","-453920758":"Go to {{platform_name_mt5}} dashboard","-402175529":"History","-1013917510":"The reset time is {{ reset_time }}","-925402280":"Indicative low spot","-1075414250":"High spot","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1371082433":"Reset barrier","-1402197933":"Reset time","-2035315547":"Low barrier","-1745835713":"Selected tick","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-504849554":"It will reopen at","-59803288":"In the meantime, try our synthetic indices. They simulate real-market volatility and are open 24/7.","-1278109940":"See open markets","-694105443":"This market is closed","-104603605":"You cannot trade as your documents are still under review. We will notify you by email once your verification is approved.","-439389714":"We’re working on it","-770929448":"Go to {{platform_name_smarttrader}}","-347156282":"Submit Proof","-138538812":"Log in or create a free account to place a trade.","-2036388794":"Create free account","-1813736037":"No further trading is allowed on this contract type for the current trading session. For more info, refer to our <0>terms and conditions.","-1043795232":"Recent positions","-153220091":"{{display_value}} Tick","-802374032":"Hour","-1052279158":"Your <0>payout is the sum of your initial stake and profit.","-1819891401":"You can close your trade anytime. However, be aware of <0>slippage risk.","-231957809":"Win maximum payout if the exit spot is higher than or equal to the upper barrier.","-464144986":"Win maximum payout if the exit spot is lower than or equal to the lower barrier.","-1031456093":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between upper barrier and exit spot.","-968162707":"No payout if exit spot is above or equal to the upper barrier.","-2089488446":"If you select \"Ends Between\", you win the payout if the exit spot is strictly higher than the Low barrier AND strictly lower than the High barrier.","-1876950330":"If you select \"Ends Outside\", you win the payout if the exit spot is EITHER strictly higher than the High barrier, OR strictly lower than the Low barrier.","-546460677":"If the exit spot is equal to either the Low barrier or the High barrier, you don't win the payout.","-1929209278":"If you select \"Even\", you will win the payout if the last digit of the last tick is an even number (i.e., 2, 4, 6, 8, or 0).","-2038865615":"If you select \"Odd\", you will win the payout if the last digit of the last tick is an odd number (i.e., 1, 3, 5, 7, or 9).","-1959473569":"If you select \"Lower\", you win the payout if the exit spot is strictly lower than the barrier.","-1350745673":"If the exit spot is equal to the barrier, you don't win the payout.","-93996528":"By purchasing the \"Close-to-Low\" contract, you'll win the multiplier times the difference between the close and low over the duration of the contract.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1722190480":"By purchasing the \"High-to-Low\" contract, you'll win the multiplier times the difference between the high and low over the duration of the contract.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-618782785":"Use multipliers to leverage your potential returns. Predict if the asset price will move upward (bullish) or downward (bearish). We’ll charge a commission when you open a multipliers trade.","-565391674":"If you select \"<0>Up\", your total profit/loss will be the percentage increase in the underlying asset price, times the multiplier and stake, minus commissions.","-1113825265":"Additional features are available to manage your positions: “<0>Take profit” and “<0>Stop loss” allow you to adjust your level of risk aversion.","-1104397398":"Additional features are available to manage your positions: “<0>Take profit”, “<0>Stop loss” and “<0>Deal cancellation” allow you to adjust your level of risk aversion.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-1392065699":"If you select \"Rise\", you win the payout if the exit spot is strictly higher than the entry spot.","-1762566006":"If you select \"Fall\", you win the payout if the exit spot is strictly lower than the entry spot.","-1435306976":"If you select \"Allow equals\", you win the payout if exit spot is higher than or equal to entry spot for \"Rise\". Similarly, you win the payout if exit spot is lower than or equal to entry spot for \"Fall\".","-1812957362":"If you select \"Stays Between\", you win the payout if the market stays between (does not touch) either the High barrier or the Low barrier at any time during the contract period","-220379757":"If you select \"Goes Outside\", you win the payout if the market touches either the High barrier or the Low barrier at any time during the contract period.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1565216130":"If you select <0>\"Up\", you’ll earn a payout if the spot price never drops below the barrier.","-1336860323":"If you select <0>\"Down\", you’ll earn a payout if the spot price never rises above the barrier.","-1547935605":"Your payout is equal to the <0>payout per point multiplied by the difference between the <0>final price and the barrier. You will only earn a profit if your payout is higher than your initial stake.","-1307465836":"You may sell the contract up to 15 seconds before expiry. If you do, we’ll pay you the <0>contract value.","-351875097":"Number of ticks","-729830082":"View less","-1649593758":"Trade info","-1382749084":"Go back to trading","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-1977959027":"hours","-442488432":"day","-337314714":"days","-1435392215":"About deal cancellation","-2017825013":"Got it","-1192773792":"Don't show this again","-1341681145":"When this is active, you can cancel your trade within the chosen time frame. Your stake will be returned without loss.","-471757681":"Risk management","-843831637":"Stop loss","-771725194":"Deal Cancellation","-1669741470":"The payout at expiry is equal to the payout per point multiplied by the difference between the final price and the strike price.","-993480898":"Accumulators","-2131851017":"Growth rate","-1422269966":"You can choose a growth rate with values of 1%, 2%, 3%, 4%, and 5%.","-1186791513":"Payout is the sum of your initial stake and profit.","-1682624802":"It is a percentage of the previous spot price. The percentage rate is based on your choice of the index and the growth rate.","-1186082278":"Your payout is equal to the payout per point multiplied by the difference between the final price and barrier.","-584445859":"This is when your contract will expire based on the duration or end time you’ve selected. If the duration is more than 24 hours, the cut-off time and expiry date will apply instead.","-1221049974":"Final price","-1247327943":"This is the spot price of the last tick at expiry.","-1890561510":"Cut-off time","-878534036":"If you select \"Call\", you’ll earn a payout if the final price is above the strike price at expiry. Otherwise, you won’t receive a payout.","-1587076792":"If you select \"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","-1482134885":"We calculate this based on the strike price and duration you’ve selected.","-565990678":"Your contract will expire on this date (in GMT), based on the End time you’ve selected.","-1545819495":"Your trade will be closed automatically at the nearest available asset price when your loss reaches a certain percentage of your stake, but your loss never exceeds your stake. This percentage depends on the chosen underlying asset and the Multiplier.","-468501352":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your profit reaches or exceeds the take profit amount. Your profit may be more than the amount you entered depending on the market price at closing.","-477936848":"We use next-tick-execution mechanism, which is the next asset price when the trade opening is processed by our servers.","-1476381873":"The latest asset price when the trade closure is processed by our servers.","-148680560":"Spot price of the last tick upon reaching expiry.","-1123926839":"Contracts will expire at exactly 14:00:00 GMT on your selected expiry date.","-1904828224":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 24 hours.","-127118348":"Choose {{contract_type}}","-543478618":"Try checking your spelling or use a different term","-338707425":"Minimum duration is 1 day","-1003473648":"Duration: {{duration}} day","-700280380":"Deal cancel. fee","-8998663":"Digit: {{last_digit}} ","-718750246":"Your stake will grow at {{growth_rate}}% per tick as long as the current spot price remains within ±{{tick_size_barrier_percentage}} from the previous spot price.","-1358367903":"Stake","-542594338":"Max. payout","-690963898":"Your contract will be automatically closed when your payout reaches this amount.","-511541916":"Your contract will be automatically closed upon reaching this number of ticks.","-438655760":"<0>Note: You can close your trade anytime. Be aware of slippage risk.","-774638412":"Stake must be between {{min_stake}} {{currency}} and {{max_stake}} {{currency}}","-434270664":"Current Price","-1956787775":"Barrier Price:","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-1231210510":"Tick","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-1804019534":"Expiry: {{date}}","-2037881712":"Your contract will be closed automatically at the next available asset price on <0>.","-629549519":"Commission <0/>","-2131859340":"Stop out <0/>","-1686280757":"<0>{{commission_percentage}}% of (<1/> * {{multiplier}})","-732683018":"When your profit reaches or exceeds this amount, your trade will be closed automatically.","-339236213":"Multiplier","-1763848396":"Put","-194424366":"above","-857660728":"Strike Prices","-1346404690":"You receive a payout at expiry if the spot price never touches or breaches the barrier throughout the contract duration. Otherwise, your contract will be terminated early.","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-2002533437":"Custom function","-215053350":"with:","-1257232389":"Specify a parameter name:","-1885742588":"with: ","-188442606":"function {{ function_name }} {{ function_params }} {{ dummy }}","-313112159":"This block is similar to the one above, except that this returns a value. The returned value can be assigned to a variable of your choice.","-1783320173":"Prematurely returns a value within a function","-1485521724":"Conditional return","-1482801393":"return","-46453136":"get","-1838027177":"first","-1182568049":"Get list item","-1675454867":"This block gives you the value of a specific item in a list, given the position of the item. It can also remove the item from the list.","-381501912":"This block creates a list of items from an existing list, using specific item positions.","-426766796":"Get sub-list","-1679267387":"in list {{ input_list }} find {{ first_or_last }} occurence of item {{ input_value }}","-2087996855":"This block gives you the position of an item in a given list.","-422008824":"Checks if a given list is empty","-1343887675":"This block checks if a given list is empty. It returns “True” if the list is empty, “False” if otherwise.","-1548407578":"length of {{ input_list }}","-1786976254":"This block gives you the total number of items in a given list.","-2113424060":"create list with item {{ input_item }} repeated {{ number }} times","-1955149944":"Repeat an item","-434887204":"set","-197957473":"as","-851591741":"Set list item","-1874774866":"ascending","-1457178757":"Sorts the items in a given list","-350986785":"Sort list","-324118987":"make text from list","-155065324":"This block creates a list from a given string of text, splitting it with the given delimiter. It can also join items in a list into a string of text.","-459051222":"Create list from text","-977241741":"List Statement","-451425933":"{{ break_or_continue }} of loop","-323735484":"continue with next iteration","-1592513697":"Break out/continue","-713658317":"for each item {{ variable }} in list {{ input_list }}","-1825658540":"Iterates through a given list","-952264826":"repeat {{ number }} times","-887757135":"Repeat (2)","-1608672233":"This block is similar to the block above, except that the number of times it repeats is determined by a given variable.","-533154446":"Repeat (1)","-1059826179":"while","-1893063293":"until","-279445533":"Repeat While/Until","-1003706492":"User-defined variable","-359097473":"set {{ variable }} to {{ value }}","-1588521055":"Sets variable value","-980448436":"Set variable","-1538570345":"Get the last trade information and result, then trade again.","-222725327":"Here is where you can decide if your bot should continue trading.","-1638446329":"Result is {{ win_or_loss }}","-1968029988":"Last trade result","-1588406981":"You can check the result of the last trade with this block.","-1459154781":"Contract Details: {{ contract_detail }}","-1652241017":"Reads a selected property from contract details list","-985351204":"Trade again","-2082345383":"These blocks transfer control to the Purchase conditions block.","-172574065":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract.","-403103225":"restart","-837044282":"Ask Price {{ contract_type }}","-1033917049":"This block returns the purchase price for the selected trade type.","-1863737684":"2. Purchase conditions","-228133740":"Specify contract type and purchase conditions.","-1098726473":"This block is mandatory. Only one copy of this block is allowed. You can place the Purchase block (see below) here as well as conditional blocks to define your purchase conditions.","-1777988407":"Payout {{ contract_type }}","-511116341":"This block returns the potential payout for the selected trade type","-1943211857":"Potential payout","-1738427539":"Purchase","-813464969":"buy","-53668380":"True if active contract can be sold before expiration at current market price","-43337012":"Sell profit/loss","-2112866691":"Returns the profit/loss from selling at market price","-2132417588":"This block gives you the potential profit or loss if you decide to sell your contract.","-1360483055":"set {{ variable }} to Bollinger Bands {{ band_type }} {{ dummy }}","-20542296":"Calculates Bollinger Bands (BB) from a list with a period","-1951109427":"Bollinger Bands (BB)","-857226052":"BB is a technical analysis indicator that’s commonly used by traders. The idea behind BB is that the market price stays within the upper and lower bands for 95% of the time. The bands are the standard deviations of the market price, while the line in the middle is a simple moving average line. If the price reaches either the upper or lower band, there’s a possibility of a trend reversal.","-325196350":"set {{ variable }} to Bollinger Bands Array {{ band_type }} {{ dummy }}","-199689794":"Similar to BB. This block gives you a choice of returning the values of either the lower band, higher band, or the SMA line in the middle.","-920690791":"Calculates Exponential Moving Average (EMA) from a list with a period","-960641587":"EMA is a type of moving average that places more significance on the most recent data points. It’s also known as the exponentially weighted moving average. EMA is different from SMA in that it reacts more significantly to recent price changes.","-1557584784":"set {{ variable }} to Exponential Moving Average Array {{ dummy }}","-32333344":"Calculates Moving Average Convergence Divergence (MACD) from a list","-628573413":"MACD is calculated by subtracting the long-term EMA (26 periods) from the short-term EMA (12 periods). If the short-term EMA is greater or lower than the long-term EMA than there’s a possibility of a trend reversal.","-1133676960":"Fast EMA Period {{ input_number }}","-883166598":"Period {{ input_period }}","-450311772":"set {{ variable }} to Relative Strength Index {{ dummy }}","-1861493523":"Calculates Relative Strength Index (RSI) list from a list of values with a period","-880048629":"Calculates Simple Moving Average (SMA) from a list with a period","-1150972084":"Market direction","-276935417":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of “True” or “False”.","-764931948":"in candle list get # from end {{ input_number }}","-924607337":"Returns the last digit of the latest tick","-560033550":"Returns the list of last digits of 1000 recent tick values","-74062476":"Make a List of {{ candle_property }} values in candles list with interval: {{ candle_interval_type }}","-1556495906":"Returns a list of specific values from a candle list according to selected time interval","-166816850":"Create a list of candle values (1)","-1261436901":"Candles List","-1174859923":"Read the selected candle value","-1972165119":"Read candle value (1)","-1956100732":"You can use this block to analyze the ticks, regardless of your trades","-443243232":"The content of this block is called on every tick. Place this block outside of any root block.","-641399277":"Last Tick","-1628954567":"Returns the value of the last tick","-1332756793":"This block gives you the value of the last tick.","-2134440920":"Last Tick String","-1466340125":"Tick value","-467913286":"Tick value Description","-785831237":"This block gives you a list of the last 1000 tick values.","-1546430304":"Tick List String Description","-1788626968":"Returns \"True\" if the given candle is black","-436010611":"Make a list of {{ candle_property }} values from candles list {{ candle_list }}","-1384340453":"Returns a list of specific values from a given candle list","-584859539":"Create a list of candle values (2)","-2010558323":"Read {{ candle_property }} value in candle {{ input_candle }}","-2846417":"This block gives you the selected candle value.","-1587644990":"Read candle value (2)","-1202212732":"This block returns account balance","-1737837036":"Account balance","-1963883840":"Put your blocks in here to prevent them from being removed","-1284013334":"Use this block if you want some instructions to be ignored when your bot runs. Instructions within this block won’t be executed.","-1217253851":"Log","-1987568069":"Warn","-104925654":"Console","-1956819233":"This block displays messages in the developer's console with an input that can be either a string of text, a number, boolean, or an array of data.","-1450461842":"Load block from URL: {{ input_url }}","-1088614441":"Loads blocks from URL","-1747943728":"Loads from URL","-2105753391":"Notify Telegram {{ dummy }} Access Token: {{ input_access_token }} Chat ID: {{ input_chat_id }} Message: {{ input_message }}","-1008209188":"Sends a message to Telegram","-1218671372":"Displays a notification and optionally play selected sound","-2099284639":"This block gives you the total profit/loss of your trading strategy since your bot started running. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-683825404":"Total Profit String","-718220730":"Total Profit String Description","-1861858493":"Number of runs","-264195345":"Returns the number of runs","-303451917":"This block gives you the total number of times your bot has run. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-2132861129":"Conversion Helper Block","-74095551":"Seconds Since Epoch","-15528039":"Returns the number of seconds since January 1st, 1970","-729807788":"This block returns the number of seconds since January 1st, 1970.","-1370107306":"{{ dummy }} {{ stack_input }} Run after {{ number }} second(s)","-558838192":"Delayed run","-1975250999":"This block converts the number of seconds since the Unix Epoch (1 January 1970) into a string of text representing the date and time.","-702370957":"Convert to date/time","-982729677":"Convert to timestamp","-311268215":"This block converts a string of text that represents the date and time into seconds since the Unix Epoch (1 January 1970). The time and time zone offset are optional. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825.","-1797602591":"Stop Loss: {{ currency }} {{ stop_loss }}","-1374685318":"Your contract is closed automatically when your loss is more than or equals to this amount. This block can only be used with the multipliers trade type.","-1214929127":"Stop loss must be a positive number.","-780745489":"If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"","-2142851225":"Multiplier trade options","-625636913":"Amount must be a positive number.","-1466383897":"Duration: {{ duration_unit }} {{ duration_value }}","-440702280":"Trade options","-1193894978":"Define your trade options such as duration and stake. Some options are only applicable for certain trade types.","-46523443":"Duration value is not allowed. To run the bot, please enter a value between {{min}} to {{max}}.","-1483427522":"Trade Type: {{ trade_type_category }} > {{ trade_type }}","-323348124":"1. Trade parameters","-1671903503":"Run once at start:","-783173909":"Trade options:","-376956832":"Here is where you define the parameters of your contract.","-1244007240":"if {{ condition }} then","-1577206704":"else if","-33796979":"true","-1434883449":"This is a single block that returns a boolean value, either true or false.","-1946404450":"Compares two values","-979918560":"This block converts the boolean value (true or false) to its opposite.","-2047257743":"Null","-1274387519":"Performs selected logic operation","-766386234":"This block performs the \"AND\" or the \"OR\" logic operation.","-790995537":"test {{ condition }}","-1860211657":"if false {{ return_value }}","-1643760249":"This block tests if a given value is true or false and returns “True” or “False” accordingly.","-1551875333":"Test value","-52486882":"Arithmetical operations","-1010436425":"This block adds the given number to the selected variable","-999773703":"Change variable","-1272091683":"Mathematical constants","-1396629894":"constrain {{ number }} low {{ low_number }} high {{ high_number }}","-425224412":"This block constrains a given number so that it is within a set range.","-2072551067":"Constrain within a range","-43523220":"remainder of {{ number1 }} ÷ {{ number2 }}","-1291857083":"Returns the remainder after a division","-592154850":"Remainder after division","-736665095":"Returns the remainder after the division of the given numbers.","-1266992960":"Math Number Description","-77191651":"{{ number }} is {{ type }}","-817881230":"even","-142319891":"odd","-1000789681":"whole","-1735674752":"Test a number","-1017805068":"This block tests a given number according to the selection and it returns a value of “True” or “False”. Available options: Even, Odd, Prime, Whole, Positive, Negative, Divisible","-1858332062":"Number","-1053492479":"Enter an integer or fractional number into this block. Please use `.` as a decimal separator for fractional numbers.","-927097011":"sum","-1653202295":"max","-1555878023":"average","-1748351061":"mode","-992067330":"Aggregate operations","-1691561447":"This block gives you a random fraction between 0.0 to 1.0","-523625686":"Random fraction number","-933024508":"Rounds a given number to an integer","-1656927862":"This block rounds a given number according to the selection: round, round up, round down.","-1495304618":"absolute","-61210477":"Operations on a given number","-181644914":"This block performs the selected operations to a given number.","-840732999":"to {{ variable }} append text {{ input_text }}","-1469497908":"Appends a given text to a variable","-1851366276":"Text Append","-1666316828":"Appends a given text to a variable.","-1902332770":"Transform {{ input_text }} to {{ transform_type }}","-1489004405":"Title Case","-904432685":"Changes text case accordingly","-882381096":"letter #","-1027605069":"letter # from end","-2066990284":"random letter","-337089610":"in text {{ input_text1 }} find {{ first_or_last }} occurence of text {{ input_text2 }}","-1966694141":"Searches through a string of text for a specific occurrence of a given character or word, and returns the position.","-697543841":"Text join","-141160667":"length of {{ input_text }}","-1133072029":"Text String Length","-1109723338":"print {{ input_text }}","-736668830":"Print","-1631669591":"string","-1768939692":"number","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1687036846":"Download block","-1266781295":"Expand","-894560707":"function","-1867119688":"Duplicate","-610728049":"Rearrange Vertically","-2033146714":"Collapse All Blocks","-958601558":"Delete Block","-1193267384":"Detach Block","-1750478127":"New variable name","-1061878051":"Y","-2047029150":"Unable to load the block file.","-1410769167":"Target must be an XML file","-609157479":"This URL is already loaded","-241945454":"Proposals are not ready","-1087890592":"Maximum loss amount reached","-1030545878":"You are rate limited for: {{ message_type }}, retrying in {{ delay }}s (ID: {{ request }})","-490766438":"You are disconnected, retrying in {{ delay }}s","-1389975609":"unknown","-1900515692":"Duration must be a positive integer","-245297595":"Please login","-1445046468":"Given candle is not valid","-1891622945":"{{hourPast}}h ago","-1919680487":"workspace","-1703118772":"The {{block_type}} block is misplaced from {{missing_space}}.","-1785726890":"purchase conditions","-461955353":"purchase price","-172348735":"profit","-1624674721":"contract type","-1644154369":"entry spot time","-510792478":"entry spot price","-1974651308":"exit spot time","-1600267387":"exit spot price","-514917720":"barrier","-1072292603":"No Change","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-841561409":"Put Spread","-1429914047":"Low","-1893628957":"Open Time","-1896106455":"10 minutes","-999492762":"15 minutes","-1978767852":"30 minutes","-293628675":"1 hour","-385604445":"2 hours","-1965813351":"4 hours","-525321833":"1 day","-1691868913":"Touch/No Touch","-151151292":"Asians","-1048378719":"Reset Call/Reset Put","-1282312809":"High/Low Ticks","-1237186896":"Only Ups/Only Downs","-529846150":"Seconds","-1635771697":"middle","-1529389221":"Histogram","-1819860668":"MACD","-1750896349":"D'Alembert","-102980621":"The Oscar's Grind Strategy is a low-risk positive progression strategy that first appeared in 1965. By using this strategy, the size of your contract will increase after successful trades, but remains unchanged after unsuccessful trades.","-462715374":"Untitled Bot","-280147477":"All transactions","-137444201":"Buy","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-1904030160":"Transaction performed by (App ID: {{app_id}})","-1876891031":"Currency","-513103225":"Transaction time","-2066666313":"Credit/Debit","-1981004241":"Sell time","-1196431745":"Contract cost","-3423966":"Take profit<0 />Stop loss","-1131753095":"The {{trade_type_name}} contract details aren't currently available. We're working on making them available soon.","-360975483":"You've made no transactions of this type during this period.","-561436679":"This account offers CFDs on derived instruments.","-1173266642":"This account offers CFDs on a feature-rich trading platform.","-1226595254":"Turbos","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-330437517":"Matches/Differs","-657360193":"Over/Under","-558031309":"High Tick/Low Tick","-123659792":"Vanillas","-447037544":"Buy price:","-737348236":"Contract cost:","-1694314813":"Contract value:","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-155989831":"Decrement value","-338379841":"Indicative price:","-2027409966":"Initial stake:","-1769852749":"N/A","-726626679":"Potential profit/loss:","-1511825574":"Profit/Loss:","-1167474366":"Tick ","-1669418686":"AUD/CAD","-1548588249":"AUD/CHF","-1552890620":"AUD/JPY","-681231560":"AUD/PLN","-64938413":"AUD/USD","-1430522808":"EUR/AUD","-2020477069":"EUR/CAD","-1201853162":"EUR/CHF","-1318070255":"EUR/GBP","-1197505739":"EUR/JPY","-405907358":"EUR/USD","-1536293064":"NZD/JPY","-79700881":"NZD/USD","-642323838":"USD/CAD","-428199705":"USD/CHF","-424108348":"USD/JPY","-548255282":"USD/NOK","-1834131208":"USD/PLN","-524302516":"Silver/USD","-764731776":"Platinum/USD","-853582174":"France 40","-1096386695":"UK 100","-617646862":"Germany 40","-2077690248":"Japan 225","-512194910":"US Tech 100","-381746202":"US 500","-1935463381":"Swiss 20","-1941767726":"Euro 50","-1925264914":"Volatility 25 Index","-708579504":"Volatility 50 Index","-975255670":"Volatility 75 Index","-1736314513":"Crash 300 Index","-342128411":"Crash 500 Index","-9704319":"Crash 1000 Index","-465860988":"Bull Market Index","-390528194":"Step Index","-280323742":"EUR Basket","-563812039":"Volatility 10 (1s) Index","-82971929":"Volatility 25 (1s) Index","-433962508":"Volatility 75 (1s) Index","-764111252":"Volatility 100 (1s) Index","-816110209":"Volatility 150 (1s) Index","-1374309449":"Volatility 200 (1s) Index","-1288044380":"Volatility 250 (1s) Index","-1164978320":"Jump 10 Index","-575272887":"BCH/USD","-295406873":"BTC/ETH","-1713556301":"ZMR/USD","-2046638412":"XRP/USD","-1263203461":"BTC/USD","-1112522776":"DSH/USD","-460689370":"LTC/USD","-132112961":"Sharkfin","-1715390759":"I want to do this later","-56163366":"I don't have any of these","-175164838":"{{seconds_passed}}s ago","-514136557":"{{minutes_passed}}m ago","-1420737287":"{{hours_passed}}h ago","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-1603581277":"minutes","-886317740":"The <0>date of birth on your identity document doesn't match your profile.","-1606307809":"We were unable to verify the identity document with the details provided.","-475787720":"The verification status was empty, rejected for lack of information.","-1627868670":"Your identity document has expired.","-1302288704":"The document’s owner is deceased.","-895884696":"The <0>name and <0>date of birth on your identity document don't match your profile.","-1231856133":"The verification status is not available, provider says: Needs Technical Investigation.","-433687715":"For enhanced security, we need to reverify your identity. Kindly resubmit your proof of identity to unlock your account.","-1637538521":"Your document appears to be invalid.","-876579004":"The name on your document doesn’t match your profile.","-746520172":"Some details on your document appear to be invalid, missing, or unclear.","-2146200521":"The serial number of your document couldn’t be verified.","-1945323197":"Your document appears to be in black and white. Please upload a colour photo of your document.","-631393256":"Your document contains markings or text that should not be on your document.","-609103016":"The image quality of your document is too low. Please provide a hi-res photo of your identity document.","-530935718":"We’re unable to verify the document you provided because some details appear to be missing. Please try again or provide another document.","-1027031626":"We’re unable to verify the document you provided because it appears to be damaged. Please try again or upload another document.","-1671621833":"The front of your document appears to be missing. Please provide both sides of your identity document.","-727588232":"Your document appears to be a scanned copy that contains markings or text that shouldn’t be on your document.","-1435064387":"Your document appears to be a printed copy.","-624316211":"Your document appears to be a photo of a device screen.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1658230823":"Contract was sold for <0 />.","-1905867404":"Contract cancelled"} \ No newline at end of file +{"1485191":"1:1000","2082741":"additional document number","2091451":"Deriv Bot - your automated trading partner","3125515":"Your Deriv MT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","3215342":"Last 30 days","3420069":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your identity document.","4547840":"<0>Verify your account to transfer funds. <1>Verify now","5149403":"Learn more about trade types","7100308":"Hour must be between 0 and 23.","9488203":"Deriv Bot is a web-based strategy builder for trading digital options. It’s a platform where you can build your own automated trading bot using drag-and-drop 'blocks'.","9757544":"Please submit your proof of address","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","11706633":"Loss threshold: The bot will stop trading if your total loss exceeds this amount.","11872052":"Yes, I'll come back later","14365404":"Request failed for: {{ message_type }}, retrying in {{ delay }}s","15377251":"Profit amount: {{profit}}","17843034":"Check proof of identity document verification status","19424289":"Username","19552684":"USD Basket","21035405":"Please tell us why you’re leaving. (Select up to {{ allowed_reasons }} reasons.)","24900606":"Gold Basket","25854018":"This block displays messages in the developer’s console with an input that can be either a string of text, a number, boolean, or an array of data.","26566655":"Summary","26596220":"Finance","27582393":"Example :","27582767":"{{amount}} {{currency}}","27731356":"Your account is temporarily disabled. Please contact us via <0>live chat to enable deposits and withdrawals again.","27830635":"Deriv (V) Ltd","28581045":"Add a real MT5 account","33433576":"Please use an e-wallet to withdraw your funds.","35089987":"Upload the front and back of your driving licence.","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45821474":"Proof of income","46523711":"Your proof of identity is verified","49404821":"If you buy a \"<0>{{trade_type}}\" option, you receive a payout at expiry if the final price is {{payout_status}} the strike price. Otherwise, your “<0>{{trade_type}}” option will expire worthless.","53801223":"Hong Kong 50","53964766":"5. Hit Save to download your bot. You can choose to download your bot to your device or your Google Drive.","54185751":"Less than $100,000","55340304":"Keep your current contract?","55916349":"All","57362642":"Closed","58254854":"Scopes","59169515":"If you select \"Asian Rise\", you will win the payout if the last tick is higher than the average of the ticks.","59341501":"Unrecognized file format","59662816":"Stated limits are subject to change without prior notice.","62748351":"List Length","63869411":"This block tests a given number according to the selection","64402604":"Check transfer information","65185694":"Fiat onramp","65982042":"Total","66519591":"Investor password","66610627":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there’s enough light where you are and that your entire face is in the frame.","67923436":"No, Deriv Bot will stop running when your web browser is closed.","68885999":"Repeats the previous trade when an error is encountered.","69005593":"The example below restarts trading after 30 or more seconds after 1 minute candle was started.","71016232":"OMG/USD","71232823":"Manage funds","71445658":"Open","71563326":"A fast and secure fiat-to-crypto payment service. Deposit cryptocurrencies from anywhere in the world using your credit/debit cards and bank transfers.","71853457":"$100,001 - $500,000","72500774":"Please fill in Tax residence.","73086872":"You have self-excluded from trading","73326375":"The low is the lowest point ever reached by the market during the contract period.","74963864":"Under","76635112":"To proceed, resubmit these documents","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","76925355":"Check your bot’s performance","77945356":"Trade on the go with our mobile app.","77982950":"Vanilla options allow you to predict an upward (bullish) or downward (bearish) direction of the underlying asset by purchasing a \"Call\" or a \"Put\".","81091424":"To complete the upgrade, please log out and log in again to add more accounts and make transactions with your Wallets.","81450871":"We couldn’t find that page","82839270":"Upload the page of your passport that contains your photo.","83202647":"Collapse Block","84402478":"Where do I find the blocks I need?","85343079":"Financial assessment","85359122":"40 or more","85389154":"Steps required to continue verification on your mobile","90266322":"2. Start a chat with your newly created Telegram bot and make sure to send it some messages before proceeding to the next step. (e.g. Hello Bot!)","91993812":"The Martingale Strategy is a classic trading technique that has been used for more than a hundred years, popularised by the French mathematician Paul Pierre Levy in the 18th century.","93154671":"1. Hit Reset at the bottom of stats panel.","96381225":"ID verification failed","98473502":"We’re not obliged to conduct an appropriateness test, nor provide you with any risk warnings.","98972777":"random item","100239694":"Upload front of card from your computer","102226908":"Field cannot be empty","105871033":"Your age in the document you provided appears to be below 18 years. We’re only allowed to offer our services to clients above 18 years old, so we’ll need to close your account. If you have a balance in your account, contact us via live chat and we’ll help to withdraw your funds before your account is closed.","107537692":"These limits apply to your options trades only. For example, <0>maximum total loss refers to the losses on all your trades on options trading platforms.","108916570":"Duration: {{duration}} days","109073671":"Please use an e-wallet that you have used for deposits previously. Ensure the e-wallet supports withdrawal. See the list of e-wallets that support withdrawals <0>here.","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","112152170":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your password manager. ","113378532":"ETH/USD","115032488":"Buy price and P/L","116005488":"Indicators","117056711":"We’re updating our site","117318539":"Password should have lower and uppercase English letters with numbers.","117366356":"Turbo options allow you to predict the direction of the underlying asset’s movements.","118727646":"{{new_account_title}}","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","122617359":"View tutorial","122993457":"This is to confirm that it's you making the withdrawal request.","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125354367":"An example of D’Alembert's Grind strategy","125443840":"6. Restart last trade on error","125842960":"{{name}} is required.","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.","129005644":"The idea is that successful trades may recoup previous losses. However, it is crucial to exercise caution as the risk can quickly increase with this strategy. With Deriv Bot, you can minimise your risk by setting a maximum stake. This is an optional risk management feature. Let’s say a maximum stake of 3 USD. If your stake for the next trade is set to exceed 3 USD, your stake will reset to the initial stake of 1 USD. If you didn't set a maximum stake, it would have increased beyond 3 USD.","129137937":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or resume trading after a 24-hour cooling-off period. If you don’t want to set a specific limit, leave the field empty.","129729742":"Tax Identification Number*","130567238":"THEN","132596476":"In providing our services to you, we are required to ask you for some information to assess if a given product or service is appropriate for you and whether you have the experience and knowledge to understand the risks involved.<0/><0/>","132689841":"Trade on web terminal","133523018":"Please go to the Deposit page to get an address.","133536621":"and","133655768":"Note: If you wish to learn more about the Bot Builder, you can proceed to the <0>Tutorials tab.","137589354":"To assess your trading experience and if our products are suitable for you. Please provide accurate and complete answers, as they may affect the outcome of this assessment.","138055021":"Synthetic indices","139454343":"Confirm my limits","141265840":"Funds transfer information","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145511192":"s is the initial stake.","145633981":"Unavailable as your documents are still under review","145736466":"Take a selfie","150156106":"Save changes","150486954":"Token name","151279367":"2. Set the Purchase conditions. In this example, your bot will purchase a Rise contract when it starts and after a contract closes.","151646545":"Unable to read file {{name}}","152415091":"Math","152524253":"Trade the world’s markets with our popular user-friendly platform.","157593038":"random integer from {{ start_number }} to {{ end_number }}","157871994":"Link expired","158355408":"Some services may be temporarily unavailable.","160746023":"Tether as an Omni token (USDT) is a version of Tether that is hosted on the Omni layer on the Bitcoin blockchain.","160863687":"Camera not detected","164112826":"This block allows you to load blocks from a URL if you have them stored on a remote server, and they will be loaded only when your bot runs.","164564432":"Deposits are temporarily unavailable due to system maintenance. You can make your deposits when the maintenance is complete.","165294347":"Please set your country of residence in your account settings to access the cashier.","165312615":"Continue on phone","165682516":"If you don’t mind sharing, which other trading platforms do you use?","167094229":"• Current stake: Use this variable to store the stake amount. You can assign any amount you want, but it must be a positive number.","170185684":"Ignore","170244199":"I’m closing my account for other reasons.","171307423":"Recovery","171579918":"Go to Self-exclusion","171638706":"Variables","173991459":"We’re sending your request to the blockchain.","174793462":"Strike","176078831":"Added","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","177099483":"Your address verification is pending, and we’ve placed some restrictions on your account. The restrictions will be lifted once your address is verified.","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","179737767":"Our legacy options trading platform.","181107754":"Your new <0>{{platform}} {{eligible_account_to_migrate}} account(s) are ready for trading.","181346014":"Notes ","181881956":"Contract Type: {{ contract_type }}","182630355":"Thank you for submitting your information.","184024288":"lower case","189705706":"This block uses the variable \"i\" to control the iterations. With each iteration, the value of \"i\" is determined by the items in a given list.","189759358":"Creates a list by repeating a given item","190834737":"Guide","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195136585":"Trading View Chart","195972178":"Get character","196810983":"If the duration is more than 24 hours, the Cut-off time and Expiry date will apply instead.","196998347":"We hold customer funds in bank accounts separate from our operational accounts which would not, in the event of insolvency, form part of the company's assets. This meets the <0>Gambling Commission's requirements for the segregation of customer funds at the level: <1>medium protection.","197190401":"Expiry date","201091938":"30 days","203179929":"<0>You can open this account once your submitted documents have been verified.","203271702":"Try again","203297887":"The Quick Strategy you just created will be loaded to the workspace.","203924654":"Hit the <0>Start button to begin and follow the tutorial.","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207521645":"Reset Time","207824122":"Please withdraw your funds from the following Deriv account(s):","209533725":"You’ve transferred {{amount}} {{currency}}","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","210872733":"The verification status is not available, provider says: Malformed JSON.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211487193":"Document number (e.g. identity card, passport, driver's license)","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","215975531":"This account offers CFDs on a highly customisable CFD trading platform.","216650710":"You are using a demo account","217377529":"5. If the next trades are profitable, the stake for the following trade will be reduced by 2 USD. This can be shown above where the stake of 3 USD is reduced to 1 USD. See A3.","217403651":"St. Vincent & Grenadines","217504255":"Financial assessment submitted successfully","218441288":"Identity card number","220014242":"Upload a selfie from your computer","220186645":"Text Is empty","221261209":"A Deriv account will allow you to fund (and withdraw from) your CFDs account(s).","223120514":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 50 days.","223607908":"Last digit stats for latest 1000 ticks for {{underlying_name}}","224650827":"IOT/USD","225887649":"This block is mandatory. It's added to your strategy by default when you create new strategy. You can not add more than one copy of this block to the canvas.","227591929":"To timestamp {{ input_datetime }} {{ dummy }}","227903202":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts.","228521812":"Tests whether a string of text is empty. Returns a boolean value (true or false).","233500222":"- High: the highest price","235583807":"SMA is a frequently used indicator in technical analysis. It calculates the average market price over a specified period, and is usually used to identify market trend direction: up or down. For example, if the SMA is moving upwards, it means the market trend is up. ","235994721":"Forex (standard/exotic) and cryptocurrencies","236642001":"Journal","238496287":"Leverage trading is high-risk, so it's a good idea to use risk management features such as stop loss. Stop loss allows you to","241546739":"Please choose the correct Deriv company and server name when logging in, as shown on Trader’s Hub.","243537306":"1. Under the Blocks menu, go to Utility > Variables.","243614144":"This is only available for existing clients.","245005091":"lower","245187862":"The DRC will make a <0>decision on the complaint (please note that the DRC mentions no timeframe for announcing its decision).","245812353":"if {{ condition }} return {{ value }}","246428134":"Step-by-step guides","248153700":"Reset your password","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","251134918":"Account Information","251445658":"Dark theme","251882697":"Thank you! Your response has been recorded into our system.<0/><0/>Please click ‘OK’ to continue.","254912581":"This block is similar to EMA, except that it gives you the entire EMA line based on the input list and the given period.","256031314":"Cash Business","256602726":"If you close your account:","258448370":"MT5","258912192":"Trading assessment","260069181":"An error occured while trying to load the URL","260086036":"Place blocks here to perform tasks once when your bot starts running.","260361841":"Tax Identification Number can't be longer than 25 characters.","260393332":"You cannot make further deposits as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","261074187":"4. Once the blocks are loaded onto the workspace, tweak the parameters if you want, or hit Run to start trading.","261250441":"Drag the <0>Trade again block and add it into the <0>do part of the <0>Repeat until block.","262095250":"If you select <0>\"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","264976398":"3. 'Error' displays a message in red to highlight something that needs to be resolved immediately.","265644304":"Trade types","267992618":"The platforms lack key features or functionality.","268940240":"Your balance ({{format_balance}} {{currency}}) is less than the current minimum withdrawal allowed ({{format_min_withdraw_amount}} {{currency}}). Please top up your account to continue with your withdrawal.","269322978":"Deposit with your local currency via peer-to-peer exchange with fellow traders in your country.","269607721":"Upload","270339490":"If you select \"Over\", you will win the payout if the last digit of the last tick is greater than your prediction.","270396691":"<0>Your Wallets are ready!","270610771":"In this example, the open price of a candle is assigned to the variable \"candle_open_price\".","270712176":"descending","270780527":"You've reached the limit for uploading your documents.","271637055":"Download is unavailable while your bot is running.","272179372":"This block is commonly used to adjust the parameters of your next trade and to implement stop loss/take profit logic.","273350342":"Copy and paste the token into the app.","273728315":"Should not be 0 or empty","274268819":"Volatility 100 Index","275116637":"Deriv X","276770377":"New MT5 account(s) under the {{to_account}} jurisdiction will be created for new trades.","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","280021988":"Use these shortcuts","281110034":"Effective trading with the D'Alembert system requires careful consideration of its stake progression and risk management. Traders can automate this approach using Deriv Bot, setting profit and loss thresholds to ensure balanced and controlled trading. However, it is crucial for traders to assess their risk appetite, test strategies on a demo account, and align with their own trading style before transitioning to real money trading. This optimization process helps strike a balance between potential gains and losses while managing risk prudently.","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","283830551":"Your address doesn’t match your profile","284527272":"antimode","284772879":"Contract","284809500":"Financial Demo","287934290":"Are you sure you want to cancel this transaction?","291344459":"The table illustrates this principle in the second session. After a trade resulting in loss in round 4 followed by a successful trade in round 5, the stake will increase to 2 USD for round 6. This is in line with the strategy's rule of raising the stake only after a loss is followed by a successful trade.","291744889":"<0>1. Trade parameters:<0>","291817757":"Go to our Deriv community and learn about APIs, API tokens, ways to use Deriv APIs, and more.","292526130":"Tick and candle analysis","292589175":"This will display the SMA for the specified period, using a candle list.","292887559":"Transfer to {{selected_value}} is not allowed, Please choose another account from dropdown","293250845":"Are you sure you want to continue?","294043810":"I confirm that my tax information is accurate and complete.","294305803":"Manage account settings","294335229":"Sell at market price","296017162":"Back to Bot","301441673":"Select your citizenship/nationality as it appears on your passport or other government-issued ID.","304309961":"We're reviewing your withdrawal request. You may still cancel this transaction if you wish. Once we start processing, you won't be able to cancel.","304506198":"Total balance:","310234308":"Close all your positions.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","313741895":"This block returns “True” if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","315306603":"You have an account that do not have currency assigned. Please choose a currency to trade with this account.","316694303":"Is candle black?","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","321457615":"Oops, something went wrong!","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","323360883":"Baskets","325662004":"Expand Block","325763347":"result","326770937":"Withdraw {{currency}} ({{currency_symbol}}) to your wallet","327534692":"Duration value is not allowed. To run the bot, please enter {{min}}.","328539132":"Repeats inside instructions specified number of times","329353047":"Malta Financial Services Authority (MFSA) (licence no. IS/70156)","329404045":"<0>Switch to your real account<1> to create a {{platform}} {{account_title}} account.","330384187":"Enable trading with your first transfer.","333456603":"Withdrawal limits","333807745":"Click on the block you want to remove and press Delete on your keyboard.","334942497":"Buy time","337023006":"Start time cannot be in the past.","339449279":"Remaining time","339610914":"Spread Up/Spread Down","339879944":"GBP/USD","340807218":"Description not found.","342181776":"Cancel transaction","343873723":"This block displays a message. You can specify the color of the message and choose from 6 different sound options.","344418897":"These trading limits and self-exclusion help you control the amount of money and time you spend on {{brand_website_name}} and exercise <0>responsible trading.","345320063":"Invalid timestamp","345818851":"Sorry, an internal error occurred. Hit the above checkbox to try again.","347029309":"Forex: standard/micro","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","349110642":"<0>{{payment_agent}}<1>'s contact details","350602311":"Stats show the history of consecutive tick counts, i.e. the number of ticks the price remained within range continuously.","351744408":"Tests if a given text string is empty","352363702":"You may see links to websites with a fake Deriv login page where you’ll get scammed for your money.","353731490":"Job done","354945172":"Submit document","357477280":"No face found","357672069":"Income verification failed","359053005":"Please enter a token name.","359649435":"Given candle list is not valid","359809970":"This block gives you the selected candle value from a list of candles within the selected time interval. You can choose from open price, close price, high price, low price, and open time.","360224937":"Logic","360773403":"Bot Builder","362946954":"Our legacy automated trading platform.","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","367801124":"Total assets in your Deriv accounts.","368160866":"in list","369035361":"<0>•Your account number","371151609":"Last used","371710104":"This scope will allow third-party apps to buy and sell contracts for you, renew your expired purchases, and top up your demo accounts.","372291654":"Exclude time must be after today.","372645383":"True if the market direction matches the selection","372805409":"You should enter 9-35 characters.","373021397":"random","373306660":"{{label}} is required.","373495360":"This block returns the entire SMA line, containing a list of all values for a given period.","374537470":"No results for \"{{text}}\"","375714803":"Deal Cancellation Error","377231893":"Deriv Bot is unavailable in the EU","377538732":"Key parameters","379523479":"To avoid loss of funds, do not share tokens with the Admin scope with unauthorised parties.","380606668":"tick","380694312":"Maximum consecutive trades","381972464":"Your document has expired.","384303768":"This block returns \"True\" if the last candle is black. It can be placed anywhere on the canvas except within the Trade parameters root block.","384707870":"CRS confirmation","386278304":"Install the {{platform_name_trader}} web app","386502387":"Bot is not running","389923099":"Zoom in","390890891":"Last quarter","391915203":"Hedging","392582370":"Fall Equals","393789743":"Letters, spaces, periods, hyphens, apostrophes only.","396418990":"Offline","398816980":"Launch {{platform_name_trader}} in seconds the next time you want to trade.","401339495":"Verify address","401345454":"Head to the Tutorials tab to do so.","403456289":"The formula for SMA is:","406359555":"Contract details","406497323":"Sell your active contract if needed (optional)","411482865":"Add {{deriv_account}} account","412433839":"I agree to the <0>terms and conditions.","413594348":"Only letters, numbers, space, hyphen, period, and forward slash are allowed.","417864079":"You’ll not be able to change currency once you have made a deposit.","418265501":"Demo Derived","419485005":"Spot","419496000":"Your contract is closed automatically when your profit is more than or equals to this amount. This block can only be used with the multipliers trade type.","420072489":"CFD trading frequency","422055502":"From","424101652":"Quick strategy guides >","424272085":"We take your financial well-being seriously and want to ensure you are fully aware of the risks before trading.<0/><0/>","424897068":"Do you understand that you could potentially lose 100% of the money you use to trade?","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","429970999":"To avoid delays, enter your <0>name exactly as it appears on your {{document_name}}.","431267979":"Here’s a quick guide on how to use Deriv Bot on the go.","432273174":"1:100","432508385":"Take Profit: {{ currency }} {{ take_profit }}","432519573":"Document uploaded","433348384":"Real accounts are not available to politically exposed persons (PEPs).","433616983":"2. Investigation phase","434548438":"Highlight function definition","434896834":"Custom functions","436364528":"Your account will be opened with {{legal_entity_name}}, and will be subject to the laws of Saint Vincent and the Grenadines.","436534334":"<0>We've sent you an email.","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","439398769":"This strategy is currently not compatible with Deriv Bot.","442281706":"You’ve just deleted a block.","442520703":"$250,001 - $500,000","443559872":"Financial SVG","444484637":"Logic negation","445419365":"1 - 2 years","450983288":"Your deposit is unsuccessful due to an error on the blockchain. Please contact your crypto wallet service provider for more info.","451852761":"Continue on your phone","452054360":"Similar to RSI, this block gives you a list of values for each entry in the input list.","452949978":"The 1-3-2-6 strategy is designed to capitalise on consecutive successful trades while minimising losses during losing streaks. The rationale behind this strategy lies in statistical probabilities, with adjustments to stake sizes based on the perceived likelihood of success. There is a higher likelihood of success in the second trade after one successful trade. Hence the stake adjusts to 3 in the second trade. In the third trade, the stake adjusts to 2 units due to a lower probability of a successful trade. If the third trade is also successful, the strategy then allocates all the previous gains (a total of 6 units of initial stake) into the fourth trade with the aim of doubling the potential profits. If the fourth trade results in a positive outcome, the strategy helps achieve a total gain of 12 units. However, it is crucial to exercise caution, as the risk can escalate quickly with this strategy, and any loss in the fourth trade forfeits all previous gains.","453175851":"Your MT5 Financial STP account will be opened through {{legal_entity_name}}. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","454196938":"Regulation:","456746157":"Grant access to your camera from your browser settings","457020083":"It’ll take longer to verify you if we can’t read it","457494524":"1. From the block library, enter a name for the new variable and click Create.","459612953":"Select account","459817765":"Pending","460070238":"Congratulations","460975214":"Complete your Appropriateness Test","461795838":"Please contact us via live chat to unlock it.","462079779":"Resale not offered","463361726":"Select an item","465993338":"Oscar's Grind","466424460":"Oscar’s Grind","466837068":"Yes, increase my limits","467839232":"I trade forex CFDs and other complex financial instruments regularly on other platforms.","471402292":"Your bot uses a single trade type for each run.","473154195":"Settings","474306498":"We’re sorry to see you leave. Your account is now closed.","475492878":"Try Synthetic Indices","476023405":"Didn't receive the email?","477557241":"Remote blocks to load must be a collection.","478280278":"This block displays a dialog box that uses a customised message to prompt for an input. The input can be either a string of text or a number and can be assigned to a variable. When the dialog box is displayed, your strategy is paused and will only resume after you enter a response and click \"OK\".","478827886":"We calculate this based on the barrier you’ve selected.","479420576":"Tertiary","480356486":"*Boom 300 and Crash 300 Index","481276888":"Goes Outside","483279638":"Assessment Completed<0/><0/>","483591040":"Delete all {{ delete_count }} blocks?","485379166":"View transactions","487239607":"Converts a given True or False to the opposite value","488150742":"Resend email","489768502":"Change investor password","490053735":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your loss reaches or exceeds the stop loss amount. Your loss may be more than the amount you entered depending on the market price at closing.","491603904":"Unsupported browser","492198410":"Make sure everything is clear","492566838":"Taxpayer identification number","497518317":"Function that returns a value","498562439":"or","499522484":"1. for \"string\": 1325.68 USD","500855527":"Chief Executives, Senior Officials and Legislators","500920471":"This block performs arithmetic operations between two numbers.","501401157":"You are only allowed to make deposits","501537611":"*Maximum number of open positions","502007051":"Demo Swap-Free SVG","502041595":"This block gives you a specific candle from within the selected time interval.","505793554":"last letter","508390614":"Demo Financial STP","511679687":"Accumulators allow you to express a view on the range of movement of an index and grow your stake exponentially at a fixed <0>growth rate.","514031715":"list {{ input_list }} is empty","514776243":"Your {{account_type}} password has been changed.","514948272":"Copy link","517631043":"We’ve sent your e-book. Check your email to download it.","517833647":"Volatility 50 (1s) Index","518955798":"7. Run Once at Start","519205761":"You can no longer open new positions with this account.","520136698":"Boom 500 Index","520458365":"Last used: ","521872670":"item","522703281":"divisible by","523123321":"- 10 to the power of a given number","524459540":"How do I create variables?","527329988":"This is a top-100 common password","529056539":"Options","530864956":"Deriv Apps","531114081":"3. Contract Type","531675669":"Euro","532724086":"Employment contract","533403953":"Your existing <0>{{platform}} {{type}} {{from_account}} account(s) will remain accessible.","535041346":"Max. total stake per day","537788407":"Other CFDs Platform","538017420":"0.5 pips","538042340":"Principle 2: The stake only increases when a loss trade is followed by a successful trade","538228086":"Close-Low","541650045":"Manage {{platform}} password","541700024":"First, enter your driving licence number and the expiry date.","542038694":"Only letters, numbers, space, underscore, and hyphen are allowed for {{label}}.","542305026":"You must also submit a proof of identity.","543413346":"You have no open positions for this asset. To view other open positions, click Go to Reports","547029855":"If you select this feature, you can cancel your trade within a chosen time frame if the asset price moves against your favour. You will get your stake back without profit/loss. We charge a small fee for this. Take profit and stop loss are disabled when deal cancellation is active.","549479175":"Deriv Multipliers","549799607":"Go to LiveChat","551569133":"Learn more about trading limits","554135844":"Edit","554410233":"This is a top-10 common password","555351771":"After defining trade parameters and trade options, you may want to instruct your bot to purchase contracts when specific conditions are met. To do that you can use conditional blocks and indicators blocks to help your bot to make decisions.","555881991":"National Identity Number Slip","558866810":"Run your bot","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","560759471":"You'll see these details once the contract starts.","561982839":"Change your currency","562599414":"This block returns the purchase price for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","563034502":"We shall try to resolve your complaint within 15 business days. We will inform you of the outcome together with an explanation of our position and propose any remedial measures we intend to take.","563166122":"We shall acknowledge receiving your complaint, review it carefully, and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","563652273":"Go to block","565410797":"The below image illustrates how Simple Moving Average Array block works:","566274201":"1. Market","567019968":"A variable is among the most important and powerful components in creating a bot. It is a way to store information, either as text or numbers. The information stored as a variable can be used and changed according to the given instructions. Variables can be given any name, but usually they are given useful, symbolic names so that it is easier to call them during the execution of instructions.","567163880":"Create a {{platform}} password","567755787":"Tax Identification Number is required.","569057236":"In which country was your document issued?","571921777":"Funds protection level","572576218":"Languages","573173477":"Is candle {{ input_candle }} black?","575668969":"3. For trades that result in a profit, the stake for the next trade will be increased by 2 USD. Deriv Bot will continue to add 2 USD for every successful trade. See A1.","575702000":"Remember, selfies, pictures of houses, or non-related images will be rejected.","575968081":"Account created. Select payment method for deposit.","576355707":"Select your country and citizenship:","577215477":"count with {{ variable }} from {{ start_number }} to {{ end_number }} by {{ step_size }}","577779861":"Withdrawal","577883523":"4. Awards and orders","578640761":"Call Spread","579529868":"Show all details — including the bottom 2 lines","580431127":"Restart buy/sell on error (disable for better performance): {{ checkbox }}","580665362":"Stays In/Goes Out","580774080":"insert at","581168980":"Legal","582945649":"2 minutes","584028307":"Allow equals","587577425":"Secure my account","587856857":"Want to know more about APIs?","588609216":"Repeat tour","592087722":"Employment status is required.","592381383":"Passkey successfully removed","593459109":"Try a different currency","594937260":"Derived - BVI","595080994":"Example: CR123456789","595136687":"Save Strategy","597089493":"Here is where you can decide to sell your contract before it expires. Only one copy of this block is allowed.","597481571":"DISCLAIMER","597707115":"Tell us about your trading experience.","599469202":"{{secondPast}}s ago","602278674":"Verify identity","603849445":"Strike price","603849863":"Look for the <0>Repeat While/Until, and click the + icon to add the block to the workspace area.","603899222":"Distance to current spot","606240547":"- Natural log","606877840":"Back to today","607807243":"Get candle","609519227":"This is the email address associated with your Deriv account.","609650241":"Infinite loop detected","610537973":"Any information you provide is confidential and will be used for verification purposes only.","611020126":"View address on Blockchain","613418320":"<0>Setup unsuccessful","613877038":"Chart","615156635":"Your selfie does not match your document.","617345387":"If you select \"Reset-Up”, you win the payout if the exit spot is strictly higher than either the entry spot or the spot at reset time.","617910072":"Use your Deriv account email and password to login into the {{ platform }} platform.","618520466":"Example of a cut-off document","619268911":"<0>a.The Financial Commission will investigate the validity of the complaint within 5 business days.","619407328":"Are you sure you want to unlink from {{identifier_title}}?","621829484":"{{days_passed}}d ago","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","625571750":"Entry spot:","626175020":"Standard Deviation Up Multiplier {{ input_number }}","626809456":"Resubmit","627292452":"<0>Your Proof of Identity or Proof of Address did not meet our requirements. Please check your email for further instructions.","627814558":"This block returns a value when a condition is true. Use this block within either of the function blocks above.","628193133":"Account ID","629003252":"If your current password doesn't match these requirements, you'll need to create a new one in the next step.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","629395043":"All growth rates","632398049":"This block assigns a null value to an item or statement.","632897893":"If any of the above applies to you, select <0>Yes. Otherwise, select <0>No.","634219491":"You have not provided your tax identification number. This information is necessary for legal and regulatory requirements. Please go to <0>Personal details in your account settings, and fill in your latest tax identification number.","634274250":"How long each trade takes to expire.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","636427296":"Need help with tax info? Let us know via <0>live chat.","636579615":"Number of unit(s) to be added to the next trade after a losing trade. One unit is equivalent to the amount of initial stake.","639382772":"Please upload supported file type.","640249298":"Normal","640596349":"You have yet to receive any notifications","640730141":"Refresh this page to restart the identity verification process","641420532":"We've sent you an email","642210189":"Please check your email for the verification link to complete the process.","642393128":"Enter amount","642546661":"Upload back of license from your computer","644150241":"The number of contracts you have won since you last cleared your stats.","645902266":"EUR/NZD","646773081":"Profit threshold: The bot will stop trading if your total profit exceeds this amount.","647039329":"Proof of address required","647745382":"Input List {{ input_list }}","648035589":"Other CFD Platforms","649317411":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><1/>","649923867":"Adds a sign to a number to create a barrier offset. (deprecated)","650836587":"This article explores the Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","651284052":"Low Tick","651684094":"Notify","652298946":"Date of birth","654422099":"CRS confirmation is required.","654507872":"True-False","654924603":"Martingale","655937299":"We’ll update your limits. Click <0>Accept to acknowledge that you are fully responsible for your actions, and we are not liable for any addiction or loss.","656893085":"Timestamp","657325150":"This block is used to define trade options within the Trade parameters root block. Some options are only applicable for certain trade types. Parameters such as duration and stake are common among most trade types. Prediction is used for trade types such as Digits, while barrier offsets are for trade types that involve barriers such as Touch/No Touch, Ends In/Out, etc.","659482342":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your account settings.","660481941":"To access your mobile apps and other third-party apps, you'll first need to generate an API token.","660991534":"Finish","661759508":"On the basis of the information provided in relation to your knowledge and experience, we consider that the investments available via this website are not appropriate for you.<0/><0/>","662953503":"Your contract will be closed when the <0>stop out level is reached.","664779910":"3. If the first trade results in profit, the stake for the following trade will not reduce but remain at the initial stake. The strategy minimally trades at the initial stake of 1 USD. See A1.","665089217":"Please submit your <0>proof of identity to authenticate your account and access your Cashier.","665777772":"XLM/USD","665872465":"In the example below, the opening price is selected, which is then assigned to a variable called \"op\".","666724936":"Please enter a valid ID number.","669494711":"1.4 pips","671630762":"We accept only these types of documents as proof of your address. The document must be recent (issued within last {{expiry_in_months}} months) and include your name and address:","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","674973192":"Use this password to log in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","676159329":"Could not switch to default account.","676675313":"Authy","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","679199080":"Why passkeys?","680334348":"This block was required to correctly convert your old strategy.","680478881":"Total withdrawal limit","681108680":"Additional information required for {{platform}} account(s)","681808253":"Previous spot price","681926004":"Example of a blurry document","682056402":"Standard Deviation Down Multiplier {{ input_number }}","685391401":"If you're having trouble signing in, let us know via <0>chat","686387939":"How do I clear my transaction log?","687193018":"Slippage risk","687212287":"Amount is a required field.","688510664":"You've {{two_fa_status}} 2FA on this device. You'll be logged out of your account on other devices (if any). Use your password and a 2FA code to log back in.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","692354762":"Please enter your {{document_name}}. {{example_format}}","693396140":"Deal cancellation (expired)","693933036":"Exploring the Oscar’s Grind strategy in Deriv Bot","694035561":"Trade options multipliers","696157141":"Low spot","696735942":"Enter your National Identification Number (NIN)","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698037001":"National Identity Number","699159918":"1. Filing complaints","699646180":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, the funds will be lost and cannot be recovered.","700259824":"Account currency","701034660":"We are still processing your withdrawal request.<0 />Please wait for the transaction to be completed before deactivating your account.","701462190":"Entry spot","701647434":"Search for string","702451070":"National ID (No Photo)","702561961":"Change theme","705262734":"Your Wallets are ready","705299518":"Next, upload the page of your passport that contains your photo.","705697927":"2. Set your preferred unit. In this example, it is 2 units or 2 USD.","705821926":"Learn about this trade type","706448499":"We'll send you a secure link to verify your request. Tap on it to confirm you want to remove the passkey. This protects your account from unauthorised requests.","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","706960383":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 60 seconds.","707189572":"Your email address has changed.<0/>Now, log in with your new email address.","707662672":"{{unblock_date}} at {{unblock_time}}","708055868":"Driving licence number","710123510":"repeat {{ while_or_until }} {{ boolean }}","711999057":"Successful","712101776":"Take a photo of your passport photo page","712635681":"This block gives you the selected candle value from a list of candles. You can choose from open price, close price, high price, low price, and open time.","713054648":"Sending","714080194":"Submit proof","714746816":"MetaTrader 5 Windows app","715841616":"Please enter a valid phone number (e.g. +15417541234).","716428965":"(Closed)","718504300":"Postal/ZIP code","718509613":"Maximum duration: {{ value }}","720293140":"Log out","720519019":"Reset my password","721011817":"- Raise the first number to the power of the second number","723045653":"You'll log in to your Deriv account with this email address.","723961296":"Manage password","724526379":"Learn more with our tutorials","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","729251105":"Range: {{min}} - {{max}} {{duration_unit_text}} ","729651741":"Choose a photo","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","732828463":"Standing instructions to transfer funds to an account maintained in the United States, or directions regularly received from a US address","734298230":"Just a reminder","734390964":"Insufficient balance","734881840":"false","735907651":"A US residence address or a US correspondence address (including a US PO box)","737751617":"<0>Explore our website to see what’s available.","739126643":"Indicative high spot","742469109":"Reset Balance","743623600":"Reference","744110277":"Bollinger Bands Array (BBA)","745656178":"Use this block to sell your contract at the market price.","745674059":"Returns the specific character from a given string of text according to the selected option. ","746112978":"Your computer may take a few seconds to update","749336930":"Secure alternative to passwords.","750886728":"Switch to your real account to submit your documents","751468800":"Start now","751692023":"We <0>do not guarantee a refund if you make a wrong transfer.","752024971":"Reached maximum number of digits","752992217":"This block gives you the selected constant values.","753088835":"Default","753184969":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you (that is, whether you possess the experience and knowledge to understand the risks involved).<0/><1/>","753727511":"Type","755138488":"We’re unable to verify the document you provided because it contains markings or text that should not be on your document. Please provide a clear photo or a scan of your original identity document.","756152377":"SMA places equal weight to the entire distribution of values.","758003269":"make list from text","760528514":"Please note that changing the value of \"i\" won't change the value of the original item in the list","761576760":"Fund your account to start trading.","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.","764366329":"Trading limits","766317539":"Language","770171141":"Go to {{hostname}}","772520934":"You may sell the contract up to 24 hours before expiry. If you do, we’ll pay you the <0>contract value.","773091074":"Stake:","773309981":"Oil/USD","773336410":"Tether is a blockchain-enabled platform designed to facilitate the use of fiat currencies in a digital manner.","775679302":"{{pending_withdrawals}} pending withdrawal(s)","775706054":"Do you sell trading bots?","776085955":"Strategies","776432808":"Select the country where you currently live.","778172770":"Deriv CFDs","780009485":"About D'Alembert","781924436":"Call Spread/Put Spread","783974693":"Avoid recent years","784311461":"Exponential Moving Average (EMA)","784583814":"Linked to your computer","785969488":"Jump 75 Index","787727156":"Barrier","788005234":"NA","792164271":"This is when your contract will expire based on the Duration or End time you’ve selected.","792622364":"Negative balance protection","793526589":"To file a complaint about our service, send an email to <0>complaints@deriv.com and state your complaint in detail. Please submit any relevant screenshots of your trading or system for our better understanding.","793531921":"Our company is one of the oldest and most reputable online trading companies in the world. We are committed to treat our clients fairly and provide them with excellent service.<0/><1/>Please provide us with feedback on how we can improve our services to you. Rest assured that you will be heard, valued, and treated fairly at all times.","794682658":"Copy the link to your phone","795859446":"Password saved","797007873":"Follow these steps to recover camera access:","797500286":"negative","800228448":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_fx}}.","800521289":"Your personal details are incomplete","801430087":"A link can contain the word \"Deriv\" and still be fake.","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","806165583":"Australia 200","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","812430133":"Spot price on the previous tick.","815925952":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open Deriv Bot.","816580787":"Welcome back! Your messages have been restored.","816738009":"<0/><1/>You may also raise your unresolved dispute to the <2>Office of the Arbiter for Financial Services.","818447476":"Switch account?","820877027":"Please verify your proof of identity","821163626":"Server maintenance occurs every first Saturday of the month from 7 to 10 GMT time. You may experience service disruption during this time.","823186089":"A block that can contain text.","824797920":"Is list empty?","825042307":"Let’s try again","825179913":"This document number was already submitted for a different account. It seems you have an account with us that doesn't need further verification. Please contact us via <0>live chat if you need help.","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830703311":"My profile","830993327":"No current transactions available","832053636":"Document submission","832217983":"40 transactions or more in the past 12 months","832398317":"Sell Error","832721563":"If you select \"Low Tick\", you win the payout if the selected tick is the lowest among the next five ticks.","834966953":"1551661986 seconds since Jan 01 1970 (UTC) translates to 03/04/2019 @ 1:13am (UTC).","835336137":"View Detail","835350845":"Add another word or two. Uncommon words are better.","836097457":"I am interested in trading but have very little experience.","837063385":"Do not send other currencies to this address.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839158849":"4. If the second trade results in a loss, the Deriv Bot will automatically increase your stake for the next trade by 2 USD. Deriv Bot will continue to add 2 USD to the previous round’s stake after every losing trade. See A2.","839805709":"To smoothly verify you, we need a better photo","841434703":"Disable stack","841543189":"View transaction on Blockchain","843333337":"You can only make deposits. Please complete the <0>financial assessment to unlock withdrawals.","845304111":"Slow EMA Period {{ input_number }}","848083350":"Your payout is equal to the <0>payout per point multiplied by the difference between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","850582774":"Please update your personal info","851054273":"If you select \"Higher\", you win the payout if the exit spot is strictly higher than the barrier.","851264055":"Creates a list with a given item repeated for a specific number of times.","851508288":"This block constrains a given number within a set range.","852527030":"Step 2","852583045":"Tick List String","852627184":"document number","854178118":"Verify your request","854399751":"Digit code must only contain numbers.","854630522":"Choose a cryptocurrency account","857363137":"Volatility 300 (1s) Index","857445204":"Deriv currently supports withdrawals of Tether eUSDT to Ethereum wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","857986403":"do something","858663703":"For new trades, please transfer your funds into the new <0>{{platform}} {{eligible_account_to_migrate}} account(s).","860319618":"Tourism","862283602":"Phone number*","863023016":"For instance, if a trader has a loss threshold (B) of 100 USD, with an initial stake (s) of 1 USD and 2 units of increment (f), the calculation would be as follows:","863328851":"Proof of identity","864610268":"First, enter your {{label}} and the expiry date.","864655280":"You can continue to hold your current open positions in your existing MT5 account(s).","864957760":"Math Number Positive","865424952":"High-to-Low","865642450":"2. Logged in from a different browser","866496238":"Make sure your license details are clear to read, with no blur or glare","868826608":"Excluded from {{brand_website_name}} until","869068127":"The cashier is temporarily down due to maintenance. It will be available as soon as the maintenance is complete.","869823595":"Function","872661442":"Are you sure you want to update email <0>{{prev_email}} to <1>{{changed_email}}?","872721776":"2. Select your XML file and hit Select.","872817404":"Entry Spot Time","873166343":"1. 'Log' displays a regular message.","873387641":"If you have open positions","874461655":"Scan the QR code with your phone","874472715":"Your funds will remain in your existing MT5 account(s).","874484887":"Take profit must be a positive number.","875101277":"If I close my web browser, will Deriv Bot continue to run?","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","879014472":"Reached maximum number of decimals","879647892":"You may sell the contract up until 60 seconds before expiry. If you do, we’ll pay you the <0>contract value.","881963105":"(XAUUSD, XAGUSD)","882423592":"The amount that you stake for the first trade. Note that this is the minimum stake amount.","885065431":"Get a Deriv account","888274063":"Town/City","888924866":"We don’t accept the following inputs for:","890299833":"Go to Reports","891337947":"Select country","893963781":"Close-to-Low","893975500":"You do not have any recent bots","894191608":"<0>c.We must award the settlement within 28 days of when the decision is reached.","896790627":"A US birthplace","898457777":"You have added a Deriv Financial account.","898904393":"Barrier:","900646972":"page.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","905564365":"MT5 CFDs","906049814":"We’ll review your documents and notify you of its status within 5 minutes.","906789729":"Your verification documents were already used for another account.","907680782":"Proof of ownership verification failed","909272635":"Financial - SVG","910888293":"Too many attempts","911048905":"(BTCUSD, ETHUSD)","912257733":"The workspace will be reset to the default strategy and any unsaved changes will be lost. <0>Note: This will not affect your running bot.","912406629":"Follow these steps:","912967164":"Import from your computer","915735109":"Back to {{platform_name}}","918447723":"Real","920125517":"Add demo account","921857297":"Enter a value from 0 to {{ value }}.","921901739":"- your account details of the bank linked to your account","922313275":"You're back online","924046954":"Upload a document showing your name and bank account number or account details.","924912760":"Your document appears to be a digital document.","929608744":"You are unable to make withdrawals","930255747":"Please enter your {{document_name}}. ","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","934932936":"PERSONAL","937237342":"Strategy name cannot be empty","937682366":"Upload both of these documents to prove your identity.","937831119":"Last name*","937992258":"Table","938500877":"{{ text }}. <0>You can view the summary of this transaction in your email.","938947787":"Withdrawal {{currency}}","938988777":"High barrier","944499219":"Max. open positions","945532698":"Contract sold","945753712":"Back to Trader’s Hub","946204249":"Read","946841802":"A white (or green) candle indicates that the open price is lower than the close price. This represents an upward movement of the market price.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947704973":"Reverse D’Alembert","947758334":"City is required","947914894":"Top up  <0>","948156236":"Create {{type}} password","948176566":"New!","949859957":"Submit","951404247":"Enjoy seamless transactions across multiple currencies and an intuitive user interface with funds segregation.","952927527":"Regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156)","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961266215":"140+","961327418":"My computer","961692401":"Bot","962251615":"If you want to adjust your self-exclusion limits, <0>contact us via live chat.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","969858761":"Principle 1: Strategy aims to potentially make one unit of profit per session","969987233":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between exit spot and lower barrier.","970915884":"AN","974888153":"High-Low","975668699":"I confirm and accept {{company}} 's <0>Terms and Conditions","975950139":"Country of Residence","977929335":"Go to my account settings","980050614":"Update now","981138557":"Redirect","981568830":"You have chosen to exclude yourself from trading on our website until {{exclude_until}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via <0>live chat.","981965437":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator.","982146443":"WhatsApp","982402892":"First line of address","982829181":"Barriers","983451828":"2. Select the asset and trade type.","986565137":"We've received your proof of income","987053672":"You can continue with the open positions on your current <0>{{platform}} {{existing_account}} account(s).","987224688":"How many trades have you placed with other financial instruments in the past 12 months?","988064913":"4. Come back to Deriv Bot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","989840364":"You’re under legal age.","990739582":"170+","992294492":"Your postal code is invalid","992677950":"Logging out on other devices","993827052":"Choosing this jurisdiction will give you a Financial STP account. Your trades will go directly to the market and have tighter spreads.","995563717":"not {{ boolean }}","997276809":"I confirm that the name and date of birth above match my chosen identity document","997311089":"Change my password","999008199":"text","1001160515":"Sell","1002989598":"iOS: iCloud keychain.","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006069082":"The objective of Martingale strategy is to take advantage of consecutive successful trades and maximise potential profits from them. This strategy is beneficial only if there are consecutive successful trades. Therefore, it is important to set a maximum stake to secure all the potential profits gained from a number of consecutive successful trades, or you could lose all the profits you have accumulated, including your initial stake. For example, if your goal is to maximise profits within 2 consecutive successful trades, you set a maximum stake of 2 USD, given your initial stake is 1 USD. Similarly, if your goal is to maximise profits within 3 consecutive successful trades, you set a maximum stake of 4 USD, given your initial stake is 1 USD.","1006458411":"Errors","1006664890":"Silent","1008151470":"Unit: The number of units that are added in the event of successful trades or the number of units removed in the event of losing trades. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","1010337648":"We were unable to verify your proof of ownership.","1011208051":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} {{jurisdiction_selected_shortcode}} account. ","1011424042":"{{text}}. stake<0/>","1012102263":"You will not be able to log in to your account until this date (up to 6 weeks from today).","1015201500":"Define your trade options such as duration and stake.","1016220824":"You need to switch to a real money account to use this feature.<0/>You can do this by selecting a real account from the <1>Account Switcher.","1018803177":"standard deviation","1019265663":"You have no transactions yet.","1019508841":"Barrier 1","1021090237":"Upgrade your <0>{{account_1}} <1/>and <0>{{account_2}} {{platform}} account(s)","1021679446":"Multipliers only","1022934784":"1 minute","1022971288":"Payout per pip","1023237947":"1. In the example below, the instructions are repeated as long as the value of x is less than or equal to 10. Once the value of x exceeds 10, the loop is terminated.","1023643811":"This block purchases contract of a specified type.","1023795011":"Even/Odd","1024205076":"Logic operation","1026046972":"Please enter a payout amount that's lower than {{max_payout}}.","1026289179":"Trade on the go","1028211549":"All fields are required","1028758659":"Citizenship*","1029164365":"We presume that you possess the experience, knowledge, and expertise to make your own investment decisions and properly assess the risk involved.","1029641567":"{{label}} must be less than 30 characters.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1033253221":"Confirm your identity to make a withdrawal.","1035893169":"Delete","1036116144":"Speculate on the price movement of an asset without actually owning it.","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039428638":"EU regulation","1039476188":"The size used to multiply the stake after a losing trade for the next trade.","1039755542":"Use a few words, avoid common phrases","1040472990":"1. Go to Bot Builder.","1040677897":"To continue trading, you must also submit a proof of address.","1041001318":"This block performs the following operations on a given list: sum, minimum, maximum, average, median, mode, antimode, standard deviation, random item.","1041620447":"If you are unable to scan the QR code, you can manually enter this code instead:","1042659819":"You have an account that needs action","1043790274":"There was an error","1044599642":"<0> has been credited into your {{platform}} {{title}} account.","1045704971":"Jump 150 Index","1045782294":"Click the <0>Change password button to change your Deriv password.","1047389068":"Food Services","1047644783":"Enable screen lock on your device.","1047881477":"Unfortunately, your browser does not support the video.","1048687543":"Labuan Financial Services Authority","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050063303":"Videos on Deriv Bot","1050128247":"I confirm that I have verified the payment agent’s transfer information.","1050844889":"Reports","1052779010":"You are on your demo account","1052921318":"{{currency}} Wallet","1053153674":"Jump 50 Index","1053159279":"Level of education","1053556481":"Once you submit your complaint, we will send you an acknowledgement email to confirm that we have received it.","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","1057519018":"4. If a trade ends in a profit, the stake for the following trade will be reset to the initial stake amount of 1 USD.","1057749183":"Two-factor authentication (2FA)","1057904606":"The concept of the D’Alembert Strategy is said to be similar to the Martingale Strategy where you will increase your contract size after a loss. With the D’Alembert Strategy, you will also decrease your contract size after a successful trade.","1058804653":"Expiry","1058905535":"Tutorial","1060231263":"When are you required to pay an initial margin?","1061308507":"Purchase {{ contract_type }}","1062423382":"Explore the video guides and FAQs to build your bot in the tutorials tab.","1062536855":"Equals","1062569830":"The <0>name on your identity document doesn't match your profile.","1065275078":"cTrader is only available on desktop for now.","1065498209":"Iterate (1)","1065766135":"You have {{remaining_transfers}} {{transfer_text}} remaining for today.","1066235879":"Transferring funds will require you to create a second account.","1066459293":"4.3. Acknowledging your complaint","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1070323991":"6. If consecutive successful trades were to happen, the stake would follow a sequence of adjustment from 1 to 3, then 2, and 6 units of initial stake. After 4 consecutive successful trades, it completes one cycle and then the strategy will repeat itself for another cycle. If any trade results in a loss, your stake will reset back to the initial stake for the next trade.","1070624871":"Check proof of address document verification status","1073261747":"Verifications","1073611269":"A copy of your identity document (e.g. identity card, passport, driver's license)","1073711308":"Trade closed","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","1078189922":"You can make a new deposit once the verification of your account is complete.","1078221772":"Leverage prevents you from opening large positions.","1078303105":"Stop out","1080068516":"Action","1080990424":"Confirm","1082158368":"*Maximum account cash balance","1082406746":"Please enter a stake amount that's at least {{min_stake}}.","1083781009":"Tax identification number*","1083826534":"Enable Block","1087112394":"You must select the strike price before entering the contract.","1088031284":"Strike:","1088138125":"Tick {{current_tick}} - ","1089085289":"Mobile number","1089436811":"Tutorials","1089687322":"Stop your current bot?","1090041864":"The {{block_type}} block is mandatory and cannot be deleted/disabled.","1095295626":"<0>•The Arbiter for Financial Services will determine whether the complaint can be accepted and is in accordance with the law.","1096078516":"We’ll review your documents and notify you of its status within 3 days.","1096175323":"You’ll need a Deriv account","1098147569":"Purchase commodities or shares of a company.","1098622295":"\"i\" starts with the value of 1, and it will be increased by 2 at every iteration. The loop will repeat until \"i\" reaches the value of 12, and then the loop is terminated.","1100133959":"National ID","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","1102420931":"Next, upload the front and back of your driving licence.","1102995654":"Calculates Exponential Moving Average (EMA) list from a list of values with a period","1103309514":"Target","1103452171":"Cookies help us to give you a better experience and personalised content on our site.","1104912023":"Pending verification","1107474660":"Submit proof of address","1107555942":"To","1109217274":"Success!","1110102997":"Statement","1112582372":"Interval duration","1113119682":"This block gives you the selected candle value from a list of candles.","1113221217":"MT5 Swap-free","1113292761":"Less than 8MB","1114679006":"You have successfully created your bot using a simple strategy.","1117281935":"Sell conditions (optional)","1117863275":"Security and safety","1118294625":"You have chosen to exclude yourself from trading on our website until {{exclusion_end}}. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via live chat.","1119887091":"Verification","1119986999":"Your proof of address was submitted successfully","1120985361":"Terms & conditions updated","1122910860":"Please complete your <0>financial assessment.","1123927492":"You have not selected your account currency","1124382808":"Please enter the expiry time in the format \"HH:MM\".","1125090693":"Must be a number","1126075317":"Add your Deriv MT5 <0>{{account_type_name}} STP account under Deriv (FX) Ltd regulated by Labuan Financial Services Authority (Licence no. MB/18/0024).","1126934455":"Length of token name must be between 2 and 32 characters.","1127224297":"Sorry for the interruption","1127884488":"cTrader MacOS app","1128139358":"How many CFD trades have you placed in the past 12 months?","1128321947":"Clear All","1128404172":"Undo","1129124569":"If you select \"Under\", you will win the payout if the last digit of the last tick is less than your prediction.","1129842439":"Please enter a take profit amount.","1130791706":"N","1133651559":"Live chat","1134879544":"Example of a document with glare","1134883120":"Use your Deriv account email and password to log in to cTrader.","1139483178":"Enable stack","1143730031":"Direction is {{ direction_type }}","1144028300":"Relative Strength Index Array (RSIA)","1145927365":"Run the blocks inside after a given number of seconds","1146064568":"Go to Deposit page","1147269948":"Barrier cannot be zero.","1150637063":"*Volatility 150 Index and Volatility 250 Index","1151964318":"both sides","1152294962":"Upload the front of your driving licence.","1154021400":"list","1154239195":"Title and name","1155011317":"This block converts the date and time to the number of seconds since the Unix Epoch (1970-01-01 00:00:00).","1155143434":"By clicking on <0>Next you agree to move your {{platform}} {{type}} {{from_account}} account(s) under <2/>Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","1155626418":"below","1158678321":"<0>b.The Head of the Dispute Resolution Committee (DRC) will contact both you and us within 5 business days to obtain all necessary information and see if there is a chance to settle the complaint during the investigation phase.","1160761178":"No payout if exit spot is below or equal to the lower barrier.","1161924555":"Please select an option","1163771266":"The third block is <0>optional. You may use this block if you want to sell your contract before it expires. For now, leave the block as it is. ","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","1166023941":"New password","1166128807":"Choose one of your accounts or add a new cryptocurrency account","1166377304":"Increment value","1168029733":"Win payout if exit spot is also equal to entry spot.","1169201692":"Create {{platform}} password","1170228717":"Stay on {{platform_name_trader}}","1171765024":"Step 3","1171961126":"trade parameters","1172230903":"• Stop loss threshold: Use this variable to store your loss limit. You can assign any amount you want. Your bot will stop when your losses hits or exceeds this amount.","1172524677":"CFDs Demo","1173957529":"Go to ‘Account Settings’ on Deriv.","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174689133":"3. Set your trade parameters and hit Run.","1174748431":"Payment channel","1175183064":"Vanuatu","1177396776":"If you select \"Asian Fall\", you will win the payout if the last tick is lower than the average of the ticks.","1177723589":"There are no transactions to display","1178582280":"The number of contracts you have lost since you last cleared your stats.","1178800778":"Take a photo of the back of your license","1178942276":"Please try again in a minute.","1179704370":"Please enter a take profit amount that's higher than the current potential profit.","1181396316":"This block gives you a random number from within a set range","1181770592":"Profit/loss from selling","1183007646":"- Contract type: the name of the contract type such as Rise, Fall, Touch, No Touch, etс.","1183448523":"<0>We're setting up your Wallets","1184968647":"Close your contract now or keep it running. If you decide to keep it running, you can check and close it later on the ","1186687280":"Question {{ current }} of {{ total }}","1188316409":"To receive your funds, contact the payment agent with the details below","1188980408":"5 minutes","1189249001":"4.1. What is considered a complaint?","1189368976":"Please complete your personal details before you verify your identity.","1191429031":"Please click on the link in the email to change your <0>{{platform_name_dxtrade}} password.","1192598228":"Wallets will become your dedicated fund management tool, allowing you to transfer funds between Wallets and trading accounts instantly.","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1203297580":"This block sends a message to a Telegram channel.","1203380736":"The D’Alembert strategy is less risky than Martingale, but you can still determine how long your funds will last with this strategy before trading. Simply use this formula.","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","1204459171":"Your existing <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s) will remain accessible.","1206227936":"How to mask your card?","1206821331":"Armed Forces","1208729868":"Ticks","1208903663":"Invalid token","1211912982":"Bot is starting","1214893428":"Account creation is currently unavailable for mobile. Please log in with your computer to create a new account.","1216408337":"Self-Employed","1217159705":"Bank account number","1217481729":"Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum.","1218546232":"What is Fiat onramp?","1219844088":"do %1","1221250438":"To enable withdrawals, please submit your <0>Proof of Identity (POI) and <1>Proof of Address (POA) and also complete the <2>financial assessment in your account settings.","1222096166":"Deposit via bank wire, credit card, and e-wallet","1222521778":"Making deposits and withdrawals is difficult.","1222544232":"We’ve sent you an email","1225874865":"The stake adjustment: target session profit (1 USD) - current session profit (0 USD) = 1 USD","1227074958":"random fraction","1227132397":"4. For trades that result in a loss, there are two outcomes. If it was traded at the initial stake, the next trade will remain at the same amount as the strategy trades minimally at the initial stake, see A2. If it was traded with a higher amount, the stake for the next trade would be reduced by 2 USD, see A3.","1227240509":"Trim spaces","1228534821":"Some currencies may not be supported by payment agents in your country.","1229883366":"Tax identification number","1230884443":"State/Province (optional)","1231282282":"Use only the following special characters: {{permitted_characters}}","1232291311":"Maximum withdrawal remaining","1232353969":"0-5 transactions in the past 12 months","1233300532":"Payout","1233910495":"If you select \"<0>Down\", your total profit/loss will be the percentage decrease in the underlying asset price, times the multiplier and stake, minus commissions.","1234292259":"Source of wealth","1234764730":"Upload a screenshot of your name and email address from the personal details section.","1234889964":"Better funds segregation","1237330017":"Pensioner","1238311538":"Admin","1239752061":"In your cryptocurrency wallet, make sure to select the <0>{{network_name}} network when you transfer funds to Deriv.","1239760289":"Complete your trading assessment","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1240688917":"Glossary","1241238585":"You may transfer between your Deriv fiat, cryptocurrency, and {{platform_name_mt5}} accounts.","1242288838":"Hit the checkbox above to choose your document.","1242994921":"Click here to start building your Deriv Bot.","1243064300":"Local","1243287470":"Transaction status","1246207976":"Enter the authentication code generated by your 2FA app:","1246880072":"Select issuing country","1247280835":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can make cryptocurrency deposits and withdrawals in a few minutes when the maintenance is complete.","1248018350":"Source of income","1248940117":"<0>a.The decisions made by the DRC are binding on us. DRC decisions are binding on you only if you accept them.","1250113042":"This device doesn't support passkeys.","1250495155":"Token copied!","1252669321":"Import from your Google Drive","1253531007":"Confirmed","1253636052":"MetaTrader5 web terminal","1254565203":"set {{ variable }} to create list with","1255827200":"You can also import or build your bot using any of these shortcuts.","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259145708":"Let’s try again. Choose another document and enter the corresponding details.","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1264096613":"Search for a given string","1264842111":"You can switch between real and demo accounts.","1265317149":"A recent utility bill (e.g. electricity, water or gas) or recent bank statement or government-issued letter with your name and address.","1265704976":"","1266728508":"Proof of income verification passed","1269296089":"Let's build a Bot!","1270581106":"If you select \"No Touch\", you win the payout if the market never touches the barrier at any time during the contract period.","1272012156":"GBP/CHF","1272337240":"Days","1272681097":"Hours","1274380814":"Your payout is equal to the <0>payout per pip multiplied by the difference, <1>in pips, between the final price and the strike price. You will only earn a profit if your payout is higher than your initial stake.","1274819385":"3. Complaints and Disputes","1276660852":"Submit your proof of identity","1281045211":"Sorts the items in a given list, by their numeric or alphabetical value, in either ascending or descending order.","1281290230":"Select","1282951921":"Only Downs","1284522768":"If \"Loss\" is selected, it will return \"True\" if your last trade was unsuccessful. Otherwise, it will return an empty string.","1286094280":"Withdraw","1286507651":"Close identity verification screen","1288965214":"Passport","1289146554":"British Virgin Islands Financial Services Commission","1289650867":"The Oscar’s Grind strategy is designed to potentially gain a modest yet steady profit in each trading session. This strategy splits trades into sessions and has three principles.","1290525720":"Example: ","1291997417":"Contracts will expire at exactly 23:59:59 GMT on your selected expiry date.","1292188546":"Reset Deriv MT5 investor password","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","1294553728":"We’re unable to verify the document you provided because it appears to be a blank image. Please try again or upload another document.","1294756261":"This block creates a function, which is a group of instructions that can be executed at any time. Place other blocks in here to perform any kind of action that you need in your strategy. When all the instructions in a function have been carried out, your bot will continue with the remaining blocks in your strategy. Click the “do something” field to give it a name of your choice. Click the plus icon to send a value (as a named variable) to your function.","1295284664":"Please accept our <0>updated Terms and Conditions to proceed.","1296380713":"Close my contract","1299479533":"8 hours","1300576911":"Please resubmit your proof of address or we may restrict your account.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","1304272843":"Please submit your proof of address.","1304620236":"Enable camera","1305217290":"Upload the back of your identity card.","1308625834":"Sets the default time interval for blocks that read list of candles.","1309017029":"Enabling this allows you to save your blocks as one collection which can be easily integrated into other bots.","1309044871":"Returns the value of the latest tick in string format","1310483610":"Results for \"{{ search_term }}\"","1311680770":"payout","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314572331":"Your document failed our verification checks.","1316216284":"You can use this password for all your {{platform}} accounts.","1319217849":"Check your mobile","1320715220":"<0>Account closed","1320750775":"Front and back","1322804930":"Restart the process on the latest version of Google Chrome","1323327633":"Our complaints process comprises the following 4 steps:","1323476617":"Changes the capitalisation of a string of text to Upper case, Lower case, Title case.","1323996051":"Profile","1324922837":"2. The new variable will appear as a block under Set variable.","1325514262":"(licence no. MB/18/0024)","1327181172":"Financial Vanuatu","1327494533":"{{sell_value}} (Sell)","1329136554":"Jump 200 Index","1329325646":"The content of this block is called on every tick","1331199417":"Please enter the correct format. ","1331367811":"Client account number","1332168410":"Learn more","1332168769":"Disconnect","1333576137":"Please update your {{details}} to continue.","1333839457":"Submit identity card (front)","1334326985":"It may take a few minutes to arrive","1335967988":"Notice","1336052175":"Switch accounts","1337846406":"This block gives you the selected candle value from a list of candles within the selected time interval.","1337864666":"Photo of your document","1338496204":"Ref. ID","1339613797":"Regulator/External dispute resolution","1340286510":"The bot has stopped, but your trade may still be running. You can check it on the Reports page.","1341840346":"View in Journal","1341921544":"Trading accounts and funds","1344696151":"Forex, stocks, stock indices, commodities, cryptocurrencies and synthetic indices.","1346038489":"Should be less than 70.","1346204508":"Take profit","1346339408":"Managers","1346947293":"We were unable to verify your selfie because it’s not clear. Please take a clearer photo and try again. Ensure that there's enough light where you are and that your entire face is in the frame.","1347037687":"Trader’s Hub V2","1347071802":"{{minutePast}}m ago","1349133669":"Try changing your search criteria.","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351906264":"This feature is not available for payment agents.","1353197182":"Please select","1354288636":"Based on your answers, it looks like you have insufficient knowledge and experience in trading CFDs. CFD trading is risky and you could potentially lose all of your capital.<0/><0/>","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357010670":"I acknowledge and confirm that I would like to upgrade to Wallets.","1357213116":"Identity card","1358543466":"Not available","1358543748":"enabled","1360929368":"Add a Deriv account","1362029761":"Exploring the Reverse Martingale strategy in Deriv Bot","1362578283":"High","1363645836":"Derived FX","1363675688":"Duration is a required field.","1364045306":"Account V2","1364879837":"The verification is passed but the personal info is not available to compare.","1364958515":"Stocks","1366244749":"Limits","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1370647009":"Enjoy higher daily limits","1371193412":"Cancel","1371555192":"Choose your preferred payment agent and enter your withdrawal amount. If your payment agent is not listed, <0>search for them using their account number.","1371641641":"Open the link on your mobile","1371911731":"Financial products in the EU are offered by {{legal_entity_name}}, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>Licence no. IS/70156).","1373949314":"The Reverse Martingale strategy involves increasing your stake after each successful trade and resets to the initial stake for every losing trade as it aims to secure potential profits from consecutive wins.","1374627690":"Max. account balance","1374902304":"Your document appears to be damaged or cropped.","1375884086":"Financial, legal, or government document: recent bank statement, affidavit, or government-issued letter.","1376329801":"Last 60 days","1378419333":"Ether","1380349261":"Range","1383017005":"You have switched accounts.","1384127719":"You should enter {{min}}-{{max}} numbers.","1384222389":"Please submit valid identity documents to unlock the cashier.","1385418910":"Please set a currency for your existing real account before creating another account.","1387503299":"Log in","1388770399":"Proof of identity required","1389197139":"Import error","1390792283":"Trade parameters","1391174838":"Potential payout:","1392985917":"This is similar to a commonly used password","1393559748":"Invalid date/time: {{ datetime_string }}","1393901361":"There’s an app for that","1393903598":"if true {{ return_value }}","1396179592":"Commission","1396417530":"Bear Market Index","1397628594":"Insufficient funds","1400341216":"We’ll review your documents and notify you of its status within 1 to 3 days.","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1402224124":"Hit the button below, and we'll email you a verification link.","1402300547":"Lets get your address verified","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1407191858":"DTrader","1408844944":"Click the plus icon to extend the functionality of this block.","1411373212":"Strong passwords contain at least 8 characters. combine uppercase and lowercase letters, numbers, and symbols.","1412405902":"See important notes","1412535872":"You can check the result of the last trade with this block. It can only be placed within the \"Restart trading conditions\" root block.","1413047745":"Assigns a given value to a variable","1413359359":"Make a new transfer","1414205271":"prime","1414366321":"An uppercase letter","1414918420":"We'll review your proof of identity again and will give you an update as soon as possible.","1415006332":"get sub-list from first","1415513655":"Download cTrader on your phone to trade with the Deriv cTrader account","1415974522":"If you select \"Differs\", you will win the payout if the last digit of the last tick is not the same as your prediction.","1417558007":"Max. total loss over 7 days","1417907460":"No problem! Your passkey still works.","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","1419330165":"Forex, stocks, stock indices, commodities, cryptocurrencies, ETFs and synthetic indices","1421046084":"Setup your account","1421749665":"Simple Moving Average (SMA)","1422060302":"This block replaces a specific item in a list with another given item. It can also insert the new item in the list at a specific position.","1422129582":"All details must be clear — nothing blurry","1423082412":"Last Digit","1423296980":"Enter your SSNIT number","1424741507":"See more","1424763981":"1-3-2-6","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","1428657171":"You can only make deposits. Please contact us via <0>live chat for more information.","1430221139":"Verify now","1430396558":"5. Restart buy/sell on error","1430632931":"To get trading, please confirm who you are, and where you live.","1433367863":"Sorry, an error occured while processing your request.","1433468641":"We offer our services in all countries, except for the ones mentioned in our terms and conditions.","1434382099":"Displays a dialog window with a message","1434767075":"Get started on Deriv Bot","1434976996":"Announcement","1435363248":"This block converts the number of seconds since the Unix Epoch to a date and time format such as 2019-08-01 00:00:00.","1437396005":"Add comment","1437529196":"Payslip","1438247001":"A professional client receives a lower degree of client protection due to the following.","1438340491":"else","1439168633":"Stop loss:","1441208301":"Total<0 />profit/loss","1442747050":"Loss amount: <0>{{profit}}","1442840749":"Random integer","1443478428":"Selected proposal does not exist","1444843056":"Corporate Affairs Commission","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","1446742608":"Click here if you ever need to repeat this tour.","1449462402":"In review","1452260922":"Too many failed attempts","1452941569":"This block delays execution for a given number of seconds. You can place any blocks within this block. The execution of other blocks in your strategy will be paused until the instructions in this block are carried out.","1453317405":"This block gives you the balance of your account either as a number or a string of text.","1454406889":"Choose <0>until as the repeat option.","1454648764":"deal reference id","1454865058":"Do not enter an address linked to an ICO purchase or crowdsale. If you do, the ICO tokens will not be credited into your account.","1455741083":"Upload the back of your driving licence.","1457341530":"Your proof of identity verification has failed","1457603571":"No notifications","1458160370":"Enter your {{platform}} password to add a {{platform_name}} {{account}} {{jurisdiction_shortcode}} account.","1459761348":"Submit proof of identity","1461323093":"Display messages in the developer’s console.","1462238858":"By purchasing the \"High-to-Close\" contract, you'll win the multiplier times the difference between the high and close over the duration of the contract.","1464190305":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract without manually stopping and restarting your bot.","1464253511":"You already have an account for each of the cryptocurrencies available on {{deriv}}.","1465084972":"How much experience do you have with other financial instruments?","1465919899":"Pick an end date","1466430429":"Should be between {{min_value}} and {{max_value}}","1466900145":"Doe","1467017903":"This market is not yet available on {{platform_name_trader}}, but it is on {{platform_name_smarttrader}}.","1467421920":"with interval: %1","1467880277":"3. General queries","1468308734":"This block repeats instructions as long as a given condition is true","1468419186":"Deriv currently supports withdrawals of Tether USDT to Omni wallet. To ensure a successful transaction, enter a wallet address compatible with the tokens you wish to withdraw. <0>Learn more","1468508098":"Slippage happens when the asset price changes by the time it reaches our servers.","1469133110":"cTrader Windows app","1469150826":"Take Profit","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1470565177":"Article of association","1471008053":"Deriv Bot isn't quite ready for real accounts","1471070549":"Can contract be sold?","1471741480":"Severe error","1473369747":"Synthetics only","1475513172":"Size","1476301886":"Similar to SMA, this block gives you the entire SMA line containing a list of all values for a given period.","1478030986":"Create or delete API tokens for trading and withdrawals","1480915523":"Skip","1484336612":"This block is used to either terminate or continue a loop, and can be placed anywhere within a loop block.","1487086154":"Your documents were submitted successfully","1488548367":"Upload again","1490509675":"Options accounts","1491392301":"<0>Sold for: {{sold_for}}","1492686447":"Your MT5 Financial STP account will be opened through Deriv (FX) Ltd. All trading in this account is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA). None of your other accounts, including your Deriv account, is subject to the regulations and guidelines of the Labuan Financial Service Authority (LFSA).","1493673429":"Change email","1493866481":"Run Deriv X on your browser","1496810530":"GBP/AUD","1497773819":"Deriv MT5 accounts","1499080621":"Tried to perform an invalid operation.","1501691227":"Add Your Deriv MT5 <0>{{account_type_name}} account under Deriv (V) Ltd, regulated by the Vanuatu Financial Services Commission.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503618738":"- Deal reference ID: the reference ID of the contract","1505420815":"No payment agents found for your search","1505898522":"Download stack","1505927599":"Our servers hit a bump. Let’s refresh to move on.","1506251760":"Wallets","1507554225":"Submit your proof of address","1509559328":"cTrader","1509570124":"{{buy_value}} (Buy)","1509678193":"Education","1510075920":"Gold/USD","1510357015":"Tax residence is required.","1510735345":"This block gives you a list of the last digits of the last 1000 tick values.","1512469749":"In the above example it is assumed that variable candle_open_price is processed somewhere within other blocks.","1513771077":"We're processing your withdrawal.","1516559721":"Please select one file only","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1519124277":"Derived SVG","1520332426":"Net annual income","1524636363":"Authentication failed","1526012495":"This could be because:","1526483456":"2. Enter a name for your variable, and hit Create. New blocks containing your new variable will appear below.","1527251898":"Unsuccessful","1527664853":"Your payout is equal to the payout per point multiplied by the difference between the final price and the strike price.","1527906715":"This block adds the given number to the selected variable.","1531017969":"Creates a single text string from combining the text value of each attached item, without spaces in between. The number of items can be added accordingly.","1533177906":"Fall","1534796105":"Gets variable value","1537192641":"Unable to process your request","1537711064":"You need to make a quick identity verification before you can access the Cashier. Please go to your account settings to submit your proof of identity.","1540585098":"Decline","1541508606":"Looking for CFDs? Go to Trader's Hub","1541770236":"The 1-3-2-6 strategy aims to maximise potential profits with four consecutive successful trades. One unit is equal to the amount of the initial stake. The stake will adjust from 1 unit to 3 units after the first successful trade, then to 2 units after your second successful trade, and to 6 units after the third successful trade. The stake for the next trade will reset to the initial stake if there is a losing trade or a completion of the trade cycle.","1541969455":"Both","1542742708":"Synthetics, Forex, Stocks, Stock indices, Commodities, and Cryptocurrencies","1544642951":"If you select \"Only Ups\", you win the payout if consecutive ticks rise successively after the entry spot. No payout if any tick falls or is equal to any of the previous ticks.","1547148381":"That file is too big (only up to 8MB allowed). Please upload another file.","1549098835":"Total withdrawn","1549645155":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your iCloud keychain. ","1551172020":"AUD Basket","1551689907":"Enhance your trading experience by upgrading your <0/><1>{{platform}} {{type}} {{from_account}} account(s).","1555345325":"User Guide","1556391770":"You cannot make a withdrawal as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","1557426040":"Demo Derived SVG","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1559220089":"Options and multipliers trading platform.","1560302445":"Copied","1562374116":"Students","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1566717687":"We also provide a guide on the Tutorial tab to show you how you can build and execute a simple strategy.","1567076540":"Only use an address for which you have proof of residence - ","1567745852":"Bot name","1569527365":"Verification failed. Resubmit your details.","1569624004":"Dismiss alert","1570484627":"Ticks list","1571575776":"Accepted formats: pdf, jpeg, jpg, and png. Max file size: 8MB","1572504270":"Rounding operation","1572982976":"Server","1573429525":"Call/Put","1575556189":"Tether on the Ethereum blockchain, as an ERC20 token, is a newer transport layer, which now makes Tether available in Ethereum smart contracts. As a standard ERC20 token, it can also be sent to any Ethereum address.","1577480486":"Your mobile link will expire in one hour","1577527507":"Account opening reason is required.","1577612026":"Select a folder","1579839386":"Appstore","1580498808":"Multiple faces found","1584109614":"Ticks String List","1584936297":"XML file contains unsupported elements. Please check or modify file.","1587046102":"Documents from that country are not currently supported — try another document type","1589148299":"Start","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1589863913":"These are the trade parameters used for D’Alembert strategy in Deriv Bot.","1590400723":"Total assets in all your accounts","1591933071":"Resubmit document","1593010588":"Login now","1594147169":"Please come back in","1594322503":"Sell is available","1595295238":"3. Use a logic block to check if Total profit/loss is more than the Stop loss threshold amount. You can find the Total profit/loss variable under Analysis > Stats on the Blocks menu on the left. Your bot will continue to purchase new contracts until the Total profit/loss amount exceeds the Stop loss threshold amount.","1597672660":"Deriv MT5 Password","1598009247":"<0>a.You may file a complaint with the Financial Commission up to 45 days after the incident.","1598386296":"Town/City is required.","1598443642":"Transaction hash","1599743312":"An example of Reverse Martingale strategy","1602894348":"Create a password","1604916224":"Absolute","1605222432":"I have no knowledge and experience in trading at all.","1605292429":"Max. total loss","1612105450":"Get substring","1612638396":"Cancel your trade at any time within a specified timeframe.","1615897837":"Signal EMA Period {{ input_number }}","1618652381":"For instance, if a trader has a loss threshold (B) is 1000 USD, with an initial stake (s) is 1 USD, and the Martingale multiplier (m) is 2, the calculation would be as follows:","1619070150":"You are being redirected to an external website.","1620278321":"Names and surnames by themselves are easy to guess","1620346110":"Set currency","1621024661":"Tether as a TRC20 token (tUSDT) is a version of Tether that is hosted on Tron.","1622662457":"Date from","1622944161":"Now, go to the <0>Restart trading conditions block.","1623706874":"Use this block when you want to use multipliers as your trade type.","1628981793":"Can I trade cryptocurrencies on Deriv Bot?","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1631281562":"GBP Basket","1633661992":"Tick {{current_tick}}/{{tick_count}}","1634016345":"2. If the trade is successful, this strategy will automatically adjust your stake to 3 units of your initial stake for the next trade. In this case, the stake adjustment is 3 units and the initial stake is 1 USD, hence the next trade will start at 3 USD.","1634903642":"Only your face can be in the selfie","1634969163":"Change currency","1635266650":"It seems that your name in the document is not the same as your Deriv profile. Please update your name in the <0>Personal details page to solve this issue.","1635628424":"An envelope with your name and address.","1636605481":"Platform settings","1636782601":"Multipliers","1638321777":"Your demo account balance is low. Reset your balance to continue trading from your demo account.","1639262461":"Pending withdrawal request:","1639304182":"Please click on the link in the email to reset your password.","1641395634":"Last digits list","1641635657":"New proof of identity document needed","1641980662":"Salutation is required.","1644636153":"Transaction hash: <0>{{value}}","1644703962":"Looking for CFD accounts? Go to Trader's Hub","1644864436":"You’ll need to authenticate your account before requesting to become a professional client. <0>Authenticate my account","1644908559":"Digit code is required.","1645315784":"{{display_currency_code}} Wallet","1647186767":"The bot encountered an error while running.","1648938920":"Netherlands 25","1649239667":"2. Under the Blocks menu, you'll see a list of categories. Blocks are grouped within these categories. Choose the block you want and drag them to the workspace.","1650963565":"Introducing Wallets","1651513020":"Display remaining time for each interval","1651951220":"Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"","1652366857":"get and remove","1652968048":"Define your trade options such as multiplier and stake.","1652976865":"In this example, this block is used with another block to get the open prices from a list of candles. The open prices are then assigned to the variable called \"cl\".","1653136377":"copied!","1653180917":"We cannot verify you without using your camera","1653999225":"Forex: major/minor","1654365787":"Unknown","1654529197":"Purchase condition","1654721858":"Upload anyway","1655372864":"Your contract will expire on this date (in GMT), based on the end time you’ve selected.","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1659352235":"Add your Deriv MT5 CFDs account under Deriv Investments (Europe) Limited, regulated by the Malta Financial Services Authority (MFSA) (licence no. IS/70156).","1665272539":"Remember: You cannot log in to your account until the selected date.","1665718170":"The document must contain a letterhead.","1665738338":"Balance","1665756261":"Go to live chat","1668138872":"Modify account settings","1669062316":"The payout at expiry is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1670016002":"Multiplier: {{ multiplier }}","1670426231":"End Time","1671232191":"You have set the following limits:","1675030608":"To create this account first we need you to resubmit your proof of address.","1676549796":"Dynamic Leverage","1677027187":"Forex","1679743486":"1. Go to Quick strategy and select the strategy you want.","1680666439":"Upload your bank statement showing your name, account number, and transaction history.","1681765749":"Martingale formula 2","1682409128":"Untitled Strategy","1682636566":"Resend email in","1683963454":"Your contract will be closed automatically at the next available asset price on {{date}} at {{timestamp}}.","1684419981":"What's this?","1686800117":"{{error_msg}}","1689103988":"Second Since Epoch","1689258195":"We were unable to verify your address with the details you provided. Please check and resubmit or choose a different document type.","1690746575":"Enhance your trading experience by upgrading your <0>{{platform}} {{type_1}} <1/>and <0>{{type_2}} {{from_account}} account(s).","1691335819":"To continue trading with us, please confirm who you are.","1691536201":"If you choose your duration in number of ticks, you won’t be able to terminate your contract early.","1691765860":"- Negation","1692912479":"Deriv MT5, Deriv X","1693614409":"Start time","1694517345":"Enter a new email address","1696190747":"Trading inherently involves risks, and actual profits can fluctuate due to various factors, including market volatility and other unforeseen variables. As such, exercise caution and conduct thorough research before engaging in any trading activities.","1698624570":"2. Hit Ok to confirm.","1699606318":"You've reached the limit of uploading your documents.","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1701447705":"Please update your address","1702339739":"Common mistakes","1703091957":"We collect information about your employment as part of our due diligence obligations, as required by anti-money laundering legislation.","1703712522":"Your payout is equal to the payout per pip multiplied by the difference, <0>in pips, between the final price and the strike price.","1704656659":"How much experience do you have in CFD trading?","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711016273":"<0>This may take up to 2 minutes. During this time, some services may be unavailable.","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1713633297":"3. If the second trade is also successful, your stake will adjust to 2 USD or 2 units of the initial stake for the next trade.","1714255392":"To enable withdrawals, please complete your financial assessment.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","1715680813":"Your contract will expire at exactly 23:59:59 GMT +0 on your selected expiry date.","1717023554":"Resubmit documents","1720451994":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv fiat and Deriv cryptocurrency accounts.","1720968545":"Upload passport photo page from your computer","1722056905":"The document you provided is not supported for your country. Please provide a supported document for your country.","1722888575":"{{mt5_migration_error}}","1723069433":"Your new Wallet","1723589564":"Represents the maximum number of outstanding contracts in your portfolio. Each line in your portfolio counts for one open position. Once the maximum is reached, you will not be able to open new positions without closing an existing position first.","1724367774":"You can make a funds transfer once the verification of your account is complete.","1724696797":"You are limited to one fiat account only.","1725958461":"Account number","1726472773":"Function with no return value","1726565314":"Close my account","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1733711201":"Regulators/external dispute resolution","1734185104":"Balance: %1","1734264460":"Disclaimer","1734521537":"The document you provided appears to be two different types. Please try again or provide another document.","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738094481":"<0>Duration: Ticks 1","1738611950":"About Reverse Martingale","1738681493":"Remove your glasses, if necessary","1739086943":"Wall Street 30","1739384082":"Unemployed","1739668049":"Close your account","1740371444":"Underlying market is not selected","1742256256":"Please upload one of the following documents:","1743448290":"Payment agents","1743679873":"If you select <0>\"Call\", you’ll earn a <1>payout if the <1>final price is above the <1>strike price at <1>expiry. Otherwise, you won’t receive a payout.","1743902050":"Complete your financial assessment","1744509610":"Just drag the XML file from your computer onto the workspace, and your bot will be loaded accordingly. Alternatively, you can hit Import in Bot Builder, and choose to import your bot from your computer or from your Google Drive.","1745523557":"- Square root","1746051371":"Download the app","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1753082252":"This article explores the strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as Forex, Commodities, and Derived Indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","1753183432":"We take all complaints seriously and aim to resolve them as quickly and fairly as possible. If you are unhappy with any aspect of our service, please let us know by submitting a complaint using the guidance below:","1753226544":"remove","1753975551":"Upload passport photo page","1754256229":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts, up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts, up to {{ allowed_ctrader }} transfers between your Deriv and {{platform_name_ctrader}} accounts, and up to {{ allowed_dxtrade }} transfers between your Deriv and {{platform_name_dxtrade}} accounts.","1756678453":"break out","1758386013":"Do not get lured to fake \"Deriv\" pages!","1761038852":"Let’s continue with providing proofs of address and identity.","1761254001":"A number","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1763123662":"Upload your NIMC slip.","1766212789":"Server maintenance starts at 06:00 GMT every Sunday and may last up to 2 hours. You may experience service disruption during this time.","1766993323":"Only letters, numbers, and underscores are allowed.","1768293340":"Contract value","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1770041368":"Experience safer logins","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772396880":"The date of birth on your document doesn’t match your profile.","1777847421":"This is a very common password","1778893716":"Click here","1779144409":"Account verification required","1779519903":"Should be a valid number.","1779801832":"Please update your password accordingly.","1779872677":"Download e-book","1780442963":"Scan the QR code to download {{ platform }}.","1780770384":"This block gives you a random fraction between 0.0 to 1.0.","1782308283":"Quick strategy","1782395995":"Last Digit Prediction","1782690282":"Blocks menu","1782703044":"Sign up","1783526986":"How do I build a trading bot?","1783740125":"Upload your selfie","1785298924":"D’Alembert formula 1","1786644593":"Supported formats: JPEG, JPG, PNG, PDF, and GIF only","1787492950":"Indicators on the chart tab are for indicative purposes only and may vary slightly from the ones on the {{platform_name_dbot}} workspace.","1788515547":"<0/>For more information on submitting a complaint with the Office of the Arbiter for Financial Services, please <1>see their guidance.","1788966083":"01-07-1999","1789273878":"Payout per point","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1791432284":"Search for country","1791971912":"Recent","1792037169":"To avoid delays, enter your <0>name and <0>date of birth exactly as they appear on your {{document_name}}.","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1796787905":"Please upload the following document(s).","1798943788":"You can only make deposits.","1801093206":"Get candle list","1801270786":"Ready to automate your trading strategy without writing any code? You’ve come to the right place.","1801927731":"{{platform_name_dxtrade}} accounts","1803338729":"Choose what type of contract you want to trade. For example, for the Rise/Fall trade type you can choose one of three options: Rise, Fall, or Both. Selected option will determine available options for the Purchase block.","1804620701":"Expiration","1804789128":"{{display_value}} Ticks","1806017862":"Max. ticks","1808058682":"Blocks are loaded successfully","1808867555":"This block uses the variable “i” to control the iterations. With each iteration, the value of “i” is determined by the items in a given list.","1810217569":"Please refresh this page to continue.","1811109068":"Jurisdiction","1811138041":"Enter a value from {{ value }} to 9.","1811343027":"2. Select your Martingale multiplier. In this example, it is 2.","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812006199":"Identity verification","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815905959":"DTrader, DBot, SmartTrader, and Binary Bot","1815995250":"Buying contract","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1821818748":"Enter Driver License Reference number","1823177196":"Most popular","1824193700":"This block gives you the last digit of the latest tick value.","1824292864":"Call","1827607208":"File not uploaded.","1828370654":"Onboarding","1830520348":"{{platform_name_dxtrade}} Password","1831847842":"I confirm that the name and date of birth above match my chosen identity document (see below)","1833499833":"Proof of identity documents upload failed","1836767074":"Search payment agent name","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1839021527":"Please enter a valid account number. Example: CR123456789","1840721160":"Deriv MT5 latest password requirements","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1843336754":"Select document","1843658716":"If you select \"Only Downs\", you win the payout if consecutive ticks fall successively after the entry spot. No payout if any tick rises or is equal to any of the previous ticks.","1845598565":"The second session concludes upon reaching the aim of one unit of potential profit per session, equivalent to 1 USD. If trading continues, a new session will commence again.","1845892898":"(min: {{min_stake}} - max: {{max_payout}})","1846266243":"This feature is not available for demo accounts.","1846587187":"You have not selected your country of residence","1846588117":"Your contract will be closed automatically when your loss reaches {{stop_out_percentage}}% of your stake.","1849484058":"Any unsaved changes will be lost.","1850031313":"- Low: the lowest price","1850132581":"Country not found","1850659345":"- Payout: the payout of the contract","1851052337":"Place of birth is required.","1851776924":"upper","1854480511":"Cashier is locked","1854874899":"Back to list","1854909245":"Multiplier:","1855566768":"List item position","1856485118":"Please <0>resubmit your proof of address to transfer funds between MT5 and Deriv accounts.","1856755117":"Pending action required","1858251701":"minute","1859308030":"Give feedback","1861688160":"Deposit, transfer, trade","1863053247":"Please upload your identity document.","1863731653":"To receive your funds, contact the payment agent","1865525612":"No recent transactions.","1866244589":"The entry spot is the first tick for High/Low Ticks.","1866811212":"Deposit in your local currency via an authorised, independent payment agent in your country.","1867217564":"Index must be a positive integer","1867783237":"High-to-Close","1869315006":"See how we protect your funds to unlock the cashier.","1869486036":"You receive a <0>payout at <0>expiry if the spot price never touches or breaches the <0>barrier during the contract period. If it does, your contract will be terminated early.","1869787212":"Even","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871377550":"Do you offer pre-built trading bots on Deriv Bot?","1871664426":"Note","1873376454":"This is a price level that you choose. If this barrier is ever crossed, your contract would be terminated.","1874481756":"Use this block to purchase the specific contract you want. You may add multiple Purchase blocks together with conditional blocks to define your purchase conditions. This block can only be used within the Purchase conditions block.","1874756442":"BVI","1875702561":"Load or build your bot","1876015808":"Social Security and National Insurance Trust","1876325183":"Minutes","1876333357":"Tax Identification Number is invalid.","1877225775":"Your proof of address is verified","1877832150":"# from end","1878172674":"No, we don't. However, you'll find quick strategies on Deriv Bot that'll help you build your own trading bot for free.","1878189977":"The Martingale strategy involves increasing your stake after each loss to recoup prior losses with a single successful trade.","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1879651964":"<0>Pending verification","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880227067":"Submit passport photo pages","1880377568":"An example of D’Alembert strategy","1880875522":"Create \"get %1\"","1881018702":"hour","1881380263":"Total assets in your account.","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887257727":"R is the number of rounds a trader can sustain given a specific loss threshold.","1887925280":"The document must be recent and include your name and address:","1889357660":"Enter a value in minutes, up to 60480 minutes (equivalent to 6 weeks).","1890171328":"By clicking Accept below and proceeding with the Account Opening you should note that you may be exposing yourself to risks (which may be significant, including the risk of loss of the entire sum invested) that you may not have the knowledge and experience to properly assess or mitigate.","1890332321":"Returns the number of characters of a given string of text, including numbers, spaces, punctuation marks, and symbols.","1893869876":"(lots)","1894667135":"Please verify your proof of address","1896269665":"CFDs on derived and financial instruments.","1899898605":"Maximum size: 8MB","1902547203":"MetaTrader 5 MacOS app","1903437648":"Blurry photo detected","1904665809":"The Reverse Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","1905032541":"We're now ready to verify your identity","1905589481":"If you want to change your account currency, please contact us via <0>live chat.","1906213000":"Our system will finish any Deriv Bot trades that are running, and Deriv Bot will not place any new trades.","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907423697":"Earn more with Deriv API","1908023954":"Sorry, an error occurred while processing your request.","1908239019":"Make sure all of the document is in the photo","1908686066":"Appropriateness Test Warning","1909647105":"TRX/USD","1909769048":"median","1913777654":"Switch account","1914014145":"Today","1914270645":"Default Candle Interval: {{ candle_interval_type }}","1914725623":"Upload the page that contains your photo.","1916129921":"Reverse Martingale","1917178459":"Bank Verification Number","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1918796823":"Please enter a stop loss amount.","1918832194":"No experience","1919030163":"Tips to take a good selfie","1919296368":"2. Select your unit. In this example, it is 2 units or 2 USD.","1919594496":"{{website_name}} is not affiliated with any payment agents. Customers deal with payment agents at their sole risk. Customers are advised to check the credentials of payment agents and the accuracy of any information about payment agents (on {{website_name}} or elsewhere) before using their services.","1919694313":"To start trading, transfer funds from your Deriv account into this account.","1920217537":"Compare","1920468180":"How to use the SMA block","1921634159":"A few personal details","1921914669":"Deposit with Deriv P2P","1922529883":"Boom 1000 Index","1922955556":"Use a longer keyboard pattern with more turns","1924365090":"Maybe later","1924765698":"Place of birth*","1928930389":"GBP/NOK","1929694162":"Compare accounts","1930899934":"Tether","1931659123":"Run on every tick","1931884033":"It seems that your date of birth in the document is not the same as your Deriv profile. Please update your date of birth in the <0>Personal details page to solve this issue.","1934450653":"For <0>Contract type, set it to Both.","1938327673":"Deriv {{platform}} <0>{{is_demo}}","1939014728":"How do I remove blocks from the workspace?","1939902659":"Signal","1940408545":"Delete this token","1941915555":"Try later","1943440862":"Calculates Bollinger Bands (BB) list from a list with a period","1944204227":"This block returns current account balance.","1947527527":"1. This link was sent by you","1948044825":"MT5 Derived","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1955219734":"Town/City*","1957759876":"Upload identity document","1958788790":"This is the amount you’ll receive at expiry for every point of change in the underlying price, if the spot price never touches or breaches the barrier throughout the contract duration.","1958807602":"4. 'Table' takes an array of data, such as a list of candles, and displays it in a table format.","1959678342":"Highs & Lows","1960240336":"first letter","1964165648":"Connection lost","1965916759":"Asian options settle by comparing the last tick with the average spot over the period.","1966023998":"2FA enabled","1966281100":"Console {{ message_type }} value: {{ input_message }}","1968025770":"Bitcoin Cash","1968077724":"Agriculture","1968368585":"Employment status","1970060713":"You’ve successfully deleted a bot.","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","1973910243":"Manage your accounts","1974273865":"This scope will allow third-party apps to view your account activity, settings, limits, balance sheets, trade purchase history, and more.","1974903951":"If you hit Yes, the info you entered will be lost.","1977724653":"This account offers CFDs on financial instruments.","1978218112":"Google Authenticator","1981940238":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}} and {{legal_entity_name_v}}.","1982790875":"Upgrade your <0/><1>{{account_title}} {{platform}} account(s)","1982796981":"Declarations","1982912252":"Relative Strength Index (RSI) from a list with a period","1983001416":"Define your trade options such as multiplier and stake. This block can only be used with the multipliers trade type. If you select another trade type, this block will be replaced with the Trade options block.","1983358602":"This policy, which may change from time to time, applies to your account registered with {{legal_entity_name}}.","1983387308":"Preview","1983480826":"Sign in","1983544897":"P.O. Box is not accepted in address","1983676099":"Please check your email for details.","1984700244":"Request an input","1984742793":"Uploading documents","1985366224":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts and up to {{ allowed_mt5 }} transfers between your Deriv and {{platform_name_mt5}} accounts.","1985637974":"Any blocks placed within this block will be executed at every tick. If the default candle interval is set to 1 minute in the Trade Parameters root block, the instructions in this block will be executed once every minute. Place this block outside of any root block.","1986322868":"When your loss reaches or exceeds this amount, your trade will be closed automatically.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1990331072":"Proof of ownership","1990735316":"Rise Equals","1991055223":"View the market price of your favourite assets.","1991448657":"Don't know your tax identification number? Click <0>here to learn more.","1991524207":"Jump 100 Index","1994023526":"The email address you entered had a mistake or typo (happens to the best of us).","1994558521":"The platforms aren’t user-friendly.","1994600896":"This block requires a list of candles as an input parameter.","1995023783":"First line of address*","1996767628":"Please confirm your tax information.","1997138507":"If the last tick is equal to the average of the ticks, you don't win the payout.","1997313835":"Your stake will continue to grow as long as the current spot price remains within a specified <0>range from the <0>previous spot price. Otherwise, you lose your stake and the trade is terminated.","1999213036":"Enhanced security is just a tap away.","1999346412":"For faster verification, input the same address here as in your proof of address document (see section below)","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","2001361785":"1. Start with the initial stake. Let’s say 1 USD.","2004052487":"Estimating the lifespan of your trades","2007028410":"market, trade type, contract type","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","2012139674":"Android: Google password manager.","2014536501":"Card number","2014590669":"Variable '{{variable_name}}' has no value. Please set a value for variable '{{variable_name}}' to notify.","2017672013":"Please select the country of document issuance.","2019596693":"The document was rejected by the Provider.","2020545256":"Close your account?","2021037737":"Please update your details to continue.","2021161151":"Watch this video to learn how to build a trading bot on Deriv Bot. Also, check out this blog post on building a trading bot.","2023546580":"Your account will be available for trading once the verification of your account is complete.","2023659183":"Student","2023762268":"I prefer another trading website.","2025339348":"Move away from direct light — no glare","2027441253":"Why do we collect this?","2027625329":"Simple Moving Average Array (SMAA)","2027638150":"Upgrade","2027696535":"Tax information","2028163119":"EOS/USD","2029237955":"Labuan","2030018735":"RSI is a technical analysis tool that helps you identify the market trend. It will give you a value from 0 to 100. An RSI value of 70 and above means that the asset is overbought and the current trend may reverse, while a value of 30 and below means that the asset is oversold.","2030045667":"Message","2033648953":"This block gives you the specified candle value for a selected time interval.","2034803607":"You must be 18 years old and above.","2035258293":"Start trading with us","2035925727":"sort {{ sort_type }} {{ sort_direction }} {{ input_list }}","2036578466":"Should be {{value}}","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2038562422":"TIN is required.","2039198937":"Maximum stake: The maximum amount you are willing to pay to enter a single trade. The stake for your next trade will reset to the initial stake if it exceeds this value. This is an optional risk management parameter.","2042023623":"We’re reviewing your documents. This should take about 5 minutes.","2042050260":"- Purchase price: the purchase price (stake) of the contract","2042115724":"Upload a screenshot of your account and personal details page with your name, account number, phone number, and email address.","2044086432":"The close is the latest tick at or before the end time. If you selected a specific end time, the end time is the selected time.","2046273837":"Last tick","2046577663":"Import or choose your bot","2048110615":"Email address*","2048134463":"File size exceeded.","2049386104":"We need you to submit these in order to get this account:","2050170533":"Tick list","2051558666":"View transaction history","2052022586":"To enhance your MT5 account security we have upgraded our password policy.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2056369950":"<0>To complete your Wallet setup, log out and then log in again.","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2059365224":"Yes, you can get started with a pre-built bot using the Quick strategy feature. You’ll find some of the most popular trading strategies here: Martingale, D'Alembert, and Oscar's Grind. Just select the strategy, enter your trade parameters, and your bot will be created for you. You can always tweak the parameters later.","2059753381":"Why did my verification fail?","2060873863":"Your order {{order_id}} is complete","2062912059":"function {{ function_name }} {{ function_params }}","2063812316":"Text Statement","2063815003":"Ready to enable Wallets","2063890788":"Cancelled","2066978677":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0 /> {{opening_date}}.","2067903936":"Driving licence","2070002739":"Don’t accept","2070345146":"When opening a leveraged CFD trade.","2070518923":"Import your bot or tap Quick Strategies to choose from the ready-to-use bot templates.","2070752475":"Regulatory Information","2070858497":"Your document appears to be a screenshot.","2071043849":"Browse","2074207096":"How to create a passkey?","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","2074713563":"4.2. Submission of a complaint","2079925695":"Unit: The number of units that are added in the event of a trade resulting in loss or the number of units removed in the event of a trade resulting in profit. For example, if the unit is set at 2, the stake increases or decreases by two times the initial stake of 1 USD, meaning it changes by 2 USD.","2080553498":"3. Get the chat ID using the Telegram REST API (read more: https://core.telegram.org/bots/api#getupdates)","2080829530":"Sold for: {{sold_for}}","2081622549":"Must be a number higher than {{ min }}","2082533832":"Yes, delete","2084693624":"Converts a string representing a date/time string into seconds since Epoch. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825. Time and time zone offset are optional.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","2086048243":"Certificate of incorporation","2086792088":"Both barriers should be relative or absolute","2088735355":"Your session and login limits","2089087110":"Basket indices","2089395053":"Unit","2089581483":"Expires on","2090650973":"The spot price may change by the time your order reaches our servers. When this happens, your payout may be affected.","2091671594":"Status","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2096603244":"Derived - Vanuatu","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2097815211":"Number of rounds (R) = 10","2097932389":"Upload 2 separate screenshots from the personal details page and the account page via <0>https://app.astropay.com/profile","2099488590":"Changes to your Deriv MT5 login","2100713124":"account","2100912278":"4. If a trade ends in a loss, the stake for the following trade will be reset to the initial stake amount of 1 USD.","2101972779":"This is the same as the above example, using a tick list.","2102572780":"Length of digit code must be 6 characters.","2104115663":"Last login","2104364680":"Please switch to your demo account to run your Deriv Bot.","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2107882050":"The back of your document appears to be missing. Please include both sides of your identity document.","2110365168":"Maximum number of trades reached","2111015970":"This block helps you check if your contract can be sold. If your contract can be sold, it returns “True”. Otherwise, it returns an empty string.","2111528352":"Creating a variable","2112119013":"Take a selfie showing your face","2112175277":"with delimiter","2113321581":"Add a Deriv Gaming account","2114766645":"Some trade types are unavailable for {{symbol}}.","2115223095":"Loss","2117165122":"1. Create a Telegram bot and get your Telegram API token. Read more on how to create bots in Telegram here: https://core.telegram.org/bots#6-botfather","2117489390":"Auto update in {{ remaining }} seconds","2118292085":"<0>Note: You’ll receive an email when your deposit starts being processed.","2119449126":"Example output of the below example will be:","2119710534":"FAQ","2121227568":"NEO/USD","2122152120":"Assets","2127564856":"Withdrawals are locked","2128919448":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price. We won’t offer a contract value if the remaining duration is below 15 seconds or if the contract duration is in ticks.","2129807378":"Update profile","2133075559":"This means after 10 rounds of consecutive losses, this trader will lose 100 USD. This reaches the loss threshold of 100 USD, stopping the bot.","2133451414":"Duration","2133470627":"This block returns the potential payout for the selected trade type. This block can be used only in the \"Purchase conditions\" root block.","2135563258":"Forex trading frequency","2136246996":"Selfie uploaded","2136480755":"Some details in your document appear to be invalid, missing, or unclear.","2137901996":"This will clear all data in the summary, transactions, and journal panels. All counters will be reset to zero.","2137993569":"This block compares two values and is used to build a conditional structure.","2138861911":"Scans and photocopies are not accepted","2139171480":"Reset Up/Reset Down","2139362660":"left side","2141055709":"New {{type}} password","2143803283":"Purchase Error","2144609616":"If you select \"Reset-Down”, you win the payout if the exit spot is strictly lower than either the entry spot or the spot at reset time.","2145690912":"Income Earning","2145995536":"Create new account","2146336100":"in text %1 get %2","2146698770":"Pro tip: You can also click and drag out the desired block","2146892766":"Binary options trading experience","2147244655":"How do I import my own trading bot into Deriv Bot?","-931052769":"Submit verification","-1004605898":"Tips","-1938142055":"Documents uploaded","-448090287":"The link only works on mobile devices","-1244287721":"Something's gone wrong","-241258681":"You'll need to restart your verification on your computer","-929254273":"Get secure link","-2021867851":"Check back here to finish the submission","-1547069149":"Open the link and complete the tasks","-1767652006":"Here's how to do it:","-277611959":"You can now return to your computer to continue","-724178625":"Make sure full document is visible","-1519380038":"Glare detected","-1895280620":"Make sure your card details are clear to read, with no blur or glare","-1464447919":"Make sure your permit details are clear to read, with no blur or glare","-1436160506":"Make sure details are clear to read, with no blur or glare","-759124288":"Close","-759118956":"Redo","-753375398":"Enlarge image","-1042933881":"Driver's license","-1503134764":"Face photo page","-1335343167":"Sorry, no mobile phone bills","-699045522":"Documents you can use to verify your identity","-543666102":"It must be an official photo ID","-903877217":"These are the documents most likely to show your current home address","-1356835948":"Choose document","-1364375936":"Select a %{country} document","-401586196":"or upload photo – no scans or photocopies","-3110517":"Take a photo with your phone","-2033894027":"Submit identity card (back)","-20684738":"Submit license (back)","-1359585500":"Submit license (front)","-106779602":"Submit residence permit (back)","-1287247476":"Submit residence permit (front)","-1954762444":"Restart the process on the latest version of Safari","-261174676":"Must be under 10MB.","-685885589":"An error occurred while loading the component","-502539866":"Your face is needed in the selfie","-1377968356":"Please try again","-1226547734":"Try using a JPG or PNG file","-849068301":"Loading...","-1730346712":"Loading","-1849371752":"Check that your number is correct","-309848900":"Copy","-1424436001":"Send link","-1093833557":"How to scan a QR code","-1408210605":"Point your phone’s camera at the QR code","-1773802163":"If it doesn’t work, download a QR code scanner from Google Play or the App Store","-109026565":"Scan QR code","-1644436882":"Get link via SMS","-1667839246":"Enter mobile number","-1533172567":"Enter your mobile number:","-1352094380":"Send this one-time link to your phone","-28974899":"Get your secure link","-359315319":"Continue","-826420669":"Make sure","-1279080293":"2. Your desktop window stays open","-102776692":"Continue with the verification","-89152891":"Take a photo of the back of your card","-1646367396":"Take a photo of the front of your card","-1350855047":"Take a photo of the front of your license","-2119367889":"Take a photo using the basic camera mode instead","-342915396":"Take a photo","-419040068":"Passport photo page","-1354983065":"Refresh","-1925063334":"Recover camera access to continue face verification","-54784207":"Camera access is denied","-1392699864":"Allow camera access","-269477401":"Provide the whole document page for best results","-864639753":"Upload back of card from your computer","-1309771027":"Upload front of license from your computer","-1722060225":"Take photo","-565732905":"Selfie","-1703181240":"Check that it is connected and functional. You can also continue verification on your phone","-2043114239":"Camera not working?","-2029238500":"It may be disconnected. Try using your phone instead.","-468928206":"Make sure your device's camera works","-466246199":"Camera not working","-698978129":"Remember to press stop when you're done. Redo video actions","-538456609":"Looks like you took too long","-781816433":"Photo of your face","-1471336265":"Make sure your selfie clearly shows your face","-1375068556":"Check selfie","-1914530170":"Face forward and make sure your eyes are clearly visible","-776541617":"We'll compare it with your document","-478752991":"Your link will expire in one hour","-1859729380":"Keep this window open while using your mobile","-1283761937":"Resend link","-629011256":"Don't refresh this page","-1005231905":"Once you've finished we'll take you to the next step","-542134805":"Upload photo","-1462975230":"Document example","-1472844935":"The photo should clearly show your document","-1120954663":"First name*","-1659980292":"First name","-962979523":"Your {{ field_name }} as in your identity document","-1416797980":"Please enter your {{ field_name }} as in your official identity documents.","-1466268810":"Please remember that it is your responsibility to keep your answers accurate and up to date. You can update your personal details at any time in your <0>account settings.","-32386760":"Name","-766265812":"first name","-1857534296":"John","-1282749116":"last name","-1485480657":"Other details","-1784741577":"date of birth","-1702919018":"Second line of address (optional)","-1315410953":"State/Province","-2040322967":"Citizenship","-344715612":"Employment status*","-1543016582":"I hereby confirm that the tax information I provided is true and complete. I will also inform {{legal_entity_name}} about any changes to this information.","-946282997":"Additional information","-1315571766":"Place of birth","-789291456":"Tax residence*","-1692219415":"Tax residence","-1903720068":"The country in which you meet the criteria for paying taxes. Usually the country in which you physically reside.","-651516152":"Tax Identification Number","-1387062433":"Account opening reason","-222283483":"Account opening reason*","-583925597":"For verification purposes as required by regulation. It’s your responsibility to provide accurate and complete answers. You can update personal details at any time in your account settings.","-1113902570":"Details","-71696502":"Previous","-1541554430":"Next","-307865807":"Risk Tolerance Warning","-690100729":"Yes, I understand the risk.","-2010628430":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, you must confirm that you understand your capital is at risk.","-863770104":"Please note that by clicking ‘OK’, you may be exposing yourself to risks. You may not have the knowledge or experience to properly assess or mitigate these risks, which may be significant, including the risk of losing the entire sum you have invested.","-684271315":"OK","-1292808093":"Trading Experience","-153346659":"Upload your selfie.","-602131304":"Passport number","-1051213440":"Upload the front and back of your identity card.","-1600807543":"First, enter your identity card number and the expiry date.","-1139923664":"Next, upload the front and back of your identity card.","-783705755":"Upload the front of your identity card.","-566750665":"NIMC slip and proof of age","-1465944279":"NIMC slip number","-429612996":"Next, upload both of the following documents.","-376981174":"Upload your proof of age: birth certificate or age declaration document.","-612174191":"First line of address is required","-242734402":"Only {{max}} characters, please.","-378415317":"State is required","-1784470716":"State is not in a proper format","-1699820408":"Please enter a {{field_name}} under {{max_number}} characters.","-1575567374":"postal/ZIP code","-816263501":"Only letters, numbers, space and hyphen are allowed.","-755626951":"Complete your address details","-1024240099":"Address","-1534917661":"Select your preferred currency","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-1631552645":"Professionals","-474864470":"Personal Care, Sales and Service Workers","-1129355784":"Agricultural, Forestry and Fishery Workers","-1242914994":"Craft, Metal, Electrical and Electronics Workers","-1317824715":"Cleaners and Helpers","-1592729751":"Mining, Construction, Manufacturing and Transport Workers","-1030759620":"Government Officers","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-654781670":"Primary","-1717373258":"Secondary","-1156937070":"$500,001 - $1,000,000","-315534569":"Over $1,000,000","-2068544539":"Salaried Employee","-531314998":"Investments & Dividends","-1235114522":"Pension","-1298056749":"State Benefits","-449943381":"Savings & Inheritance","-477761028":"Voter ID","-1466346630":"CPF","-1161338910":"First name is required.","-1161818065":"Last name should be between 2 and 50 characters.","-1281693513":"Date of birth is required.","-26599672":"Citizenship is required","-912174487":"Phone is required.","-673765468":"Letters, numbers, spaces, periods, hyphens and forward slashes only.","-212167954":"Tax Identification Number is not properly formatted.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-204765990":"Terms of use","-189310067":"Account closed","-849320995":"Assessments","-773766766":"Email and passwords","-1144318594":"Passkeys","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-526636259":"Error 404","-739367071":"Employed","-626752657":"0-1 year","-532014689":"1-2 years","-1001024004":"Over 3 years","-790513277":"6-10 transactions in the past 12 months","-580085300":"11-39 transactions in the past 12 months","-1458676679":"You should enter 2-50 characters.","-1116008222":"You should enter 9-35 numbers.","-1995979930":"First line of address is required.","-703454156":"Please enter a Postal/ZIP code under 20 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-1103497546":"Tax return","-700600899":"Business proof of address","-1073862586":"Memorandum","-1823328095":"Authorization letter","-397487797":"Enter your full card number","-1376950117":"That file format isn't supported. Please upload .pdf, .png, .jpg, or .jpeg files only.","-612752984":"These are default limits that we apply to your accounts.","-1411635770":"Learn more about account limits","-1340125291":"Done","-1101543580":"Limit","-858297154":"Represents the maximum amount of cash that you may hold in your account. If the maximum is reached, you will be asked to withdraw funds.","-976258774":"Not set","-1182362640":"Represents the maximum aggregate payouts on outstanding contracts in your portfolio. If the maximum is attained, you may not purchase additional contracts without first closing out existing positions.","-1781293089":"Maximum aggregate payouts on open positions","-1412690135":"*Any limits in your Self-exclusion settings will override these default limits.","-1598751496":"Represents the maximum volume of contracts that you may purchase in any given trading day.","-173346300":"Maximum daily turnover","-138380129":"Total withdrawal allowed","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-506122621":"Please take a moment to update your information now.","-1106259572":"Don't know your tax identification number? <1 />Click <0>here to learn more.","-252665911":"Place of birth{{required}}","-859814496":"Tax residence{{required}}","-237940902":"Tax Identification number{{required}}","-919191810":"Please fill in tax residence.","-270569590":"Intended use of account{{required}}","-2120290581":"Intended use of account is required.","-1662154767":"a recent utility bill (e.g. electricity, water, gas, landline, or internet), bank statement, or government-issued letter with your name and this address.","-594456225":"Second line of address","-1964954030":"Postal/ZIP Code","-516397235":"Be careful who you share this token with. Anyone with this token can perform the following actions on your account behalf","-989216986":"Add accounts","-617480265":"Delete token","-316749685":"Are you sure you want to delete this token?","-955038366":"Copy this token","-1668692965":"Hide this token","-1661284324":"Show this token","-1076138910":"Trade","-1666909852":"Payments","-488597603":"Trading information","-605778668":"Never","-1628008897":"Token","-1238499897":"Last Used","-1171226355":"Length of token name must be between {{MIN_TOKEN}} and {{MAX_TOKEN}} characters.","-1803339710":"Maximum {{MAX_TOKEN}} characters.","-408613988":"Select scopes based on the access you need.","-5605257":"This scope will allow third-party apps to withdraw to payment agents and make inter-account transfers for you.","-1373485333":"This scope will allow third-party apps to view your trading history.","-758221415":"This scope will allow third-party apps to open accounts for you, manage your settings and token usage, and more. ","-807767876":"Note:","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-1652683689":"Please note that you can only have 1 fiat account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-2087317410":"Oops, something went wrong.","-184202848":"Upload file","-370334393":"Click here to browse your files.","-863586176":"Drag and drop a file or click to browse your files.","-723198394":"File size should be 8MB or less","-1948369500":"File uploaded is not supported","-1040865880":"Drop files here..","-1100235269":"Industry of employment","-684388823":"Estimated net worth","-509054266":"Anticipated annual turnover","-1117345066":"Choose the document type","-1634507018":"Enter your {{document_name}}","-1237846864":"Verify again","-39187636":"{{index}}.","-337620257":"Switch to real account","-2120454054":"Add a real account","-38915613":"Unsaved changes","-2137450250":"You have unsaved changes. Are you sure you want to discard changes and leave this page?","-1067082004":"Leave Settings","-1982432743":"It appears that the address in your document doesn’t match the address\n in your Deriv profile. Please update your personal details now with the\n correct address.","-1451334536":"Continue trading","-251603364":"Your document for proof of address is expired. <0/>Please submit again.","-1425489838":"Proof of address verification not required","-1008641170":"Your account does not need address verification at this time. We will inform you if address verification is required in the future.","-60204971":"We could not verify your proof of address","-1944264183":"To continue trading, you must also submit a proof of identity.","-1088324715":"We’ll review your documents and notify you of its status within 1 - 3 working days.","-329713179":"Ok","-2145244263":"This field is required","-839094775":"Back","-1813671961":"Your identity verification failed because:","-2097808873":"We were unable to verify your ID with the details you provided. ","-1652371224":"Your profile is updated","-504784172":"Your document has been submitted","-1391934478":"Your ID is verified. You will also need to submit proof of your address.","-118547687":"ID verification passed","-200989771":"Go to personal details","-1358357943":"Please check and update your postal code before submitting proof of identity.","-1401994581":"Your personal details are missing","-2004327866":"Please select a valid country of document issuance.","-1664159494":"Country","-1044962593":"Upload Document","-749870311":"Please contact us via <0>live chat.","-1084991359":"Proof of identity verification not required","-1981334109":"Your account does not need identity verification at this time. We will inform you if identity verification is required in the future.","-182918740":"Your proof of identity submission failed because:","-155705811":"A clear colour photo or scanned image","-246893488":"JPEG, JPG, PNG, PDF, or GIF","-1454880310":"Must be valid for at least 6 months","-1949501500":"First, enter your {{label}}.","-100534371":"Before uploading, please ensure that you’re facing forward in the selfie, your face is within the frame, and your eyes are clearly visible even if you’re wearing glasses.","-1529523673":"Confirm and upload","-705047643":"Sorry, an error occured. Please select another file.","-1664309884":"Tap here to upload","-1725454783":"Failed","-856213726":"You must also submit a proof of address.","-552371330":"We were unable to verify your income. <0 /> Please check the email we've sent you for further information.","-841187054":"Try Again","-978467455":"Limit reached","-361316523":"You have reached the maximum number of allowed attempts for submitting proof of income. <0 /> Please check the email we've sent you for further information.","-1785967427":"We'll review your documents and notify you of its status within 7 working days.","-987011273":"Your proof of ownership isn't required.","-808299796":"You are not required to submit proof of ownership at this time. We will inform you if proof of ownership is required in the future.","-179726573":"We’ve received your proof of ownership.","-813779897":"Proof of ownership verification passed.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-47815161":"Please include at least 1 special character such as ( _ @ ? ! / # ) in your password.","-1313806160":"Please request a new password and check your email for the new token.","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-1108813179":"You can use this password for all your Deriv MT5 accounts.","-2068479232":"{{platform}} password","-507633532":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character such as ( _ @ ? ! / # ).","-1597186502":"Reset {{platform}} password","-638756912":"Black out digits 7 to 12 of the card number that’s shown on the front of your debit/credit card.⁤","-996691262":"We’ve introduced these limits to encourage <0>responsible trading. They are optional, and you can adjust them anytime.","-2079276011":"These limits apply to your multipliers trades only. For example, <0>maximum total loss refers to the losses on your multipliers trades.","-2116570030":"If you want to adjust your limits, <0>contact us via live chat. We’ll make the adjustments within 24 hours.","-1389915983":"You decide how much and how long to trade. You can take a break from trading whenever you want. This break can be from 6 weeks to 5 years. When it’s over, you can extend it or log in to resume trading. If you don’t want to set a specific limit, leave the field empty.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-1088698009":"These self-exclusion limits help you control the amount of money and time you spend trading on {{platform_name_trader}}, {{platform_name_dbot}}, {{platform_name_smarttrader}} and {{platform_name_bbot}} on Deriv. The limits you set here will help you exercise <0>responsible trading.","-933963283":"No, review my limits","-1759860126":"Yes, log me out immediately","-572347855":"{{value}} mins","-313333548":"You’ll be able to adjust these limits at any time. You can reduce your limits from the <0>self-exclusion page. To increase or remove your limits, please contact our <1>Customer Support team.","-1265833982":"Accept","-2123139671":"Your stake and loss limits","-1250802290":"24 hours","-2070080356":"Max. total stake","-1545823544":"7 days","-180147209":"You will be automatically logged out from each session after this time limit.","-374553538":"Your account will be excluded from the website until this date (at least 6 months, up to 5 years).","-2105708790":"Your maximum account balance and open positions","-1960600163":"Once your account balance reaches this amount, you will not be able to deposit funds into your account.","-1073845224":"No. of open position(s)","-288196326":"Your maximum deposit limit","-568749373":"Max. deposit limit","-1617352279":"The email is in your spam folder (Sometimes things get lost there).","-547557964":"We can’t deliver the email to this address (Usually because of firewalls or filtering).","-142444667":"Please click on the link in the email to change your Deriv MT5 password.","-742748008":"Check your email and click the link in the email to proceed.","-84068414":"Still didn't get the email? Please contact us via <0>live chat.","-474419287":"FATCA declaration","-1101737402":"Please select*","-975118358":"Your account will be opened with {{legal_entity_name}}, regulated by the Malta Financial Services Authority (MFSA), and will be subject to the laws of Malta.","-2073934245":"The financial trading services offered on this site are only suitable for customers who accept the possibility of losing all the money they invest and who understand and have experience of the risk involved in the purchase of financial contracts. Transactions in financial contracts carry a high degree of risk. If the contracts you purchased expire as worthless, you will lose all your investment, which includes the contract premium.","-1035494182":"You acknowledge that, subject to the Company's discretion, applicable regulations, and internal checks being fulfilled, we will open an account for you and allow you to deposit funds during the client acceptance procedure. However, until the verification of your account is completed, you will not be able to trade, withdraw or make further deposits. If you do not provide relevant documents within 30-days, we will refund the deposited amount through the same payment method you used to deposit.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-1209644365":"I hereby confirm that my request for opening an account with Deriv Investments (Europe) Ltd is made on my own initiative.","-740157281":"Trading Experience Assessment","-1720468017":"In providing our services to you, we are required to obtain information from you in order to assess whether a given product or service is appropriate for you.","-1685104463":"* This is required","-186841084":"Change your login email","-907403572":"To change your email address, you'll first need to unlink your email address from your {{identifier_title}} account.","-1850792730":"Unlink from {{identifier_title}}","-428335668":"You will need to set a password to complete the process.","-1232613003":"<0>Verification failed. <1>Why?","-805775852":"<0>Needs verification.<1>Verify now","-1983989074":"<0>No new positions","-1196936955":"Upload a screenshot of your name and email address from the personal information section.","-1286823855":"Upload your mobile bill statement showing your name and phone number.","-1309548471":"Upload your bank statement showing your name and account details.","-1410396115":"Upload a photo showing your name and the first six and last four digits of your card number. If the card does not display your name, upload the bank statement showing your name and card number in the transaction history.","-3805155":"Upload a screenshot of either of the following to process the transaction:","-1523487566":"- your account profile section on the website","-613062596":"- the Account Information page on the app","-1718304498":"User ID","-609424336":"Upload a screenshot of your name, account number, and email address from the personal details section of the app or profile section of your account on the website.","-1954436643":"Upload a screenshot of your username on the General Information page at <0>https://onlinenaira.com/members/index.htm","-79853954":"Upload a screenshot of your account number and phone number on the Bank Account/Mobile wallet page at <0>https://onlinenaira.com/members/bank.htm","-1192882870":"Upload a screenshot of your name and account number from the personal details section.","-818898181":"Name in document doesn’t match your Deriv profile.","-310316375":"Address in document doesn’t match address you entered above.","-485368404":"Document issued more than 6-months ago.","-91160765":"Document issued more than 12-months ago.","-367016488":"Blurry document. All information must be clear and visible.","-1957076143":"Cropped document. All information must be clear and visible.","-1576856758":"An account with these details already exists. Please make sure the details you entered are correct as only one real account is allowed per client. If this is a mistake, contact us via <0>live chat.","-1792723131":"To avoid delays, enter your <0>date of birth exactly as it appears on your {{document_name}}.","-1629894615":"I have other financial priorities.","-844051272":"I want to stop myself from trading.","-1113965495":"I’m no longer interested in trading.","-1224285232":"Customer service was unsatisfactory.","-1231402474":"Connected apps are authorised applications associated with your account through your API token or the OAuth authorisation process. They can act on your behalf within the limitations that you have set.","-506083843":"As a user, you are responsible for sharing access and for actions that occur in your account (even if they were initiated by a third-party app on your behalf).","-831752682":"Please note that only third-party apps will be displayed on this page. Official Deriv apps will not appear here.","-915844096":"US citizenship or lawful permanent resident (green card) status","-208714573":"An “in care of” address or a “hold mail” address that is the sole address with respect to the client","-1082633433":"A power of attorney or signatory authority granted to a person with a US address.","-231863107":"No","-1858215754":"The document must be up-to-date and signed by the issuance authority.","-718917527":"Invalid or incomplete documents shall be rejected.","-1526404112":"Utility bill: electricity, water, gas, or landline phone bill.","-537552700":"Home rental agreement: valid and current agreement.","-506510414":"Date and time","-1708927037":"IP address","-870902742":"How much knowledge and experience do you have in relation to online trading?","-1929477717":"I have an academic degree, professional certification, and/or work experience related to financial services.","-1540148863":"I have attended seminars, training, and/or workshops related to trading.","-922751756":"Less than a year","-542986255":"None","-1337206552":"In your understanding, CFD trading allows you to","-456863190":"Place a position on the price movement of an asset where the outcome is a fixed return or nothing at all.","-1314683258":"Make a long-term investment for a guaranteed profit.","-1546090184":"How does leverage affect CFD trading?","-1636427115":"Leverage helps to mitigate risk.","-800221491":"Leverage guarantees profits.","-811839563":"Leverage lets you open large positions for a fraction of trade value, which may result in increased profit or loss.","-1185193552":"Close your trade automatically when the loss is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1046354":"Close your trade automatically when the profit is equal to or more than a specified amount, as long as there is adequate market liquidity.","-1842858448":"Make a guaranteed profit on your trade.","-860053164":"When trading multipliers.","-1250327770":"When buying shares of a company.","-1222388581":"All of the above.","-1592318047":"See example","-1694758788":"Enter your document number","-1176889260":"Please select a document type.","-1265050949":"identity document","-2139303636":"You may have followed a broken link, or the page has moved to a new address.","-1448368765":"Error code: {{error_code}} page not found","-254792921":"You can only make deposits at the moment. To enable withdrawals, please complete your financial assessment.","-1437017790":"Financial information","-70342544":"We’re legally obliged to ask for your financial information.","-39038029":"Trading experience","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-1743024217":"Select Language","-136976514":"Country of residence*","-1124948631":"Professional Client","-259515058":"By default, all {{brand_website_name}} clients are retail clients but anyone can request to be treated as a professional client.","-1463348492":"I would like to be treated as a professional client.","-1958764604":"Email preference","-2068064150":"Get updates about Deriv products, services and events.","-1558679249":"Please make sure your information is correct or it may affect your trading experience.","-1822545742":"Ether Classic","-1334641066":"Litecoin","-1214036543":"US Dollar","-1782590355":"No currency has been set for this account","-2116332353":"Please close your positions in the following Deriv account(s):","-2048005267":"{{number_of_positions}} position(s)","-2125635811":"Please withdraw your funds from the following {{platform_name}} account(s):","-577445413":"Please close your positions in the following {{platform_name}} account(s):","-1219849101":"Please select at least one reason","-9323953":"Remaining characters: {{remaining_characters}}","-484540402":"An error occurred","-1911549768":"Inaccessible MT5 account(s)","-1869355019":"Action required","-1030102424":"You can't trade on Deriv.","-448385353":"You can't make transactions.","-1058447223":"Before closing your account:","-912764166":"Withdraw your funds.","-60139953":"We shall delete your personal information as soon as our legal obligations are met, as mentioned in the section on Data Retention in our <0>Security and privacy policy","-2061895474":"Closing your account will automatically log you out. We shall delete your personal information as soon as our legal obligations are met.","-203298452":"Close account","-937707753":"Go Back","-771109503":"Use our powerful, flexible, and free API to build a custom trading platform for yourself or for your business.","-1815044949":"You currently don't have any third-party authorised apps associated with your account.","-1699100421":"What are connected apps?","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-1468863262":"{{action}}","-727433417":"{{status}}","-1814836151":"What are passkeys?","-1275937234":"Unlock your account like your phone - with biometrics, face scan or PIN.","-587750445":"Extra security layer.","-642452561":"Shields against unauthorised access and phishing.","-1654043401":"You can create one passkey per device.","-1411242065":"Where are passkeys saved?","-258752017":"What happens if my Deriv account email is changed?","-634268263":"Sign in to Deriv with your existing passkey.","-1405679241":"Stored on: ","-1700177761":"Create passkey","-1729774899":"Sign in to your Google or iCloud account.","-1708254107":"Enable Bluetooth.","-613368504":"Tips:","-1897886029":"Before using passkey:","-592543249":"Add more passkeys","-585339315":"Your passkey is successfully removed. To avoid sign-in prompts, also remove the passkey from your Google password manager. ","-1728732301":"Effortless login with passkeys","-684009726":"Edit passkey","-1140319320":"Your account is now secured with a passkey.<0/>Manage your passkey through your<0/>Deriv account settings.","-1036903080":"We’re experiencing a temporary issue in processing your request. Please try again later.","-331060101":"Passkey setup failed","-713875531":"Enable bluetooth.","-80717068":"Apps you have linked to your <0>Deriv password:","-340060402":"Your Deriv X password is for logging in to your Deriv X accounts on the web and mobile apps.","-619126443":"Use the <0>Deriv password to log in to {{brand_website_name}} and {{platform_name_trader}}.","-623760979":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_trader}} and {{platform_name_go}}.","-459147994":"Use the <0>Deriv password to log in to {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, {{platform_name_dbot}} and {{platform_name_ctrader}}.","-1884902844":"Max. deposit limit per day","-545085253":"Max. deposit limit over 7 days","-1031006762":"Max. deposit limit over 30 days","-1116871438":"Max. total loss over 30 days","-2134714205":"Time limit per session","-1884271702":"Time out until","-1265825026":"Timeout time must be greater than current time.","-1332882202":"Timeout time cannot be more than 6 weeks.","-1635977118":"Exclude time cannot be less than 6 months.","-2131200819":"Disable","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-2067796458":"Authentication code","-790444493":"Protect your account with 2FA. Each time you log in to your account, you will need to enter your password and an authentication code generated by a 2FA app on your smartphone.","-752939584":"How to set up 2FA for your Deriv account","-90649785":"Click here to copy key","-206376148":"Key copied!","-368010540":"You have enabled 2FA for your Deriv account.","-403552929":"To disable 2FA, please enter the six-digit authentication code generated by your 2FA app below:","-890084320":"Save and submit","-30772747":"Your personal details have been saved successfully.","-2021135479":"This field is required.","-1002044401":"Select your document*","-1272489896":"Please complete this field.","-1107320163":"Automate your trading, no coding needed.","-829643221":"Multipliers trading platform.","-2115275974":"CFDs","-1585707873":"Financial Commission","-199154602":"Vanuatu Financial Services Commission","-191165775":"Malta Financial Services Authority","-194969520":"Counterparty company","-1089385344":"Deriv (SVG) LLC","-2019617323":"Deriv (BVI) Ltd","-112814932":"Deriv (FX) Ltd","-1131400885":"Deriv Investments (Europe) Limited","-1471207907":"All assets","-781132577":"Leverage","-1591882610":"Synthetics","-543177967":"Stock indices","-362324454":"Commodities","-1071336803":"Platform","-1879666853":"Deriv MT5","-820028470":"Options & Multipliers","-1186807402":"Transfer","-224804428":"Transactions","-470018967":"Reset balance","-693105141":"MT5 Financial","-145462920":"Deriv cTrader","-1210359945":"Transfer funds to your accounts","-81256466":"You need a Deriv account to create a CFD account.","-1926387364":"We’ve sent your e-book to your email. You can also download it here.","-1057002564":"<0>We’re unable to upgrade you to Wallets at this time and are working to get this fixed as soon as we can. Please <1>try again<0>.","-1424352390":"<0>Wallets<1> — A smarter way to manage your funds","-280236366":"Enable now","-699372497":"Trade with leverage and tight spreads for better returns on successful trades. <0>Learn more","-982095728":"Get","-1790089996":"NEW!","-2134770229":"Total assets in your Deriv Apps and Deriv MT5 CFDs demo account.","-1277942366":"Total assets","-1255879419":"Trader's Hub","-493788773":"Non-EU","-673837884":"EU","-230566990":"The following documents you submitted did not pass our checks:","-846812148":"Proof of address.","-1146027991":"If you’d like to get the {{from_account}} account, resubmit these documents.","-710685402":"No new positions","-1445744852":"You can no longer open new positions with your {{from_account}} account. Please use your {{to_account}} account to open new positions.","-1699909965":"or ","-2127865736":"Your {{from_account}} account will be archived after 30 days of inactivity. You can still access your trade history until the account is archived.","-417529381":"Your current trading account(s)","-1543281897":"Instant transfers between Wallets and trading accounts","-1415400918":"Multiple currency support","-1712363879":"Why Wallets","-348452343":"Your open trading positions will not be affected while we are setting up your wallets.","-2055865877":"Non-EU regulation","-643108528":"Non-EU and EU regulation","-1002556560":"We’re unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-2051096382":"Earn a range of payouts by correctly predicting market movements with <0>options, or get the\n upside of CFDs without risking more than your initial stake with <1>multipliers.","-1638358352":"Get the upside of CFDs without risking more than your initial stake with <0>Multipliers.","-744999940":"Deriv account","-749129977":"Get a real Deriv account, start trading and manage your funds.","-2146691203":"Choice of regulation","-249184528":"You can create real accounts under EU or non-EU regulation. Click the <0><0/> icon to learn more about these accounts.","-1505234170":"Trader's Hub tour","-1901718278":"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. 70.1% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how these products work and whether you can afford to take the high risk of losing your money.","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1975494965":"Cashier","-42592103":"Deposit cryptocurrencies","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-520142572":"Cashier is currently down for maintenance","-1552080215":"Please check back in a few minutes.<0>Thank you for your patience.","-215186732":"You’ve not set your country of residence. To access Cashier, please update your country of residence in the Personal details section in your account settings.","-1392897508":"The identification documents you submitted have expired. Please submit valid identity documents to unlock Cashier. ","-954082208":"Your cashier is currently locked. Please contact us via <0>live chat to find out how to unlock it.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-2027907316":"You can make a withdrawal once the verification of your account is complete.","-541392118":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and access your cashier.","-599998434":"You cannot make a fund transfer as your documents are still under review. We will notify you by email within 3 days once your verification is approved.","-247122507":"Your cashier is locked. Please complete the <0>financial assessment to unlock it.","-1443721737":"Your cashier is locked. See <0>how we protect your funds before you proceed.","-901712457":"Your access to Cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to <0>Self-exclusion and set your 30-day turnover limit.","-166472881":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.","-666905139":"Deposits are locked","-378858101":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits.","-1318742415":"Your account has not been authenticated. Please submit your <0>proof of identity and <1>proof of address to authenticate your account and request for withdrawals.","-1923809087":"Unfortunately, you can only make deposits. Please contact us via <0>live chat to enable withdrawals.","-172277021":"Cashier is locked for withdrawals","-1624999813":"It seems that you've no commissions to withdraw at the moment. You can make withdrawals once you receive your commissions.","-1077304626":"Amount ({{currency}})","-1559994981":"Approximate value","-1272778997":"We've sent you an email.","-89973258":"Resend email in {{seconds}}s","-1332236294":"Please verify your identity","-1675848843":"Error","-283017497":"Retry","-1294455996":"Deriv P2P unavailable","-1838982691":"UNKNOWN","-532693866":"Something went wrong. Please refresh the page and try again.","-1196049878":"First line of home address","-1326406485":"Postal Code/ZIP","-939625805":"Telephone","-442575534":"Email verification failed","-1459042184":"Update your personal details","-1603543465":"We can't validate your personal details because there is some information missing.","-614516651":"Need help? <0>Contact us.","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-379487596":"{{selected_percentage}}% of available balance ({{format_amount}} {{currency__display_code}})","-1957498244":"more","-1059419768":"Notes","-285921910":"Learn more about <0>payment methods.","-190084602":"Transaction","-1995606668":"Amount","-2024290965":"Confirmations","-811190405":"Time","-1984478597":"The details of this transaction is available on CoinsPaid.","-316545835":"Please ensure <0>all details are <0>correct before making your transfer.","-949073402":"I confirm that I have verified the client’s transfer information.","-1752211105":"Transfer now","-1787304306":"Deriv P2P","-174976899":"P2P verification","-1705887186":"Your deposit is successful.","-142361708":"In process","-1582681840":"We’ve received your request and are waiting for more blockchain confirmations.","-1626218538":"You’ve cancelled your withdrawal request.","-1062841150":"Your withdrawal is unsuccessful due to an error on the blockchain. Please <0>contact us via live chat for more info.","-630780094":"We’re awaiting confirmation from the blockchain.","-1525882769":"Your withdrawal is unsuccessful. We've sent you an email with more information.","-298601922":"Your withdrawal is successful.","-922143389":"Deriv P2P is currently unavailable in this currency.","-1310327711":"Deriv P2P is currently unavailable in your country.","-1463156905":"Learn more about payment methods","-972283623":"Deriv P2P-V2","-685073712":"This is your <0>{{currency}} account {{loginid}}.","-1547606079":"We accept the following cryptocurrencies:","-1517325716":"Deposit via the following payment methods:","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-515809216":"Send only {{currency_name}} ({{currency_code}}) to this address.","-748636591":"A minimum deposit value of <0>{{minimum_deposit}} {{currency}} is required. Otherwise, a fee is applied.","-1589407981":"To avoid loss of funds:","-1042704302":"Make sure to copy your Deriv account address correctly into your crypto wallet.","-2108344100":"Looking for a way to buy cryptocurrencies? <0>Try Fiat onramp.","-598073640":"About Tether (Ethereum)","-275902914":"Tether on Ethereum (eUSDT)","-1188009792":"Tether on Omni Layer (USDT)","-1239329687":"Tether was originally created to use the bitcoin network as its transport protocol ‒ specifically, the Omni Layer ‒ to allow transactions of tokenised traditional currency.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-91824739":"Deposit {{currency}}","-523804269":"{{amount}} {{currency}} on {{date}}","-494847428":"Address: <0>{{value}}","-1117977576":"Confirmations: <0>{{value}}","-1935946851":"View more","-1744490898":"Unfortunately, we cannot retrieve the information at this time. ","-338505133":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts, between your Deriv fiat and {{platform_name_ctrader}} accounts, and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-2056016338":"You’ll not be charged a transfer fee for transfers in the same currency between your Deriv fiat and {{platform_name_mt5}} accounts.","-599632330":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and {{platform_name_mt5}} accounts and between your Deriv fiat and {{platform_name_dxtrade}} accounts.","-1196994774":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency accounts.","-993556039":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts and between your Deriv cryptocurrency and {{platform_name_dxtrade}} accounts.","-1382702462":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and Deriv MT5 accounts.","-1339063554":"You may transfer between your Deriv fiat, cryptocurrency, {{platform_name_mt5}}, {{platform_name_ctrader}}, and {{platform_name_dxtrade}} accounts.","-1151983985":"Transfer limits may vary depending on the exchange rates.","-1747571263":"Please bear in mind that some transfers may not be possible.","-757062699":"Transfers may be unavailable due to high volatility or technical issues and when the exchange markets are closed.","-855721928":"Needs verification","-908402700":"Verification failed","-1866405488":"Deriv cTrader accounts","-1344870129":"Deriv accounts","-1109729546":"You will be able to transfer funds between MT5 accounts and other accounts once your address is verified.","-1593609508":"Transfer between your accounts in Deriv","-1155970854":"You have reached the maximum daily transfers. Please try again tomorrow.","-464965808":"Transfer limits: <0 /> - <1 />","-553249337":"Transfers are locked","-1638172550":"To enable this feature you must complete the following:","-1949883551":"You only have one account","-1149845849":"Back to Trader's Hub","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-1632668764":"I accept","-544232635":"Please go to the Deposit page to generate an address. Then come back here to continue with your transaction.","-1161069724":"Please copy the crypto address you see below. You'll need it to deposit your cryptocurrency.","-1388977563":"Copied!","-1962894999":"This address can only be used ONCE. Please copy a new one for your next transaction.","-451858550":"By clicking 'Continue' you will be redirected to {{ service }}, a third-party payment service provider. Please note that {{ website_name }} is not responsible for the content or services provided by {{ service }}. If you encounter any issues related to {{ service }} services, you must contact {{ service }} directly.","-2005265642":"Fiat onramp is a cashier service that allows you to convert fiat currencies to crypto to top up your Deriv crypto accounts. Listed here are third-party crypto exchanges. You’ll need to create an account with them to use their services.","-1593063457":"Select payment channel","-1309258714":"From account number","-1247676678":"To account number","-816476007":"Account holder name","-344403983":"Description","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-1254233806":"You've transferred","-953082600":"Some payment methods may not be listed here but payment agents may still offer them. If you can’t find your favourite method, contact the payment agents directly to check further.","-1491457729":"All payment methods","-142563298":"Contact your preferred payment agent for payment instructions and make your deposit.","-352134412":"Transfer limit","-1023961762":"Commission on deposits","-552873274":"Commission on withdrawal","-880645086":"Withdrawal amount","-118683067":"Withdrawal limits: <0 />-<1 />","-1125090734":"Important notice to receive your funds","-1924707324":"View transaction","-1474202916":"Make a new withdrawal","-511423158":"Enter the payment agent account number","-2059278156":"Note: {{website_name}} does not charge any transfer fees.","-1201279468":"To withdraw your funds, please choose the same payment method you used to make your deposits.","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-38063175":"{{account_text}} wallet","-705272444":"Upload a proof of identity to verify your identity","-130833284":"Please note that your maximum and minimum withdrawal limits aren’t fixed. They change due to the high volatility of cryptocurrency.","-1531269493":"We'll send you an email once your transaction has been processed.","-1572746946":"Asian Up","-686840306":"Asian Down","-2141198770":"Higher","-816098265":"Lower","-1646655742":"Spread Up","-668987427":"Spread Down","-912577498":"Matches","-1862940531":"Differs","-808904691":"Odd","-556230215":"Ends Outside","-1268220904":"Ends Between","-703542574":"Up","-1127399675":"Down","-768425113":"No Touch","-1163058241":"Stays Between","-1354485738":"Reset Call","-376148198":"Only Ups","-1337379177":"High Tick","-328036042":"Please enter a stop loss amount that's higher than the current potential loss.","-2127699317":"Invalid stop loss. Stop loss cannot be more than stake.","-1428017300":"THE","-1450728048":"OF","-255051108":"YOU","-1845434627":"IS","-931434605":"THIS","-740712821":"A","-187634388":"This block is mandatory. Here is where you can decide if your bot should continue trading. Only one copy of this block is allowed.","-2105473795":"The only input parameter determines how block output is going to be formatted. In case if the input parameter is \"string\" then the account currency will be added.","-1800436138":"2. for \"number\": 1325.68","-530632460":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of \"True\" or \"False\".","-1875717842":"Examples:","-890079872":"1. If the selected direction is \"Rise\", and the previous tick value is less than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-489739641":"2. If the selected direction is \"Fall\", and the previous tick value is more than the current tick value, the output will be \"True\". Otherwise, the output will be an empty string.","-2116076360":"There are 4 message types:","-1421941045":"2. 'Warn' displays a message in yellow to highlight something that needs attention.","-277850921":"If \"Win\" is selected, it will return \"True\" if your last trade was successful. Otherwise, it will return an empty string.","-1918487001":"Example:","-2139916657":"1. In the below example the loop is terminated in case \"x\" is \"False\" even though only one iteration is complete","-1238900333":"2. In the below example the loop jumps to the next iteration without executing below block in case if \"x\" is \"False\"","-1729479576":"You can use \"i\" inside the loop, for example to access list items","-1474636594":"In this example, the loop will repeat three times, as that is the number of items in the given list. During each iteration, the variable \"i\" will be assigned a value from the list. ","-908772734":"This block evaluates a statement and will perform an action only when the statement is true.","-334040831":"2. In this example, the instructions are repeated as long as the value of x is greater than or equal to 10. Once the value of x drops below 10, the loop is terminated.","-444267958":"\"Seconds Since Epoch\" block returns the number of seconds since January 1st, 1970.","-447522129":"You might need it when you want to repeat an actions after certain amount of time.","-1488259879":"The term \"candle\" refers to each bar on the candlestick chart. Each candle represents four market prices for the selected time interval:","-2020693608":"Each candlestick on the chart represents 4 market prices for the selected time interval:","-62728852":"- Open price: the opening price","-1247744334":"- Low price: the lowest price","-1386365697":"- Close price: the closing price","-1498732382":"A black (or red) candle indicates that the open price is higher than the close price. This represents a downward movement of the market price.","-1871864755":"This block gives you the last digit of the latest tick value of the selected market. If the latest tick value is 1410.90, this block will return 0. It’s useful for digit-based contracts such as Even/Odd, Matches/Differs, or Higher/Lower.","-1029671512":"In case if the \"OR\" operation is selected, the block returns \"True\" in case if one or both given values are \"True\"","-210295176":"Available operations:","-1385862125":"- Addition","-983721613":"- Subtraction","-854750243":"- Multiplication","-1394815185":"In case if the given number is less than the lower boundary of the range, the block returns the lower boundary value. Similarly, if the given number is greater than the higher boundary, the block will return the higher boundary value. In case if the given value is between boundaries, the block will return the given value unchanged.","-1034564248":"In the below example the block returns the value of 10 as the given value (5) is less than the lower boundary (10)","-2009817572":"This block performs the following operations to a given number","-671300479":"Available operations are:","-514610724":"- Absolute","-1923861818":"- Euler’s number (2.71) to the power of a given number","-1556344549":"Here’s how:","-1061127827":"- Visit the following URL, make sure to replace with the Telegram API token you created in Step 1: https://api.telegram.org/bot/getUpdates","-311389920":"In this example, the open prices from a list of candles are assigned to a variable called \"cl\".","-1460794449":"This block gives you a list of candles within a selected time interval.","-1634242212":"Used within a function block, this block returns a value when a specific condition is true.","-2012970860":"This block gives you information about your last contract.","-1504783522":"You can choose to see one of the following:","-10612039":"- Profit: the profit you’ve earned","-555996976":"- Entry time: the starting time of the contract","-1391071125":"- Exit time: the contract expiration time","-1961642424":"- Exit value: the value of the last tick of the contract","-111312913":"- Barrier: the barrier value of the contract (applicable to barrier-based trade types such as stays in/out, touch/no touch, etc.)","-674283099":"- Result: the result of the last contract: \"win\" or \"loss\"","-704543890":"This block gives you the selected candle value such as open price, close price, high price, low price, and open time. It requires a candle as an input parameter.","-482281200":"In the example below, the open price is assigned to the variable \"op\".","-364621012":"This block gives you the specified candle value for a selected time interval. You can choose which value you want:","-232477769":"- Open: the opening price","-610736310":"Use this block to sell your contract at the market price. Selling your contract is optional. You may choose to sell if the market trend is unfavourable.","-1307657508":"This block gives you the potential profit or loss if you decide to sell your contract. It can only be used within the \"Sell conditions\" root block.","-1921072225":"In the example below, the contract will only be sold if the potential profit or loss is more than the stake.","-955397705":"SMA adds the market price in a list of ticks or candles for a number of time periods, and divides the sum by that number of time periods.","-1424923010":"where n is the number of periods.","-1835384051":"What SMA tells you","-749487251":"SMA serves as an indicator of the trend. If the SMA points up then the market price is increasing and vice versa. The larger the period number, the smoother SMA line is.","-1996062088":"In this example, each point of the SMA line is an arithmetic average of close prices for the last 10 days.","-1866751721":"Input list accepts a list of ticks or candles, while period is the specified time period.","-1097076512":"You may compare SMA values calculated on every bot run to identify the market trend direction. Alternatively, you may also use a variation of the SMA block, the Simple Moving Average Array block. ","-1254849504":"If a period of 10 is entered, the Simple Moving Average Array block will return a list of SMA values calculated based on period of 10.","-1190046167":"This block displays a dialog box with a customised message. When the dialog box is displayed, your strategy is paused and will only resume after you click \"OK\".","-859028989":"In this example, the date and time will be displayed in a green notification box.","-1452086215":"In this example, a Rise contract will be purchased at midnight on 1 August 2019.","-1765276625":"Click the multiplier drop-down menu and choose the multiplier value you want to trade with.","-1872233077":"Your potential profit will be multiplied by the multiplier value you’ve chosen.","-614454953":"To learn more about multipliers, please go to the <0>Multipliers page.","-2078588404":"Select your desired market and asset type. For example, Forex > Major pairs > AUD/JPY","-2037446013":"2. Trade Type","-533927844":"Select your desired trade type. For example, Up/Down > Rise/Fall","-1192411640":"4. Default Candle Interval","-485434772":"8. Trade Options","-1827646586":"This block assigns a given value to a variable, creating the variable if it doesn't already exist.","-254421190":"List: ({{message_length}})","-1616649196":"results","-90107030":"No results found","-1373954791":"Should be a valid number","-1278608332":"Please enter a number between 0 and {{api_max_losses}}.","-287597204":"Enter limits to stop your bot from trading when any of these conditions are met.","-1445989611":"Limits your potential losses for the day across all Deriv platforms.","-152878438":"Maximum number of trades your bot will execute for this run.","-1490942825":"Apply and run","-2067572496":"You’ve just stopped the bot. Any open contracts can be viewed on the Reports page.","-992003496":"Changes you make will not affect your running bot.","-1778025545":"You’ve successfully imported a bot.","-179005984":"Save","-610059687":"Exploring the D’Alembert strategy in Deriv Bot","-1226666341":"The D'Alembert strategy involves increasing your stake after a losing trade and reducing it after a successful trade by a predetermined number of units.","-312844882":"Initial stake: The amount that you are willing to place as a stake to enter a trade. This is the starting point for any changes in stake depending on the dynamic of the strategy being used.","-1173302981":"1. Start with the initial stake. In this example, we’ll use 1 USD.","-1540106116":"Profit and loss thresholds","-894905768":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss thresholds are reached. It's a form of risk management that can potentially enhance returns. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1946134465":"Where:","-248283982":"B is the loss threshold.","-1148521416":"f is the unit increment.","-211800490":"D’Alembert formula 2","-1772692202":"This formula helps you plan your trades by considering the amount of money you have and your comfort level with risk. It involves determining your loss threshold and the initial stake you want to trade with. Then, you use this formula to calculate the number of rounds you can trade. This process provides insight into stake sizing and expectations.","-2107238266":"The D'Alembert system offers more balanced trading through controlled stake progression. With prudent risk management like stake limits, it can be effectively automated in Deriv Bot. However, traders should thoroughly assess their risk appetite, test strategies on a demo account to align with their trading style before trading with real money. This allows optimising the approach and striking a balance between potential gains and losses whilst managing risk.","-500873566":"Disclaimer:","-344769349":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-818800551":"Exploring the Martingale strategy in Deriv Bot","-533490374":"These are the trade parameters used in Deriv Bot with Martingale strategy.","-1507161059":"Multiplier: The multiplier used to increase your stake if you're losing a trade. The value must be greater than 1.","-1333404686":"An example of Martingale strategy","-1755877136":"3. If the first trade ends in a loss, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every losing trade.","-1297651002":"If you're about to start trading and haven't established a Maximum Stake as part of your risk management strategy, you can determine how long your funds will last by employing the Martingale strategy. Simply use this formula.","-46865201":"Martingale formula 1","-116397598":"m is the Martingale multiplier.","-658161609":"Number of rounds, R ≈ 9.965","-288082521":"This means that after 10 rounds of consecutive losses, this trader will lose 1023 USD which exceeds the loss threshold of 1000 USD, stopping the bot.","-770387160":"The Martingale strategy in trading may offer substantial gains but also comes with significant risks. With your selected strategy, Deriv Bot provides automated trading with risk management measures like setting initial stake, stake size, maximum stake, profit threshold and loss threshold. It's crucial for traders to assess their risk tolerance, practice in a demo account, and understand the strategy before trading with real money.","-1901073152":"These are the trade parameters used for Oscar’s Grind strategy in Deriv Bot.","-1575153036":"An example of Oscar’s Grind strategy","-732418614":"The table above demonstrates this principle by showing that when a successful trade occurs and meets the target of one unit of potential profit which is 1 USD in this example, the session ends. If trading continues, a new session will begin.","-106266344":"Principle 3: The stake adjusts to the gap size between current loss and the target profit for the session","-492908094":"In round 7, the stake is adjusted downwards from 2 USD to 1 USD, to meet the target profit of 1 USD.","-90079299":"With Deriv Bot, traders can set the profit and loss thresholds to secure potential profits and limit potential losses. This means that the trading bot will automatically stop when either the profit or loss threshold is reached. This is a form of risk management that can potentially boost successful trades whilst limiting the impact of loss. For example, if a trader sets the profit threshold at 100 USD and the strategy exceeds 100 USD of profit from all trades, then the bot will stop running.","-1549673884":"The Oscar's Grind strategy provides a disciplined approach for incremental gains through systematic stake progression. When integrated into Deriv Bot with proper risk management like profit or loss thresholds, it offers traders a potentially powerful automated trading technique. However, traders should first thoroughly assess their risk tolerance and first try trading on a demo account in order to familiarise with the strategy before trading with real funds.","-655650222":"Exploring the Reverse D’Alembert strategy in Deriv Bot","-1864807973":"The Reverse D'Alembert strategy involves increasing your stake after a successful trade and reducing it after a losing trade by a predetermined number of units.","-809681645":"These are the trade parameters used in Deriv Bot with Reverse D’Alembert strategy.","-1239374257":"An example of Reverse D’Alembert strategy","-309821442":"Please be aware that while we may use rounded figures for illustration, a stake of a specific amount does not guarantee an exact amount in successful trades. For example, a 1 USD stake does not necessarily equate to a 1 USD profit in successful trades.","-1576691912":"This article explores the Reverse Martingale strategy integrated into Deriv Bot, a versatile trading bot designed to trade assets such as forex, commodities, and derived indices. We will delve into the strategy's core parameters, its application, and provide essential takeaways for traders looking to use the bot effectively.","-1934849823":"These are the trade parameters used in Deriv Bot with Reverse Martingale strategy.","-1021919630":"Multiplier: The multiplier used to increase your stake if your trade is successful. The value must be greater than 1.","-760516362":"3. If the first trade is a successful trade, Deriv Bot will automatically double your stake for the next trade to 2 USD. Deriv Bot will continue to double the stake after every successful trade.","-1410950365":"Exploring the 1-3-2-6 strategy in Deriv Bot","-1175255072":"These are the trade parameters used in Deriv Bot with 1-3-2-6 strategy.","-183884527":"An example of 1-3-2-6 strategy","-275617819":"4. However, if any trade results in a loss, your stake will reset back to the initial stake of 1 USD for the next trade. The third trade results in a loss hence the stake resets to the initial stake of 1 USD for the next trade.","-719846465":"5. Upon reaching the initial stake, if the next trade still results in a loss, your stake will remain at the initial stake of 1 USD. This strategy will minimally trade at the initial stake. Refer to the fourth and fifth trade.","-1452746011":"The 1-3-2-6 strategy in trading may offer substantial gains but also comes with significant risks. Each stake is independent, and the strategy does not increase your chances of successful trades in the long run. If you encounter a series of losses, the strategy can lead to significant losses. Therefore, it is crucial for traders to assess their risk tolerance, practice in a demo account, utilise profit and loss thresholds, and fully comprehend the strategy before engaging in real-money trading.","-1016171176":"Asset","-138833194":"The underlying market your bot will trade with this strategy.","-621128676":"Trade type","-399349239":"Your bot will use this trade type for every run","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-447853970":"Loss threshold","-33106112":"The size used to multiply the stake after a successful trade for the next trade.","-1503301801":"The value must be equal or greater than {{ min }}","-1596504046":"Number of unit(s) to be added to the next trade after a successful trade. One unit is equivalent to the amount of initial stake.","-1521098535":"Max stake","-1448426542":"The stake for your next trade will reset to the initial stake if it exceeds this value.","-993953307":"Your prediction of the last digit of the asset price.","-1305281529":"D’Alembert","-1842451303":"Welcome to Deriv Bot!","-1391310674":"Check out these guides and FAQs to learn more about building your bot:","-2066779239":"FAQs","-280324365":"What is Deriv Bot?","-155173714":"Let’s build a bot!","-1919212468":"3. You can also search for the blocks you want using the search bar above the categories.","-1520558271":"For more info, check out this blog post on the basics of building a trading bot.","-980360663":"3. Choose the block you want and drag it to the workspace.","-1493168314":"What is a quick strategy?","-1680391945":"Using a quick strategy","-1177914473":"How do I save my strategy?","-271986909":"In Bot Builder, hit Save on the toolbar at the top to download your bot. Give your bot a name, and choose to download your bot to your device or Google Drive. Your bot will be downloaded as an XML file.","-1149045595":"1. After hitting Import, select Local and click Continue.","-288041546":"2. Select your XML file and hit Open.","-2127548288":"3. Your bot will be loaded accordingly.","-1311297611":"1. After hitting Import, select Google Drive and click Continue.","-1549564044":"How do I reset the workspace?","-1127331928":"In Bot Builder, hit Reset on the toolbar at the top. This will clear the workspace. Please note that any unsaved changes will be lost.","-1720444288":"How do I control my losses with Deriv Bot?","-1142295124":"There are several ways to control your losses with Deriv Bot. Here’s a simple example of how you can implement loss control in your strategy:","-2129119462":"1. Create the following variables and place them under Run once at start:","-468926787":"This is how your trade parameters, variables, and trade options should look like:","-1565344891":"Can I run Deriv Bot on multiple tabs in my web browser?","-90192474":"Yes, you can. However, there are limits on your account, such as maximum number of open positions and maximum aggregate payouts on open positions. So, just keep these limits in mind when opening multiple positions. You can find more info about these limits at Settings > Account limits.","-213872712":"No, we don't offer cryptocurrencies on Deriv Bot.","-2147346223":"In which countries is Deriv Bot available?","-352345777":"What are the most popular strategies for automated trading?","-552392096":"Three of the most commonly used strategies in automated trading are Martingale, D'Alembert, and Oscar's Grind — you can find them all ready-made and waiting for you in Deriv Bot.","-1630262763":"About Martingale","-413928457":"About Oscar's Grind","-1497015866":"About Reverse D’Alembert","-437005403":"About 1-3-2-6","-590765322":"Unfortunately, this trading platform is not available for EU Deriv account. Please switch to a non-EU account to continue trading.","-2110207996":"Deriv Bot is unavailable for this account","-971295844":"Switch to another account","-1194079833":"Deriv Bot is not available for EU clients","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-597939268":"Keep my contract","-1322453991":"You need to log in to run the bot.","-236548954":"Contract Update Error","-1223145005":"Loss amount: {{profit}}","-1206212388":"Welcome back! Your messages have been restored. You are using your {{current_currency}} account.","-1724342053":"You are using your {{current_currency}} account.","-555886064":"Won","-529060972":"Lost","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-287223248":"No transaction or activity yet.","-418247251":"Download your journal.","-2123571162":"Download","-984140537":"Add","-870004399":"<0>Bought: {{longcode}} (ID: {{transaction_id}})","-1211474415":"Filters","-186972150":"There are no messages to display","-558594655":"The bot is not running","-478946875":"The stats are cleared","-999254545":"All messages are filtered out","-934909826":"Load strategy","-1121028020":"or, if you prefer...","-254025477":"Select an XML file from your device","-1131095838":"Please upload an XML file","-523928088":"Create one or upload one from your local drive or Google Drive.","-1684205190":"Why can't I see my recent bots?","-2050879370":"1. Logged in from a different device","-811857220":"3. Cleared your browser cache","-625024929":"Leaving already?","-584289785":"No, I'll stay","-1435060006":"If you leave, your current contract will be completed, but your bot will stop running immediately.","-783058284":"Total stake","-2077494994":"Total payout","-1073955629":"No. of runs","-1729519074":"Contracts lost","-42436171":"Total profit/loss","-1856204727":"Reset","-1137823888":"Total payout since you last cleared your stats.","-992662695":"The number of times your bot has run since you last cleared your stats. Each run includes the execution of all the root blocks.","-1382491190":"Your total profit/loss since you last cleared your stats. It is the difference between your total payout and your total stake.","-24780060":"When you’re ready to trade, hit ","-2147110353":". You’ll be able to track your bot’s performance here.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-411060180":"TradingView Chart","-627895223":"Exit spot","-2140412463":"Buy price","-1299484872":"Account","-2004386410":"Win","-266502731":"Transactions detailed summary","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-596238067":"Entry/Exit spot","-1823621139":"Quick Strategy","-1782602933":"Choose a template below and set your trade parameters.","-315611205":"Strategy","-1524489375":"(optional)","-150224710":"Yes, continue","-475765963":"Edit the amount","-1349897832":"Do not show this message again.","-984512425":"Minimum duration: {{ value }}","-2084091453":"The value must be equal or greater than {{ value }}","-657364297":"The value must be equal or less than {{ value }}","-1696412885":"Import","-320197558":"Sort blocks","-939764287":"Charts","-1566369363":"Zoom out","-1285759343":"Search","-1291088318":"Purchase conditions","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1692205739":"Import a bot from your computer or Google Drive, build it from scratch, or start with a quick strategy.","-1545070554":"Delete bot","-1972599670":"Your bot will be permanently deleted when you hit ","-1692956623":"Yes, delete.","-573479616":"Are you sure you want to delete it?","-786915692":"You are connected to Google Drive","-1256971627":"To import your bot from your Google Drive, you'll need to sign in to your Google account.","-1233084347":"To know how Google Drive handles your data, please review Deriv’s <0>Privacy policy.","-1150107517":"Connect","-1150390589":"Last modified","-1393876942":"Your bots:","-767342552":"Enter your bot name, choose to save on your computer or Google Drive, and hit ","-1372891985":"Save.","-1003476709":"Save as collection","-636521735":"Save strategy","-1953880747":"Stop my bot","-1899230001":"Stopping the current bot will load the Quick Strategy you just created to the workspace.","-2131847097":"Any open contracts can be viewed on the ","-563774117":"Dashboard","-683790172":"Now, <0>run the bot to test out the strategy.","-1127164953":"Hi! Hit <0>Start for a quick tour.","-358288026":"Note: You can also find this tutorial in the <0>Tutorials tab.","-129587613":"Got it, thanks!","-1793577405":"Build from scratch","-358753028":"Create your bot using our drag-and-drop blocks or click Quick Strategy to choose from the ready-to-use bot templates.","-1212601535":"Monitor the market","-21136101":"See how your bot is doing in real-time.","-631097919":"Click <0>Run when you want to start trading, and click <0>Stop when you want to stop.","-1999747212":"Want to retake the tour?","-782992165":"Step 1 :","-1207872534":"First, set the <0>Trade parameters block.","-1656388044":"First, set <0>Market to Derived > Continuous Indices > Volatility 100 (1s) Index.","-1706298865":"Then, set <0>Trade type to Up/Down > Rise/Fall.","-1834358537":"For <0>Default candle interval, set it to 1 minute","-1940971254":"For <0>Trade options, set it as below:","-512839354":"<0>Stake: USD 10 (min: 0.35 - max: 50000)","-753745278":"Step 2 :","-1056713679":"Then, set the <0>Purchase conditions block.","-245497823":"<0>2. Purchase conditions:","-916770284":"<0>Purchase: Rise","-758077259":"Step 3 :","-677396944":"Step 4 :","-295975118":"Next, go to <0>Utility tab under the Blocks menu. Tap the drop-down arrow and hit <0>Loops.","-698493945":"Step 5 :","-1992994687":"Now, tap the <0>Analysis drop-down arrow and hit <0>Contract.","-1844492873":"Go to the <0>Last trade result block and click + icon to add the <0>Result is Win block to the workspace.","-1547091772":"Then, drag the <0>Result is win into the empty slot next to <0>repeat until block.","-736400802":"Step 6 :","-732067680":"Finally, drag and add the whole <0>Repeat block to the <0>Restart trading conditions block.","-1411787252":"Step 1","-1109392787":"Learn how to build your bot from scratch using a simple strategy.","-1263822623":"You can import a bot from your mobile device or from Google drive, see a preview in the bot builder, and start trading by running the bot.","-563921656":"Bot Builder guide","-1596172043":"Quick strategy guides","-662836330":"Would you like to keep your current contract or close it? If you decide to keep it running, you can check and close it later on the <0>Reports page.","-1717650468":"Online","-1309011360":"Open positions","-1597214874":"Trade table","-1929724703":"Compare CFD accounts","-883103549":"Account deactivated","-45873457":"NEW","-1190972431":"P2P-V2","-1837059346":"Buy / Sell","-1845037007":"Advertiser's page","-494667560":"Orders","-679691613":"My ads","-821418875":"Trader","-679102561":"Contract Details","-430118939":"Complaints policy","-1308346982":"Derived","-579984289":"Derived Demo","-1596515467":"Derived BVI","-222394569":"Derived Vanuatu","-328128497":"Financial","-533935232":"Financial BVI","-565431857":"Financial Labuan","-659955365":"Swap-Free","-291535132":"Swap-Free Demo","-1472945832":"Swap-Free SVG","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1966032552":"The length of token should be 8.","-2128137611":"Should start with letter or number, and may contain hyphen and underscore.","-1590869353":"Up to {{decimal_count}} decimal places are allowed.","-2061307421":"Should be more than {{min_value}}","-1099941162":"Should be less than {{max_value}}","-1528188268":"Straight rows of keys are easy to guess","-1339903234":"Short keyboard patterns are easy to guess","-23980798":"Repeats like \"aaa\" are easy to guess","-235760680":"Avoid repeated words and characters","-1568933154":"Sequences like abc or 6543 are easy to guess","-725663701":"Avoid sequences","-1450768475":"Recent years are easy to guess","-1804838610":"Avoid years that are associated with you","-64849469":"Dates are often easy to guess","-2006915194":"Avoid dates and years that are associated with you","-2124205211":"A word by itself is easy to guess","-1095202689":"All-uppercase is almost as easy to guess as all-lowercase","-2137856661":"Reversed words aren't much harder to guess","-1885413063":"Predictable substitutions like '@' instead of 'a' don't help very much","-369258265":"This password is on the blacklist","-577777971":"You have reached the rate limit of requests per second. Please try later.","-206321775":"Fiat","-522767852":"DEMO","-433761292":"Switching to default account.","-405439829":"Sorry, you can't view this contract because it doesn't belong to this account.","-1590712279":"Gaming","-16448469":"Virtual","-2093768906":"{{name}} has released your funds.
Would you like to give your feedback?","-705744796":"Your demo account balance has reached the maximum limit, and you will not be able to place new trades. Reset your balance to continue trading from your demo account.","-2063700253":"disabled","-1585069798":"Please click the following link to complete your Appropriateness Test.","-1287141934":"Find out more","-367759751":"Your account has not been verified","-596690079":"Enjoy using Deriv?","-265932467":"We’d love to hear your thoughts","-1815573792":"Drop your review on Trustpilot.","-823349637":"Go to Trustpilot","-1204063440":"Set my account currency","-1601813176":"Would you like to increase your daily limits to {{max_daily_buy}} {{currency}} (buy) and {{max_daily_sell}} {{currency}} (sell)?","-1751632759":"Get a faster mobile trading experience with the <0>{{platform_name_go}} app!","-1164554246":"You submitted expired identification documents","-219846634":"Let’s verify your ID","-529038107":"Install","-1738575826":"Please switch to your real account or create one to access the cashier.","-1329329028":"You’ve not set your 30-day turnover limit","-132893998":"Your access to the cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to Self-exclusion and set the limit.","-1852207910":"MT5 withdrawal disabled","-764323310":"MT5 withdrawals have been disabled on your account. Please check your email for more details.","-1744163489":"Please verify your proof of income","-382676325":"To continue trading with us, please submit your proof of income.","-1902997828":"Refresh now","-753791937":"A new version of Deriv is available","-1775108444":"This page will automatically refresh in 5 minutes to load the latest version.","-1175685940":"Please contact us via live chat to enable withdrawals.","-493564794":"Please complete your financial assessment.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-1728185398":"Resubmit proof of address","-612396514":"Please resubmit your proof of address.","-1519764694":"Your proof of address is verified.","-1629185222":"Submit now","-1961967032":"Resubmit proof of identity","-117048458":"Please submit your proof of identity.","-1196422502":"Your proof of identity is verified.","-1392958585":"Please check your email.","-136292383":"Your proof of address verification is pending","-386909054":"Your proof of address verification has failed","-430041639":"Your proof of address did not pass our verification checks, and we’ve placed some restrictions on your account. Please resubmit your proof of address.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-904632610":"Reset your balance","-156611181":"Please complete the financial assessment in your account settings to unlock it.","-1925176811":"Unable to process withdrawals in the moment","-980696193":"Withdrawals are temporarily unavailable due to system maintenance. You can make withdrawals when the maintenance is complete.","-1647226944":"Unable to process deposit in the moment","-488032975":"Deposits are temporarily unavailable due to system maintenance. You can make deposits when the maintenance is complete.","-2136953532":"Scheduled cashier maintenance","-849587074":"You have not provided your tax identification number","-47462430":"This information is necessary for legal and regulatory requirements. Please go to your account settings, and fill in your latest tax identification number.","-2067423661":"Stronger security for your Deriv account","-1719731099":"With two-factor authentication, you’ll protect your account with both your password and your phone - so only you can access your account, even if someone knows your password.","-949074612":"Please contact us via live chat.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1706642239":"<0>Proof of ownership <1>required","-553262593":"<0><1>Your account is currently locked <2><3>Please upload your proof of <4>ownership to unlock your account. <5>","-1834929362":"Upload my document","-1043638404":"<0>Proof of ownership <1>verification failed","-1766760306":"<0><1>Please upload your document <2>with the correct details. <3>","-8892474":"Start assessment","-1330929685":"Please submit your proof of identity and proof of address to verify your account and continue trading.","-99461057":"Please submit your proof of address to verify your account and continue trading.","-577279362":"Please submit your proof of identity to verify your account and continue trading.","-197134911":"Your proof of identity is expired","-152823394":"Your proof of identity has expired. Please submit a new proof of identity to verify your account and continue trading.","-822813736":"We're unable to complete with the Wallet upgrade. Please try again later or contact us via live chat.","-285366843":"We are going to update the login process for your Deriv MT5 account.","-978414767":"We require additional information for your Deriv MT5 account(s). Please take a moment to update your information now.","-2142540205":"It appears that the address in your document doesn’t match the address in your Deriv profile. Please update your personal details now with the correct address.","-482715448":"Go to Personal details","-2072411961":"Your proof of address has been verified","-384887227":"Update the address in your profile.","-1779268418":"Trade swap-free CFDs on MT5 with forex, stocks, stock indices, commodities cryptocurrencies, ETFs and synthetic indices.","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-402093392":"Add Deriv Account","-1721181859":"You’ll need a {{deriv_account}} account","-1989074395":"Please add a {{deriv_account}} account first before adding a {{dmt5_account}} account. Deposits and withdrawals for your {{dmt5_label}} account are done by transferring funds to and from your {{deriv_label}} account.","-689237734":"Proceed","-1642457320":"Help centre","-1966944392":"Network status: {{status}}","-181484419":"Responsible trading","-650505513":"Full screen","-1823504435":"View notifications","-1954045170":"No currency assigned","-1591792668":"Account Limits","-34495732":"Regulatory information","-1496158755":"Go to Deriv.com","-1323441180":"I hereby confirm that my request for opening an account with Deriv to trade OTC products issued and offered exclusively outside Brazil was initiated by me. I fully understand that Deriv is not regulated by CVM and by approaching Deriv I intend to set up a relation with a foreign company.","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-288996254":"Unavailable","-1019903756":"Synthetic","-735306327":"Manage accounts","-1813972756":"Account creation paused for 24 hours","-366030582":"Sorry, you're unable to create an account at this time. As you declined our previous risk warnings, we need you to wait for 24 hours after your first account creation attempt before you can proceed.<0/><0/>","-534047566":"Thank you for your understanding. You can create your account on {{real_account_unblock_date}} or later.","-399816343":"Trading Experience Assessment<0/>","-1822498621":"As per our regulatory obligations, we are required to assess your trading knowledge and experience.<0/><0/>Please click ‘OK’ to continue","-71049153":"Keep your account secure with a password","-1861974537":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters, numbers, and symbols.","-1965920446":"Start trading","-1485242688":"Step {{step}}: {{step_title}} ({{step}} of {{steps}})","-1829842622":"You can open an account for each cryptocurrency.","-987221110":"Choose a currency you would like to trade with.","-1066574182":"Choose a currency","-1914534236":"Choose your currency","-200560194":"Please switch to your {{fiat_currency}} account to change currencies.","-1829493739":"Choose the currency you would like to trade with.","-1814647553":"Add a new","-1269362917":"Add new","-650480777":"crypto account","-175638343":"Choose an account or add a new one","-1768223277":"Your account is ready","-1215717784":"<0>You have successfully changed your currency to {{currency}}.<0>Make a deposit now to start trading.","-1775006840":"Make a deposit now to start trading.","-983734304":"We need proof of your identity and address before you can start trading.","-917733293":"To get trading, please confirm where you live.","-1282628163":"You'll be able to get trading as soon as verification is complete.","-952649119":"Log In","-3815578":"Sign Up","-1456176427":"Set a currency for your real account","-241733171":"Add a Deriv Financial account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1740162250":"Manage account","-1016775979":"Choose an account","-1362081438":"Adding more real accounts has been restricted for your country.","-1602122812":"24-hour Cool Down Warning","-1519791480":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the risk of losing your money. <0/><0/>\n As you have declined our previous warning, you would need to wait 24 hours before you can proceed further.","-1010875436":"CFDs and other financial instruments come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs and other financial instruments work and whether you can afford to take the high risk of losing your money. <0/><0/> To continue, kindly note that you would need to wait 24 hours before you can proceed further.","-1725418054":"By clicking ‘Accept’ and proceeding with the account opening, you should note that you may be exposing yourself to risks. These risks, which may be significant, include the risk of losing the entire sum invested, and you may not have the knowledge and experience to properly assess or mitigate them.","-1369294608":"Already signed up?","-730377053":"You can’t add another real account","-2100785339":"Invalid inputs","-2061807537":"Something’s not right","-617844567":"An account with your details already exists.","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-310434518":"The email input should not be empty.","-437918412":"No currency assigned to your account","-1193651304":"Country of residence","-707550055":"We need this to make sure our service complies with laws and regulations in your country.","-280139767":"Set residence","-601615681":"Select theme","-1152511291":"Dark","-1428458509":"Light","-1976089791":"Your Deriv account has been unlinked from your {{social_identity_provider}} account. You can now log in to Deriv using your new email address and password.","-505449293":"Enter a new password for your Deriv account.","-1728963310":"Stop creating an account?","-703818088":"Only log in to your account at this secure link, never elsewhere.","-1235799308":"Fake links often contain the word that looks like \"Deriv\" but look out for these differences.","-2102997229":"Examples","-82488190":"I've read the above carefully.","-97775019":"Do not trust and give away your credentials on fake websites, ads or emails.","-2142491494":"OK, got it","-611136817":"Beware of fake links.","-1342699195":"Total profit/loss:","-1941013000":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}, {{legal_entity_name_fx}}, and {{legal_entity_name_v}}.","-594812204":"This complaints policy, which may change from time to time, applies to your account(s) registered with {{legal_entity_name_svg}}.","-813256361":"We are committed to treating our clients fairly and providing them with excellent service.<0/><1/>We would love to hear from you on how we can improve our services to you. Any information you provide will be treated in the strictest confidence. Rest assured that you will be heard, valued, and always treated fairly.","-1622847732":"If you have an inquiry regarding your trading account with {{legal_entity_name}}, you can contact us through our <0>Help centre or by chatting with a representative via <1>Live Chat.<2/><3/>We are committed to resolving your query in the quickest time possible and appreciate your patience in allowing us time to resolve the matter.<4/><5/>We strive to provide the best possible service and support to our customers. However, in the event that we are unable to resolve your query or if you feel that our response is unsatisfactory, we want to hear from you. We welcome and encourage you to submit an official complaint to us so that we can review your concerns and work towards a resolution.","-1406192787":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Financial Commission.","-1776547326":"<0/><1/>If you reside in the UK and you are unhappy with our response you may escalate your complaint to the <2>Financial Ombudsman Service.","-2115348800":"1. Introduction","-744009523":"2. Fair treatment","-866831420":"3.1. Submission of a complaint","-1102904026":"3.2. Handling your complaint","-603378979":"3.3. Resolving your complaint","-697569974":"3.4. Your decision","-1280998762":"4. Complaints","-1886635232":"A complaint is any expression of dissatisfaction by a client regarding our products or services that requires a formal response.<0/><1/>If what you submit does not fall within the scope of a complaint, we may reclassify it as a query and forward it to the relevant department for handling. However, if you believe that your query should be classified as a complaint due to its relevance to the investment services provided by {{legal_entity_name}}, you may request that we reclassify it accordingly.","-1771496016":"To submit a complaint, please send an email to <0>complaints@deriv.com, providing as much detail as possible. To help us investigate and resolve your complaint more efficiently, please include the following information:","-1197243525":"<0>•A clear and detailed description of your complaint, including any relevant dates, times, and transactions","-1795134892":"<0>•Any relevant screenshots or supporting documentation that will assist us in understanding the issue","-2053887036":"4.4. Handling your complaint","-717170429":"Once we have received the details of your complaint, we shall review it carefully and keep you updated on the handling process. We might request further information or clarifications to facilitate the resolution of the complaint.","-1841922393":"4.5. Resolving your complaint","-1327119795":"4.6. Your decision","-2019654103":"If we are unable to resolve your complaint or you are not satisfied with the outcome, you can escalate your complaint to the Office of the Arbiter for Financial Services.<0/><1/><2>Filing complaints with the Office of the Arbiter for Financial Services","-687172857":"<0>•You may file a complaint with the Arbiter for Financial Services only if you are not satisfied with our decision or the decision wasn’t made within 15 business days.","-262934706":"<0>•If the complaint is accepted by the Arbiter, you will receive another email with further details relating to the payment of the €25 complaint fee and the processes that follow.","-993572476":"<0>b.The Financial Commission has 5 days to acknowledge that your complaint was received and 14 days to answer the complaint through our Internal Dispute Resolution (IDR) procedure.","-1769159081":"<0>c.You will be able to file a complaint with the Financial Commission only if you are not satisfied with our decision or the decision wasn’t made within 14 days.","-58307244":"3. Determination phase","-356618087":"<0>b.The DRC may request additional information from you or us, who must then provide the requested information within 7 days.","-945718602":"<0>b.If you agree with a DRC decision, you will need to accept it within 14 days. If you do not respond to the DRC decision within 14 days, the complaint is considered closed.","-1500907666":"<0>d.If the decision is made in our favour, you must provide a release for us within 7 days of when the decision is made, and the complaint will be considered closed.","-429248139":"5. Disclaimer","-818926350":"The Financial Commission accepts appeals for 45 days following the date of the incident and only after the trader has tried to resolve the issue with the company directly.","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-981017278":"Automated trading at your fingertips. No coding needed.","-583559763":"Menu","-1685795001":"Demo Wallet","-319395348":"Looking for CFDs? Go to Trader’s Hub","-554054753":"Get started","-1364763296":"No need to remember a password","-1274467503":"Sync across devices","-2036288743":"Enhanced security with biometrics or screen lock ","-143216768":"Learn more about passkeys <0> here.","-778309978":"The link you clicked has expired. Ensure to click the link in the latest email in your inbox. Alternatively, enter your email below and click <0>Resend email for a new link.","-2007055538":"Information updated","-521477049":"We are going to update the login process for your Deriv MT5 account. Here is what you need to do when you want to log in via your MT5 mobile app starting from 7 February:","-749864644":"If you have trouble logging into your Deriv MT5 account, please follow this <0>guide.","-238296389":"Need help? Contact us via <0>live chat to assist you with any login questions.","-941870889":"The cashier is for real accounts only","-352838513":"It looks like you don’t have a real {{regulation}} account. To use the cashier, switch to your {{active_real_regulation}} real account, or get an {{regulation}} real account.","-1858915164":"Ready to deposit and trade for real?","-162753510":"Add real account","-1208519001":"You need a real Deriv account to access the cashier.","-715867914":"Successfully deposited","-1271218821":"Account added","-197631101":"Your funds will be available for trading once the verification of your account is complete.","-835056719":"We’ve received your documents","-55435892":"We’ll need 1 - 3 days to review your documents and notify you by email. You can practice with demo accounts in the meantime.","-1916578937":"<0>Explore the exciting new features that your Wallet offers.","-1724438599":"<0>You're almost there!","-1089300025":"We don’t charge deposit fees! Once your account is verified, you will be able to trade, make additional deposits, or withdraw funds.","-476018343":"Live Chat","-1471705969":"<0>{{title}}: {{trade_type_name}} on {{symbol}}","-1771117965":"Trade opened","-1856112961":"The URL you requested isn’t available","-304807228":"<0>You’re not logged in, or<0>Our services are unavailable in your country.","-1567989247":"Submit your proof of identity and address","-523602297":"Forex majors","-1303090739":"Up to 1:1500","-19213603":"Metals","-1264604378":"Up to 1:1000","-1728334460":"Up to 1:300","-646902589":"(US_30, US_100, US_500)","-705682181":"Malta","-1835174654":"1:30","-1647612934":"Spreads from","-1587894214":"about verifications needed.","-466784048":"Regulator/EDR","-2098459063":"British Virgin Islands","-1005069157":"Synthetic indices, basket indices, and derived FX","-1344709651":"40+","-1326848138":"British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114)","-1711743223":"Forex (standard/micro), stocks, stock indices, commodities, cryptocurrencies and ETFs","-1372141447":"Straight-through processing","-1969608084":"Forex and Cryptocurrencies","-800771713":"Labuan Financial Services Authority (licence no. MB/18/0024)","-1497128311":"80+","-1689815930":"You will need to submit proof of identity and address once you reach certain thresholds.","-1175785439":"Deriv (SVG) LLC (company no. 273 LLC 2020)","-139026353":"A selfie of yourself.","-1228847561":"Verification in review.","-618322245":"Verification successful.","-149461870":"Forex: standard/exotic","-1995163270":"ETFs","-651501076":"Derived - SVG","-865172869":"Financial - BVI","-1851765767":"Financial - Vanuatu","-558597854":"Financial - Labuan","-2052425142":"Swap-Free - SVG","-1192904361":"Deriv X Demo","-283929334":"Deriv cTrader Demo","-1269597956":"MT5 Platform","-1302404116":"Maximum leverage","-239789243":"(License no. SIBA/L/18/1114)","-941636117":"MetaTrader 5 Linux app","-1434036215":"Demo Financial","-1416247163":"Financial STP","-1637969571":"Demo Swap-Free","-1882063886":"Demo CFDs","-1347908717":"Demo Financial SVG","-1780324582":"SVG","-860609405":"Password","-742647506":"Fund transfer","-712681566":"Peer-to-peer exchange","-1267880283":"{{field_name}} is required","-2084509650":"{{field_name}} is not properly formatted.","-790488576":"Forgot password?","-476558960":"If you don’t have open positions","-1385484963":"Confirm to change your {{platform}} password","-1990902270":"This will change the password to all of your {{platform}} accounts.","-12535938":"*Volatility 250 Index, Volatility 150 Index, Boom 300 and Crash 300 Index","-201485855":"Up to","-700260448":"demo","-1769158315":"real","-1922462747":"Trader's hub","-16858060":"You have a new Deriv MT5 password to log in to your Deriv MT5 accounts on the web and mobile apps.","-1868608634":"Current password","-2092058806":"8 to 16 characters","-2051033705":"A special character such as ( _ @ ? ! / # )","-1762249687":"A lowercase letter","-535365199":"Enter your {{platform}} password to add a {{platform_name}} {{account}} account.","-184453418":"Enter your {{platform}} password","-393388362":"We’re reviewing your documents. This should take about 1 to 3 days.","-2057918502":"Hint: You may have entered your Deriv password, which is different from your {{platform}} password.","-267598687":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. To start trading, <1 />transfer funds <2 />from your Deriv account into this account.","-1475660820":"Your Deriv MT5 {{type}} account is ready. ","-1710177700":"Your demo {{type}} account is ready.","-1184248732":"Congratulations, you have successfully created your <0/>{{category}} {{platform}} {{type}} account. ","-1928229820":"Reset Deriv X investor password","-1969916895":"Your password must contain between 8-16 characters that include uppercase and lowercase letters, and at least one number and special character ( _ @ ? ! / # ).","-1087845020":"main","-1950683866":"investor","-1874242353":"Fund top up","-89838213":"You can top up your demo account with an additional <0> if your balance is <1> or less.","-1211122723":"{{ platform }} {{ account_title }} account","-78895143":"Current balance","-149993085":"New current balance","-1615126227":"Manage up to {{max_count}} Deriv cTrader accounts. While you can convert any of your Deriv cTrader accounts into a strategy account, please take note of the following:","-1547739386":"To ensure you can always create and manage strategies with fees, <0>keep at least one account free from being a strategy provider. This way, you’ll always have an account ready for collecting fees, allowing you to have up to four strategies where you may impose fees.","-2145356061":"Download Deriv X on your phone to trade with the Deriv X account","-1547458328":"Run cTrader on your browser","-747382643":"Get another cTrader account","-1986258847":"Server maintenance starts at 01:00 GMT every Sunday, and this process may take up to 2 hours to complete. Service may be disrupted during this time.","-499504077":"Choose a cTrader account to transfer","-251202291":"Broker","-678964540":"to","-206829624":"(1:x)","-616293830":"Enjoy dynamic leverage of <0>up to 1:1500 when trading selected instruments in the forex, commodities, cryptocurrencies, and stock indices markets. Our dynamic leverage adjusts automatically to your trading position, based on asset type and trading volume.","-2042845290":"Your investor password has been changed.","-1882295407":"Your password has been changed.","-254497873":"Use this password to grant viewing access to another user. While they may view your trading account, they will not be able to trade or take any other actions.","-161656683":"Current investor password","-374736923":"New investor password","-1793894323":"Create or reset investor password","-21438174":"Add your Deriv cTrader account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-2026018074":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (SVG) LLC (company no. 273 LLC 2020).","-162320753":"Add your Deriv MT5 <0>{{account_type_name}} account under Deriv (BVI) Ltd, regulated by the British Virgin Islands Financial Services Commission (License no. SIBA/L/18/1114).","-271828350":"Get more out of Deriv MT5 Financial","-2125860351":"Choose a jurisdiction for your Deriv MT5 CFDs account","-1460321521":"Choose a jurisdiction for your {{account_type}} account","-637537305":"Download {{ platform }} on your phone to trade with the {{ platform }} {{ account }} account","-964130856":"{{existing_account_title}}","-879259635":"Enter your Deriv MT5 password to upgrade your account(s).","-1504907646":"Deriv MT5 password","-361998267":"We've introduced additional password requirements to increase your account security. Your password should:","-996995493":"Be between 8 to 16 characters.","-219163415":"Contain at least one special character.","-1446636186":"By clicking on <0>Next you agree to move your {{platform}} {{type_1}} and {{type_2}} {{from_account}} account(s) under Deriv {{account_to_migrate}} Ltd’s <1>terms and conditions.","-1766387013":"Upgrade your MT5 account(s)","-990927225":"Enter your Deriv MT5 password","-1486399361":"Trade with MT5 mobile app","-301350824":"Note: Don't have the MT5 app? Tap the <0>Trade with MT5 mobile app button to download. Once you have\n installed the app, return to this screen and hit the same button to log in.","-648956272":"Use this password to log in to your Deriv X accounts on the web and mobile apps.","-1814308691":"Please click on the link in the email to change your {{platform}} password.","-2015785957":"Compare CFDs {{demo_title}} accounts","-81650212":"MetaTrader 5 web","-508045656":"Coming soon on IOS","-601303096":"Scan the QR code to download Deriv {{ platform }}.","-1357917360":"Web terminal","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-1386326276":"Barrier is a required field.","-1418742026":"Higher barrier must be higher than lower barrier.","-92007689":"Lower barrier must be lower than higher barrier.","-1095538960":"Please enter the start time in the format \"HH:MM\".","-1975910372":"Minute must be between 0 and 59.","-866277689":"Expiry time cannot be in the past.","-1455298001":"Now","-256210543":"Trading is unavailable at this time.","-1150099396":"We’re working to have this available for you soon. If you have another account, switch to that account to continue trading. You may add a Deriv MT5 Financial.","-28115241":"{{platform_name_trader}} is not available for this account","-453920758":"Go to {{platform_name_mt5}} dashboard","-402175529":"History","-1013917510":"The reset time is {{ reset_time }}","-925402280":"Indicative low spot","-1075414250":"High spot","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1371082433":"Reset barrier","-1402197933":"Reset time","-2035315547":"Low barrier","-1745835713":"Selected tick","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-504849554":"It will reopen at","-59803288":"In the meantime, try our synthetic indices. They simulate real-market volatility and are open 24/7.","-1278109940":"See open markets","-694105443":"This market is closed","-104603605":"You cannot trade as your documents are still under review. We will notify you by email once your verification is approved.","-439389714":"We’re working on it","-770929448":"Go to {{platform_name_smarttrader}}","-347156282":"Submit Proof","-138538812":"Log in or create a free account to place a trade.","-2036388794":"Create free account","-1813736037":"No further trading is allowed on this contract type for the current trading session. For more info, refer to our <0>terms and conditions.","-1043795232":"Recent positions","-153220091":"{{display_value}} Tick","-802374032":"Hour","-1052279158":"Your <0>payout is the sum of your initial stake and profit.","-1819891401":"You can close your trade anytime. However, be aware of <0>slippage risk.","-231957809":"Win maximum payout if the exit spot is higher than or equal to the upper barrier.","-464144986":"Win maximum payout if the exit spot is lower than or equal to the lower barrier.","-1031456093":"Win up to maximum payout if exit spot is between lower and upper barrier, in proportion to the difference between upper barrier and exit spot.","-968162707":"No payout if exit spot is above or equal to the upper barrier.","-2089488446":"If you select \"Ends Between\", you win the payout if the exit spot is strictly higher than the Low barrier AND strictly lower than the High barrier.","-1876950330":"If you select \"Ends Outside\", you win the payout if the exit spot is EITHER strictly higher than the High barrier, OR strictly lower than the Low barrier.","-546460677":"If the exit spot is equal to either the Low barrier or the High barrier, you don't win the payout.","-1929209278":"If you select \"Even\", you will win the payout if the last digit of the last tick is an even number (i.e., 2, 4, 6, 8, or 0).","-2038865615":"If you select \"Odd\", you will win the payout if the last digit of the last tick is an odd number (i.e., 1, 3, 5, 7, or 9).","-1959473569":"If you select \"Lower\", you win the payout if the exit spot is strictly lower than the barrier.","-1350745673":"If the exit spot is equal to the barrier, you don't win the payout.","-93996528":"By purchasing the \"Close-to-Low\" contract, you'll win the multiplier times the difference between the close and low over the duration of the contract.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1722190480":"By purchasing the \"High-to-Low\" contract, you'll win the multiplier times the difference between the high and low over the duration of the contract.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-618782785":"Use multipliers to leverage your potential returns. Predict if the asset price will move upward (bullish) or downward (bearish). We’ll charge a commission when you open a multipliers trade.","-565391674":"If you select \"<0>Up\", your total profit/loss will be the percentage increase in the underlying asset price, times the multiplier and stake, minus commissions.","-1113825265":"Additional features are available to manage your positions: “<0>Take profit” and “<0>Stop loss” allow you to adjust your level of risk aversion.","-1104397398":"Additional features are available to manage your positions: “<0>Take profit”, “<0>Stop loss” and “<0>Deal cancellation” allow you to adjust your level of risk aversion.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-1392065699":"If you select \"Rise\", you win the payout if the exit spot is strictly higher than the entry spot.","-1762566006":"If you select \"Fall\", you win the payout if the exit spot is strictly lower than the entry spot.","-1435306976":"If you select \"Allow equals\", you win the payout if exit spot is higher than or equal to entry spot for \"Rise\". Similarly, you win the payout if exit spot is lower than or equal to entry spot for \"Fall\".","-1812957362":"If you select \"Stays Between\", you win the payout if the market stays between (does not touch) either the High barrier or the Low barrier at any time during the contract period","-220379757":"If you select \"Goes Outside\", you win the payout if the market touches either the High barrier or the Low barrier at any time during the contract period.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1565216130":"If you select <0>\"Up\", you’ll earn a payout if the spot price never drops below the barrier.","-1336860323":"If you select <0>\"Down\", you’ll earn a payout if the spot price never rises above the barrier.","-1547935605":"Your payout is equal to the <0>payout per point multiplied by the difference between the <0>final price and the barrier. You will only earn a profit if your payout is higher than your initial stake.","-1307465836":"You may sell the contract up to 15 seconds before expiry. If you do, we’ll pay you the <0>contract value.","-351875097":"Number of ticks","-729830082":"View less","-1649593758":"Trade info","-1382749084":"Go back to trading","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-1977959027":"hours","-442488432":"day","-337314714":"days","-1435392215":"About deal cancellation","-2017825013":"Got it","-1192773792":"Don't show this again","-1341681145":"When this is active, you can cancel your trade within the chosen time frame. Your stake will be returned without loss.","-471757681":"Risk management","-843831637":"Stop loss","-771725194":"Deal Cancellation","-1669741470":"The payout at expiry is equal to the payout per point multiplied by the difference between the final price and the strike price.","-993480898":"Accumulators","-2131851017":"Growth rate","-1422269966":"You can choose a growth rate with values of 1%, 2%, 3%, 4%, and 5%.","-1186791513":"Payout is the sum of your initial stake and profit.","-1682624802":"It is a percentage of the previous spot price. The percentage rate is based on your choice of the index and the growth rate.","-1186082278":"Your payout is equal to the payout per point multiplied by the difference between the final price and barrier.","-584445859":"This is when your contract will expire based on the duration or end time you’ve selected. If the duration is more than 24 hours, the cut-off time and expiry date will apply instead.","-1221049974":"Final price","-1247327943":"This is the spot price of the last tick at expiry.","-1890561510":"Cut-off time","-878534036":"If you select \"Call\", you’ll earn a payout if the final price is above the strike price at expiry. Otherwise, you won’t receive a payout.","-1587076792":"If you select \"Put\", you’ll earn a payout if the final price is below the strike price at expiry. Otherwise, you won’t receive a payout.","-1482134885":"We calculate this based on the strike price and duration you’ve selected.","-565990678":"Your contract will expire on this date (in GMT), based on the End time you’ve selected.","-1545819495":"Your trade will be closed automatically at the nearest available asset price when your loss reaches a certain percentage of your stake, but your loss never exceeds your stake. This percentage depends on the chosen underlying asset and the Multiplier.","-468501352":"If you select this feature, your trade will be closed automatically at the nearest available asset price when your profit reaches or exceeds the take profit amount. Your profit may be more than the amount you entered depending on the market price at closing.","-477936848":"We use next-tick-execution mechanism, which is the next asset price when the trade opening is processed by our servers.","-1476381873":"The latest asset price when the trade closure is processed by our servers.","-148680560":"Spot price of the last tick upon reaching expiry.","-1123926839":"Contracts will expire at exactly 14:00:00 GMT on your selected expiry date.","-1904828224":"We’ll offer to buy your contract at this price should you choose to sell it before its expiry. This is based on several factors, such as the current spot price, duration, etc. However, we won’t offer a contract value if the remaining duration is below 24 hours.","-127118348":"Choose {{contract_type}}","-543478618":"Try checking your spelling or use a different term","-338707425":"Minimum duration is 1 day","-1003473648":"Duration: {{duration}} day","-700280380":"Deal cancel. fee","-8998663":"Digit: {{last_digit}} ","-718750246":"Your stake will grow at {{growth_rate}}% per tick as long as the current spot price remains within ±{{tick_size_barrier_percentage}} from the previous spot price.","-1358367903":"Stake","-542594338":"Max. payout","-690963898":"Your contract will be automatically closed when your payout reaches this amount.","-511541916":"Your contract will be automatically closed upon reaching this number of ticks.","-438655760":"<0>Note: You can close your trade anytime. Be aware of slippage risk.","-774638412":"Stake must be between {{min_stake}} {{currency}} and {{max_stake}} {{currency}}","-434270664":"Current Price","-1956787775":"Barrier Price:","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-1231210510":"Tick","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-1804019534":"Expiry: {{date}}","-2037881712":"Your contract will be closed automatically at the next available asset price on <0>.","-629549519":"Commission <0/>","-2131859340":"Stop out <0/>","-1686280757":"<0>{{commission_percentage}}% of (<1/> * {{multiplier}})","-732683018":"When your profit reaches or exceeds this amount, your trade will be closed automatically.","-339236213":"Multiplier","-1763848396":"Put","-194424366":"above","-857660728":"Strike Prices","-1346404690":"You receive a payout at expiry if the spot price never touches or breaches the barrier throughout the contract duration. Otherwise, your contract will be terminated early.","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-2002533437":"Custom function","-215053350":"with:","-1257232389":"Specify a parameter name:","-1885742588":"with: ","-188442606":"function {{ function_name }} {{ function_params }} {{ dummy }}","-313112159":"This block is similar to the one above, except that this returns a value. The returned value can be assigned to a variable of your choice.","-1783320173":"Prematurely returns a value within a function","-1485521724":"Conditional return","-1482801393":"return","-46453136":"get","-1838027177":"first","-1182568049":"Get list item","-1675454867":"This block gives you the value of a specific item in a list, given the position of the item. It can also remove the item from the list.","-381501912":"This block creates a list of items from an existing list, using specific item positions.","-426766796":"Get sub-list","-1679267387":"in list {{ input_list }} find {{ first_or_last }} occurence of item {{ input_value }}","-2087996855":"This block gives you the position of an item in a given list.","-422008824":"Checks if a given list is empty","-1343887675":"This block checks if a given list is empty. It returns “True” if the list is empty, “False” if otherwise.","-1548407578":"length of {{ input_list }}","-1786976254":"This block gives you the total number of items in a given list.","-2113424060":"create list with item {{ input_item }} repeated {{ number }} times","-1955149944":"Repeat an item","-434887204":"set","-197957473":"as","-851591741":"Set list item","-1874774866":"ascending","-1457178757":"Sorts the items in a given list","-350986785":"Sort list","-324118987":"make text from list","-155065324":"This block creates a list from a given string of text, splitting it with the given delimiter. It can also join items in a list into a string of text.","-459051222":"Create list from text","-977241741":"List Statement","-451425933":"{{ break_or_continue }} of loop","-323735484":"continue with next iteration","-1592513697":"Break out/continue","-713658317":"for each item {{ variable }} in list {{ input_list }}","-1825658540":"Iterates through a given list","-952264826":"repeat {{ number }} times","-887757135":"Repeat (2)","-1608672233":"This block is similar to the block above, except that the number of times it repeats is determined by a given variable.","-533154446":"Repeat (1)","-1059826179":"while","-1893063293":"until","-279445533":"Repeat While/Until","-1003706492":"User-defined variable","-359097473":"set {{ variable }} to {{ value }}","-1588521055":"Sets variable value","-980448436":"Set variable","-1538570345":"Get the last trade information and result, then trade again.","-222725327":"Here is where you can decide if your bot should continue trading.","-1638446329":"Result is {{ win_or_loss }}","-1968029988":"Last trade result","-1588406981":"You can check the result of the last trade with this block.","-1459154781":"Contract Details: {{ contract_detail }}","-1652241017":"Reads a selected property from contract details list","-985351204":"Trade again","-2082345383":"These blocks transfer control to the Purchase conditions block.","-172574065":"This block will transfer the control back to the Purchase conditions block, enabling you to purchase another contract.","-403103225":"restart","-837044282":"Ask Price {{ contract_type }}","-1033917049":"This block returns the purchase price for the selected trade type.","-1863737684":"2. Purchase conditions","-228133740":"Specify contract type and purchase conditions.","-1098726473":"This block is mandatory. Only one copy of this block is allowed. You can place the Purchase block (see below) here as well as conditional blocks to define your purchase conditions.","-1777988407":"Payout {{ contract_type }}","-511116341":"This block returns the potential payout for the selected trade type","-1943211857":"Potential payout","-1738427539":"Purchase","-813464969":"buy","-53668380":"True if active contract can be sold before expiration at current market price","-43337012":"Sell profit/loss","-2112866691":"Returns the profit/loss from selling at market price","-2132417588":"This block gives you the potential profit or loss if you decide to sell your contract.","-1360483055":"set {{ variable }} to Bollinger Bands {{ band_type }} {{ dummy }}","-20542296":"Calculates Bollinger Bands (BB) from a list with a period","-1951109427":"Bollinger Bands (BB)","-857226052":"BB is a technical analysis indicator that’s commonly used by traders. The idea behind BB is that the market price stays within the upper and lower bands for 95% of the time. The bands are the standard deviations of the market price, while the line in the middle is a simple moving average line. If the price reaches either the upper or lower band, there’s a possibility of a trend reversal.","-325196350":"set {{ variable }} to Bollinger Bands Array {{ band_type }} {{ dummy }}","-199689794":"Similar to BB. This block gives you a choice of returning the values of either the lower band, higher band, or the SMA line in the middle.","-920690791":"Calculates Exponential Moving Average (EMA) from a list with a period","-960641587":"EMA is a type of moving average that places more significance on the most recent data points. It’s also known as the exponentially weighted moving average. EMA is different from SMA in that it reacts more significantly to recent price changes.","-1557584784":"set {{ variable }} to Exponential Moving Average Array {{ dummy }}","-32333344":"Calculates Moving Average Convergence Divergence (MACD) from a list","-628573413":"MACD is calculated by subtracting the long-term EMA (26 periods) from the short-term EMA (12 periods). If the short-term EMA is greater or lower than the long-term EMA than there’s a possibility of a trend reversal.","-1133676960":"Fast EMA Period {{ input_number }}","-883166598":"Period {{ input_period }}","-450311772":"set {{ variable }} to Relative Strength Index {{ dummy }}","-1861493523":"Calculates Relative Strength Index (RSI) list from a list of values with a period","-880048629":"Calculates Simple Moving Average (SMA) from a list with a period","-1150972084":"Market direction","-276935417":"This block is used to determine if the market price moves in the selected direction or not. It gives you a value of “True” or “False”.","-764931948":"in candle list get # from end {{ input_number }}","-924607337":"Returns the last digit of the latest tick","-560033550":"Returns the list of last digits of 1000 recent tick values","-74062476":"Make a List of {{ candle_property }} values in candles list with interval: {{ candle_interval_type }}","-1556495906":"Returns a list of specific values from a candle list according to selected time interval","-166816850":"Create a list of candle values (1)","-1261436901":"Candles List","-1174859923":"Read the selected candle value","-1972165119":"Read candle value (1)","-1956100732":"You can use this block to analyze the ticks, regardless of your trades","-443243232":"The content of this block is called on every tick. Place this block outside of any root block.","-641399277":"Last Tick","-1628954567":"Returns the value of the last tick","-1332756793":"This block gives you the value of the last tick.","-2134440920":"Last Tick String","-1466340125":"Tick value","-467913286":"Tick value Description","-785831237":"This block gives you a list of the last 1000 tick values.","-1546430304":"Tick List String Description","-1788626968":"Returns \"True\" if the given candle is black","-436010611":"Make a list of {{ candle_property }} values from candles list {{ candle_list }}","-1384340453":"Returns a list of specific values from a given candle list","-584859539":"Create a list of candle values (2)","-2010558323":"Read {{ candle_property }} value in candle {{ input_candle }}","-2846417":"This block gives you the selected candle value.","-1587644990":"Read candle value (2)","-1202212732":"This block returns account balance","-1737837036":"Account balance","-1963883840":"Put your blocks in here to prevent them from being removed","-1284013334":"Use this block if you want some instructions to be ignored when your bot runs. Instructions within this block won’t be executed.","-1217253851":"Log","-1987568069":"Warn","-104925654":"Console","-1956819233":"This block displays messages in the developer's console with an input that can be either a string of text, a number, boolean, or an array of data.","-1450461842":"Load block from URL: {{ input_url }}","-1088614441":"Loads blocks from URL","-1747943728":"Loads from URL","-2105753391":"Notify Telegram {{ dummy }} Access Token: {{ input_access_token }} Chat ID: {{ input_chat_id }} Message: {{ input_message }}","-1008209188":"Sends a message to Telegram","-1218671372":"Displays a notification and optionally play selected sound","-2099284639":"This block gives you the total profit/loss of your trading strategy since your bot started running. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-683825404":"Total Profit String","-718220730":"Total Profit String Description","-1861858493":"Number of runs","-264195345":"Returns the number of runs","-303451917":"This block gives you the total number of times your bot has run. You can reset this by clicking “Clear stats” on the Transaction Stats window, or by refreshing this page in your browser.","-2132861129":"Conversion Helper Block","-74095551":"Seconds Since Epoch","-15528039":"Returns the number of seconds since January 1st, 1970","-729807788":"This block returns the number of seconds since January 1st, 1970.","-1370107306":"{{ dummy }} {{ stack_input }} Run after {{ number }} second(s)","-558838192":"Delayed run","-1975250999":"This block converts the number of seconds since the Unix Epoch (1 January 1970) into a string of text representing the date and time.","-702370957":"Convert to date/time","-982729677":"Convert to timestamp","-311268215":"This block converts a string of text that represents the date and time into seconds since the Unix Epoch (1 January 1970). The time and time zone offset are optional. Example: 2019-01-01 21:03:45 GMT+0800 will be converted to 1546347825.","-1797602591":"Stop Loss: {{ currency }} {{ stop_loss }}","-1374685318":"Your contract is closed automatically when your loss is more than or equals to this amount. This block can only be used with the multipliers trade type.","-1214929127":"Stop loss must be a positive number.","-780745489":"If the contract type is “Both”, then the Purchase Conditions should include both Rise and Fall using the “Conditional Block\"","-2142851225":"Multiplier trade options","-625636913":"Amount must be a positive number.","-1466383897":"Duration: {{ duration_unit }} {{ duration_value }}","-440702280":"Trade options","-1193894978":"Define your trade options such as duration and stake. Some options are only applicable for certain trade types.","-46523443":"Duration value is not allowed. To run the bot, please enter a value between {{min}} to {{max}}.","-1483427522":"Trade Type: {{ trade_type_category }} > {{ trade_type }}","-323348124":"1. Trade parameters","-1671903503":"Run once at start:","-783173909":"Trade options:","-376956832":"Here is where you define the parameters of your contract.","-1244007240":"if {{ condition }} then","-1577206704":"else if","-33796979":"true","-1434883449":"This is a single block that returns a boolean value, either true or false.","-1946404450":"Compares two values","-979918560":"This block converts the boolean value (true or false) to its opposite.","-2047257743":"Null","-1274387519":"Performs selected logic operation","-766386234":"This block performs the \"AND\" or the \"OR\" logic operation.","-790995537":"test {{ condition }}","-1860211657":"if false {{ return_value }}","-1643760249":"This block tests if a given value is true or false and returns “True” or “False” accordingly.","-1551875333":"Test value","-52486882":"Arithmetical operations","-1010436425":"This block adds the given number to the selected variable","-999773703":"Change variable","-1272091683":"Mathematical constants","-1396629894":"constrain {{ number }} low {{ low_number }} high {{ high_number }}","-425224412":"This block constrains a given number so that it is within a set range.","-2072551067":"Constrain within a range","-43523220":"remainder of {{ number1 }} ÷ {{ number2 }}","-1291857083":"Returns the remainder after a division","-592154850":"Remainder after division","-736665095":"Returns the remainder after the division of the given numbers.","-1266992960":"Math Number Description","-77191651":"{{ number }} is {{ type }}","-817881230":"even","-142319891":"odd","-1000789681":"whole","-1735674752":"Test a number","-1017805068":"This block tests a given number according to the selection and it returns a value of “True” or “False”. Available options: Even, Odd, Prime, Whole, Positive, Negative, Divisible","-1858332062":"Number","-1053492479":"Enter an integer or fractional number into this block. Please use `.` as a decimal separator for fractional numbers.","-927097011":"sum","-1653202295":"max","-1555878023":"average","-1748351061":"mode","-992067330":"Aggregate operations","-1691561447":"This block gives you a random fraction between 0.0 to 1.0","-523625686":"Random fraction number","-933024508":"Rounds a given number to an integer","-1656927862":"This block rounds a given number according to the selection: round, round up, round down.","-1495304618":"absolute","-61210477":"Operations on a given number","-181644914":"This block performs the selected operations to a given number.","-840732999":"to {{ variable }} append text {{ input_text }}","-1469497908":"Appends a given text to a variable","-1851366276":"Text Append","-1666316828":"Appends a given text to a variable.","-1902332770":"Transform {{ input_text }} to {{ transform_type }}","-1489004405":"Title Case","-904432685":"Changes text case accordingly","-882381096":"letter #","-1027605069":"letter # from end","-2066990284":"random letter","-337089610":"in text {{ input_text1 }} find {{ first_or_last }} occurence of text {{ input_text2 }}","-1966694141":"Searches through a string of text for a specific occurrence of a given character or word, and returns the position.","-697543841":"Text join","-141160667":"length of {{ input_text }}","-1133072029":"Text String Length","-1109723338":"print {{ input_text }}","-736668830":"Print","-1631669591":"string","-1768939692":"number","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1687036846":"Download block","-1266781295":"Expand","-894560707":"function","-1867119688":"Duplicate","-610728049":"Rearrange Vertically","-2033146714":"Collapse All Blocks","-958601558":"Delete Block","-1193267384":"Detach Block","-1750478127":"New variable name","-1061878051":"Y","-2047029150":"Unable to load the block file.","-1410769167":"Target must be an XML file","-609157479":"This URL is already loaded","-241945454":"Proposals are not ready","-1087890592":"Maximum loss amount reached","-1030545878":"You are rate limited for: {{ message_type }}, retrying in {{ delay }}s (ID: {{ request }})","-490766438":"You are disconnected, retrying in {{ delay }}s","-1389975609":"unknown","-1900515692":"Duration must be a positive integer","-245297595":"Please login","-1445046468":"Given candle is not valid","-1891622945":"{{hourPast}}h ago","-1919680487":"workspace","-1703118772":"The {{block_type}} block is misplaced from {{missing_space}}.","-1785726890":"purchase conditions","-461955353":"purchase price","-172348735":"profit","-1624674721":"contract type","-1644154369":"entry spot time","-510792478":"entry spot price","-1974651308":"exit spot time","-1600267387":"exit spot price","-514917720":"barrier","-1072292603":"No Change","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-841561409":"Put Spread","-1429914047":"Low","-1893628957":"Open Time","-1896106455":"10 minutes","-999492762":"15 minutes","-1978767852":"30 minutes","-293628675":"1 hour","-385604445":"2 hours","-1965813351":"4 hours","-525321833":"1 day","-1691868913":"Touch/No Touch","-151151292":"Asians","-1048378719":"Reset Call/Reset Put","-1282312809":"High/Low Ticks","-1237186896":"Only Ups/Only Downs","-529846150":"Seconds","-1635771697":"middle","-1529389221":"Histogram","-1819860668":"MACD","-1750896349":"D'Alembert","-102980621":"The Oscar's Grind Strategy is a low-risk positive progression strategy that first appeared in 1965. By using this strategy, the size of your contract will increase after successful trades, but remains unchanged after unsuccessful trades.","-462715374":"Untitled Bot","-280147477":"All transactions","-137444201":"Buy","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-1904030160":"Transaction performed by (App ID: {{app_id}})","-1876891031":"Currency","-513103225":"Transaction time","-2066666313":"Credit/Debit","-1981004241":"Sell time","-1196431745":"Contract cost","-3423966":"Take profit<0 />Stop loss","-1131753095":"The {{trade_type_name}} contract details aren't currently available. We're working on making them available soon.","-360975483":"You've made no transactions of this type during this period.","-561436679":"This account offers CFDs on derived instruments.","-1173266642":"This account offers CFDs on a feature-rich trading platform.","-1226595254":"Turbos","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-330437517":"Matches/Differs","-657360193":"Over/Under","-558031309":"High Tick/Low Tick","-123659792":"Vanillas","-447037544":"Buy price:","-737348236":"Contract cost:","-1694314813":"Contract value:","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-155989831":"Decrement value","-338379841":"Indicative price:","-2027409966":"Initial stake:","-1769852749":"N/A","-726626679":"Potential profit/loss:","-1511825574":"Profit/Loss:","-1167474366":"Tick ","-1669418686":"AUD/CAD","-1548588249":"AUD/CHF","-1552890620":"AUD/JPY","-681231560":"AUD/PLN","-64938413":"AUD/USD","-1430522808":"EUR/AUD","-2020477069":"EUR/CAD","-1201853162":"EUR/CHF","-1318070255":"EUR/GBP","-1197505739":"EUR/JPY","-405907358":"EUR/USD","-1536293064":"NZD/JPY","-79700881":"NZD/USD","-642323838":"USD/CAD","-428199705":"USD/CHF","-424108348":"USD/JPY","-548255282":"USD/NOK","-1834131208":"USD/PLN","-524302516":"Silver/USD","-764731776":"Platinum/USD","-853582174":"France 40","-1096386695":"UK 100","-617646862":"Germany 40","-2077690248":"Japan 225","-512194910":"US Tech 100","-381746202":"US 500","-1935463381":"Swiss 20","-1941767726":"Euro 50","-1925264914":"Volatility 25 Index","-708579504":"Volatility 50 Index","-975255670":"Volatility 75 Index","-1736314513":"Crash 300 Index","-342128411":"Crash 500 Index","-9704319":"Crash 1000 Index","-465860988":"Bull Market Index","-390528194":"Step Index","-280323742":"EUR Basket","-563812039":"Volatility 10 (1s) Index","-82971929":"Volatility 25 (1s) Index","-433962508":"Volatility 75 (1s) Index","-764111252":"Volatility 100 (1s) Index","-816110209":"Volatility 150 (1s) Index","-1374309449":"Volatility 200 (1s) Index","-1288044380":"Volatility 250 (1s) Index","-1164978320":"Jump 10 Index","-575272887":"BCH/USD","-295406873":"BTC/ETH","-1713556301":"ZMR/USD","-2046638412":"XRP/USD","-1263203461":"BTC/USD","-1112522776":"DSH/USD","-460689370":"LTC/USD","-132112961":"Sharkfin","-1715390759":"I want to do this later","-56163366":"I don't have any of these","-175164838":"{{seconds_passed}}s ago","-514136557":"{{minutes_passed}}m ago","-1420737287":"{{hours_passed}}h ago","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-1603581277":"minutes","-886317740":"The <0>date of birth on your identity document doesn't match your profile.","-1606307809":"We were unable to verify the identity document with the details provided.","-475787720":"The verification status was empty, rejected for lack of information.","-1627868670":"Your identity document has expired.","-1302288704":"The document’s owner is deceased.","-895884696":"The <0>name and <0>date of birth on your identity document don't match your profile.","-1231856133":"The verification status is not available, provider says: Needs Technical Investigation.","-433687715":"For enhanced security, we need to reverify your identity. Kindly resubmit your proof of identity to unlock your account.","-1637538521":"Your document appears to be invalid.","-876579004":"The name on your document doesn’t match your profile.","-746520172":"Some details on your document appear to be invalid, missing, or unclear.","-2146200521":"The serial number of your document couldn’t be verified.","-1945323197":"Your document appears to be in black and white. Please upload a colour photo of your document.","-631393256":"Your document contains markings or text that should not be on your document.","-609103016":"The image quality of your document is too low. Please provide a hi-res photo of your identity document.","-530935718":"We’re unable to verify the document you provided because some details appear to be missing. Please try again or provide another document.","-1027031626":"We’re unable to verify the document you provided because it appears to be damaged. Please try again or upload another document.","-1671621833":"The front of your document appears to be missing. Please provide both sides of your identity document.","-727588232":"Your document appears to be a scanned copy that contains markings or text that shouldn’t be on your document.","-1435064387":"Your document appears to be a printed copy.","-624316211":"Your document appears to be a photo of a device screen.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1658230823":"Contract was sold for <0 />.","-1905867404":"Contract cancelled"} \ No newline at end of file diff --git a/packages/translations/src/translations/ach.json b/packages/translations/src/translations/ach.json index 5ce1c0fdc093..79eab24bfbfc 100644 --- a/packages/translations/src/translations/ach.json +++ b/packages/translations/src/translations/ach.json @@ -304,6 +304,7 @@ "328539132": "crwdns1259415:0crwdne1259415:0", "329353047": "crwdns2154491:0crwdne2154491:0", "329404045": "crwdns1259417:0{{platform}}crwdnd1259417:0{{account_title}}crwdne1259417:0", + "330384187": "crwdns5280044:0crwdne5280044:0", "333456603": "crwdns1259419:0crwdne1259419:0", "333807745": "crwdns2101745:0crwdne2101745:0", "334942497": "crwdns1259423:0crwdne1259423:0", @@ -581,7 +582,6 @@ "632897893": "crwdns4487928:0crwdne4487928:0", "634219491": "crwdns1259867:0crwdne1259867:0", "634274250": "crwdns3783510:0crwdne3783510:0", - "636219153": "crwdns4626912:0crwdne4626912:0", "636219628": "crwdns1259869:0crwdne1259869:0", "636427296": "crwdns5208946:0crwdne5208946:0", "636579615": "crwdns4395396:0crwdne4395396:0", @@ -1160,7 +1160,6 @@ "1199281499": "crwdns1260747:0crwdne1260747:0", "1201533528": "crwdns1260749:0crwdne1260749:0", "1201773643": "crwdns1260751:0crwdne1260751:0", - "1202494002": "crwdns4247996:0crwdne4247996:0", "1203297580": "crwdns1260753:0crwdne1260753:0", "1203380736": "crwdns3664554:0crwdne3664554:0", "1204223111": "crwdns1260755:0crwdne1260755:0", @@ -3303,7 +3302,6 @@ "-1601813176": "crwdns1774615:0{{max_daily_buy}}crwdnd1774615:0{{currency}}crwdnd1774615:0{{max_daily_sell}}crwdnd1774615:0{{currency}}crwdne1774615:0", "-1751632759": "crwdns496918:0{{platform_name_go}}crwdne496918:0", "-1164554246": "crwdns168071:0crwdne168071:0", - "-1090244963": "crwdns4247998:0crwdne4247998:0", "-219846634": "crwdns169287:0crwdne169287:0", "-529038107": "crwdns158030:0crwdne158030:0", "-1738575826": "crwdns168039:0crwdne168039:0", @@ -3581,7 +3579,9 @@ "-184453418": "crwdns170846:0{{platform}}crwdne170846:0", "-393388362": "crwdns1503671:0crwdne1503671:0", "-2057918502": "crwdns170864:0{{platform}}crwdne170864:0", - "-510908328": "crwdns4626918:0crwdne4626918:0", + "-267598687": "crwdns5280046:0{{category}}crwdnd5280046:0{{platform}}crwdnd5280046:0{{type}}crwdne5280046:0", + "-1475660820": "crwdns5280048:0{{type}}crwdne5280048:0", + "-1710177700": "crwdns5280050:0{{type}}crwdne5280050:0", "-1184248732": "crwdns4626920:0{{category}}crwdnd4626920:0{{platform}}crwdnd4626920:0{{type}}crwdne4626920:0", "-1928229820": "crwdns170868:0crwdne170868:0", "-1969916895": "crwdns4642918:0crwdne4642918:0", diff --git a/packages/translations/src/translations/ar.json b/packages/translations/src/translations/ar.json index 98cd0cef042f..59967622b9b3 100644 --- a/packages/translations/src/translations/ar.json +++ b/packages/translations/src/translations/ar.json @@ -257,7 +257,7 @@ "272179372": "تُستخدم هذه الكتلة بشكل شائع لضبط معايير تداولك التالي ولتنفيذ منطق وقف الخسارة/جني الأرباح.", "273350342": "انسخ الرمز المميز والصقه في التطبيق.", "273728315": "يجب ألا تكون 0 أو فارغة", - "274268819": "مؤشر التقلب 100", + "274268819": "مؤشر Volatility 100", "275116637": "Deriv X", "276770377": "سيتم إنشاء حساب (حسابات) MT5 جديدة ضمن {{to_account}} للتداولات الجديدة.", "277469417": "لا يمكن أن يكون وقت الاستبعاد لأكثر من خمس سنوات.", @@ -304,6 +304,7 @@ "328539132": "يتكرر داخل التعليمات بعدد محدد من المرات", "329353047": "Malta Financial Services Authority (MFSA) (ترخيص رقم. هو /70156)", "329404045": "<0>قم بالتبديل إلى حسابك الحقيقي <1>لإنشاء حساب {{platform}} {{account_title}} .", + "330384187": "قم بتمكين التداول مع أول عملية تحويل.", "333456603": "حدود السحب", "333807745": "انقر فوق الكتلة التي تريد إزالتها واضغط على Delete على لوحة المفاتيح.", "334942497": "وقت الشراء", @@ -467,7 +468,7 @@ "514776243": "تم تغيير كلمة المرور {{account_type}} الخاصة بك.", "514948272": "انسخ الرابط", "517631043": "لقد أرسلنا الكتاب الاليكتروني الخاص بك. تحقق من بريدك الإلكتروني لتنزيله.", - "517833647": "مؤشر التقلب 50 (1 ثانية)", + "517833647": "مؤشر Volatility 50 (1 ثانية)", "518955798": "7. قم بالتشغيل مرة واحدة في البداية", "519205761": "لم يعد بإمكانك فتح صفقات جديدة باستخدام هذا الحساب.", "520136698": "مؤشر بوم 500", @@ -581,7 +582,6 @@ "632897893": "إذا كان أي مما سبق ينطبق عليك، حدد <0>نعم. خلاف ذلك، حدد <0>لا.", "634219491": "لم تقدم رَقَم التعريف الضريبي الخاص بك. هذه المعلومات ضرورية للمتطلبات القانونية والتنظيمية. يرجى الانتقال إلى <0>التفاصيل الشخصية في إعدادات حسابك، و أملأ أحدث رَقَم تعريف ضريبي.", "634274250": "المدة التي تستغرقها كل صفقة حتى تنتهي.", - "636219153": "لبدء التداول، قم <0/> بتحويل الأموال من حساب Deriv الخاص بك إلى هذا الحساب.", "636219628": "<0>ج. إذا لم يتم العثور على فرصة للتسوية، ستنتقل الشكوى إلى مرحلة التحديد الذي ستتعامل معها لجنة فض المنازعات", "636427296": "هل تحتاج إلى مساعدة بشأن المعلومات الضريبية؟ أخبرنا عبر <0>الدردشة المباشرة.", "636579615": "عدد الوحدات التي ستتم إضافتها إلى الصفقة التالية بعد صفقة خاسرة. وحدة واحدة تعادل مبلغ الحصة الأولية.", @@ -806,7 +806,7 @@ "854178118": "تحقق من طلبك", "854399751": "خانة الارقات يجب ان تحتوي على ارقام فقط", "854630522": "اختر حساب العملة المشفرة", - "857363137": "مؤشر التقلب 300 (1s)", + "857363137": "مؤشر Volatility 300 (1 ثانية)", "857445204": "يدعم Deriv حاليًا عمليات سحب Tether eUSDT إلى محفظة إيثريوم. لضمان نجاح المعاملة، أدخل عنوان محفظة متوافق مع الرموز التي ترغب في سحبها. <0>تعرف على المزيد", "857986403": "افعل شيئًا", "858663703": "بالنسبة للتداولات الجديدة، يرجى تحويل أموالك إلى حساب (حسابات) <0>{{platform}} {{eligible_account_to_migrate}} الجديد.", @@ -1107,7 +1107,7 @@ "1145927365": "قم بتشغيل الكتل بالداخل بعد عدد معين من الثواني", "1146064568": "اذهب إلى صفحة الإيداع", "1147269948": "لا يمكن أن يكون الحاجز صفرًا.", - "1150637063": "*مؤشر التقلب 150 ومؤشر التقلب 250", + "1150637063": "*مؤشر Volatility 150 ومؤشر Volatility 250", "1151964318": "كلا الجانبين", "1152294962": "قم بتحميل الجزء الأمامي من رخصة القيادة الخاصة بك.", "1154021400": "قائمة", @@ -1160,7 +1160,6 @@ "1199281499": "قائمة الأرقام الأخيرة", "1201533528": "العقود التي تم الفوز بها", "1201773643": "رقمية", - "1202494002": "احصل على بيانات في الوقت الفعلي وأدوات رسم بياني متقدمة وطرق عرض قابلة للتخصيص.", "1203297580": "يرسل هذا الحظر رسالة إلى قناة تليجرام", "1203380736": "تعتبر استراتيجية D'Alembert أقل خطورة من Martingale، ولكن لا يزال بإمكانك تحديد المدة التي ستستمر فيها أموالك مع هذه الاستراتيجية قبل التداول. ما عليك سوى استخدام هذه الصيغة.", "1204223111": "في هذا المثال، يتم تعيين الأسعار المفتوحة من قائمة الشموع لمتغير يسمى «candle_list».", @@ -1334,7 +1333,7 @@ "1364958515": "الأسهم", "1366244749": "حدود", "1367488817": "4. شروط إعادة تشغيل التداول", - "1367990698": "مؤشر التقلب 10", + "1367990698": "مؤشر Volatility 10", "1370647009": "استمتع بحدود يومية أعلى", "1371193412": "إلغاء", "1371555192": "اختر وكيل الدفع المفضل لديك وأدخل مبلغ السحب. إذا لم يكن وكيل الدفع الخاص بك مدرجًا، <0>فابحث عنه باستخدام رقم حسابه.", @@ -3212,7 +3211,7 @@ "-1999747212": "هل تريد استعادة الجولة؟", "-782992165": "الخطوة الأولى :", "-1207872534": "أولاً، قم بتعيين كتلة <0>معايير التجارة.", - "-1656388044": "أولاً، قم بتعيين <0>السوق إلى مؤشر مشتق > المؤشرات المستمرة > مؤشر التقلب 100 (1s).", + "-1656388044": "أولاً، قم بتعيين <0>السوق إلى مؤشر مشتق > المؤشرات المستمرة > مؤشر Volatility 100 (1s).", "-1706298865": "ثم قم بتعيين <0>نوع التداول إلى أعلى/أسفل > ارتفاع/هبوط.", "-1834358537": "بالنسبة <0>للفاصل الزمني الافتراضي للشمعة، اضبطه على دقيقة واحدة", "-1940971254": "بالنسبة <0>لخيارات التجارة، قم بتعيينها على النحو التالي:", @@ -3303,7 +3302,6 @@ "-1601813176": "هل ترغب في زيادة حدودك اليومية إلى {{max_daily_buy}} {{currency}} (شراء) و {{max_daily_sell}} {{currency}} (بيع)؟", "-1751632759": "احصل على تجربة تداول أسرع عبر الهاتف المحمول مع تطبيق <0>{{platform_name_go}}!", "-1164554246": "لقد قدمت وثائق هوية منتهية الصلاحية", - "-1090244963": "تداول بشكل أكثر ذكاءً مع Deriv Trader Chart v2.0:", "-219846634": "دعونا نتحقق من هويتك", "-529038107": "قم بالتثبيت", "-1738575826": "يرجى التبديل إلى حسابك الحقيقي أو إنشاء حساب للوصول إلى أمين الصندوق.", @@ -3567,7 +3565,7 @@ "-476558960": "إذا كانت لديك مراكز مفتوحة", "-1385484963": "قم بالتأكيد لتغيير كلمة المرور {{platform}} الخاصة بك", "-1990902270": "سيؤدي هذا إلى تغيير كلمة المرور لجميع الحسابات {{platform}} الخاصة بك.", - "-12535938": "* مؤشر التقلب 250 ومؤشر التقلب 150 ومؤشر بوم 300 ومؤشر كراش 300", + "-12535938": "* مؤشر Volatility 250 ومؤشر Volatility 150 ومؤشر Boom 300 ومؤشر Crash 300", "-201485855": "يصل إلى", "-700260448": "تجريبي", "-1769158315": "حقيقي", @@ -3581,7 +3579,9 @@ "-184453418": "أدخل كلمة المرور {{platform}} الخاصة بك", "-393388362": "نحن نراجع مستنداتك. يجب أن يستغرق هذا حوالي 1 إلى 3 أيام.", "-2057918502": "تلميح: ربما تكون قد أدخلت كلمة مرور Deriv الخاصة بك، والتي تختلف عن كلمة المرور {{platform}} الخاصة بك.", - "-510908328": "لبدء التداول، قم <0 /> بتحويل الأموال <1 /> من حساب Deriv الخاص بك إلى هذا الحساب.", + "-267598687": "تهانينا، لقد نجحت في إنشاء حسابك <0/>{{category}} {{platform}} {{type}}. لبدء التداول، <1 />قم بتحويل الأموال <2 />من حساب Deriv الخاص بك إلى هذا الحساب.", + "-1475660820": "حساب Deriv MT5 {{type}} الخاص بك جاهز. ", + "-1710177700": "حساب التجريبي {{type}} الخاص بك جاهز.", "-1184248732": "تهانينا، لقد نجحت في إنشاء حساب <0/>{{category}} {{platform}} {{type}} الخاص بك. ", "-1928229820": "إعادة تعيين كلمة مرور مستثمر Deriv X", "-1969916895": "يجب أن تحتوي كلمة المرور الخاصة بك على ما بين 8-16 حرفًا تتضمن أحرفًا كبيرة وصغيرة، ورقمًا واحدًا على الأقل وحرفًا خاصًا ( _ @ ؟ ! / # ).", @@ -4140,22 +4140,22 @@ "-381746202": "حافلة 500", "-1935463381": "سويس 20", "-1941767726": "يورو 50", - "-1925264914": "مؤشر التقلب 25", - "-708579504": "مؤشر التقلب 50", - "-975255670": "مؤشر التقلب 75", + "-1925264914": "مؤشر Volatility 25", + "-708579504": "مؤشر Volatility 50", + "-975255670": "مؤشر Volatility 75", "-1736314513": "مؤشر كراش 300", "-342128411": "مؤشر كراش 500", "-9704319": "مؤشر كراش 1000", "-465860988": "مؤشر السوق الصاعد", "-390528194": "فهرس الخطوات", "-280323742": "كرة السلة باليورو", - "-563812039": "مؤشر التقلب 10 (1s)", - "-82971929": "مؤشر التقلب 25 (1 ثانية)", - "-433962508": "مؤشر التقلب 75 (1 ثانية)", - "-764111252": "مؤشر التقلب 100 (1s)", - "-816110209": "مؤشر التقلب 150 (1 ثانية)", - "-1374309449": "مؤشر التقلب 200 (1s)", - "-1288044380": "مؤشر التقلب 250 (1 ثانية)", + "-563812039": "مؤشر Volatility 10 (1 ثانية)", + "-82971929": "مؤشر Volatility 25 (1 ثانية)", + "-433962508": "مؤشر Volatility 75 (1 ثانية)", + "-764111252": "مؤشر Volatility 100 (1 ثانية)", + "-816110209": "مؤشر Volatility 150 (1 ثانية)", + "-1374309449": "مؤشر Volatility 200 (1 ثانية)", + "-1288044380": "مؤشر Volatility 250 (1 ثانية)", "-1164978320": "مؤشر جامب 10", "-575272887": "فرنك سويسري مقابل الدولار", "-295406873": "بيتكوين مقابل ETH", diff --git a/packages/translations/src/translations/bn.json b/packages/translations/src/translations/bn.json index 831cc5af2f0f..4a18b57a26a6 100644 --- a/packages/translations/src/translations/bn.json +++ b/packages/translations/src/translations/bn.json @@ -304,6 +304,7 @@ "328539132": "নির্দেশাবলী নির্দিষ্ট সংখ্যক বার পুনরাবৃত্তি", "329353047": "Malta Financial Services Authority (MFSA) (লাইসেন্স নং। আইএস/70156)", "329404045": "<1>একটি {{platform}} {{account_title}} <0>অ্যাকাউন্ট তৈরি করতে আপনার আসল অ্যাকাউন্টে স্যুইচ করুন।", + "330384187": "আপনার প্রথম স্থানান্তর দিয়ে ট্রেডিং সক্ষম করুন।.", "333456603": "উত্তোলনের সীমা", "333807745": "আপনি যে ব্লকটি সরাতে চান তার উপর ক্লিক করুন এবং আপনার কীবোর্ডে Delete চাপুন।", "334942497": "সময় কিনুন", @@ -581,7 +582,6 @@ "632897893": "উপরের যেকোনটি আপনার ক্ষেত্রে প্রযোজ্য হলে, <0>হ্যাঁ নির্বাচন করুন। অন্যথায়, <0>না নির্বাচন করুন।", "634219491": "আপনি আপনার ট্যাক্স সনাক্তকরণ নম্বর প্রদান করেননি। এই তথ্য আইনি এবং নিয়ন্ত্রক প্রয়োজনীয়তা জন্য প্রয়োজনীয়। অনুগ্রহ করে আপনার অ্যাকাউন্ট সেটিংসে <0>ব্যক্তিগত বিবরণে যান, এবং আপনার সর্বশেষ কর সনাক্তকরণ নাম্বার পূরণ করুন।", "634274250": "প্রতিটি ট্রেডের মেয়াদ শেষ হতে কতক্ষণ সময় নেয়।", - "636219153": "ট্রেডিং শুরু করতে, <0/>এই অ্যাকাউন্টে আপনার Deriv অ্যাকাউন্ট থেকে তহবিল স্থানান্তর।", "636219628": "<0>গ) নিষ্পত্তির সুযোগ না পাওয়া গেলে অভিযোগটি ডিআরসি কর্তৃক পরিচালিত সংকল্প পর্যায়ে অগ্রসর হবে।", "636427296": "ট্যাক্স তথ্য নিয়ে সাহায্য দরকার? লাইভ চ্যাটের মাধ্যমে <0>আমাদের জানান।", "636579615": "হারিয়ে যাওয়া বাণিজ্যের পরে পরবর্তী ট্রেডে যুক্ত হওয়া ইউনিট (গুলি) সংখ্যা। একটি ইউনিট প্রাথমিক স্ষ্টেকের পরিমাণের সমতুল্য।", @@ -1160,7 +1160,6 @@ "1199281499": "শেষ সংখ্যার তালিকা", "1201533528": "চুক্তি জিতেছে", "1201773643": "সাংখ্যিক", - "1202494002": "রিয়েল-টাইম ডেটা, উন্নত চার্টিং সরঞ্জাম এবং কাস্টমাইজযোগ্য ভিউ পান।", "1203297580": "এই ব্লকটি একটি টেলিগ্রাম চ্যানেলে একটি বার্তা পাঠায়।", "1203380736": "ডি'আলেম্বার্ট কৌশলটি মার্টিঙ্গেলের চেয়ে কম ঝুঁকিপূর্ণ, তবে ট্রেডিংয়ের আগে আপনার তহবিলগুলি এই কৌশলটির সাথে কতক্ষণ স্থায়ী হবে তা আপনি এখনও নির্ধারণ করতে পারেন। শুধু এই সূত্রটি ব্যবহার করুন।", "1204223111": "এই উদাহরণে, মোমবাতি তালিকা থেকে খোলা দাম “candle_list” নামক একটি চলকের জন্য বরাদ্দ করা হয়।", @@ -3303,7 +3302,6 @@ "-1601813176": "আপনি কি আপনার দৈনিক সীমা {{max_daily_buy}} {{currency}} (ক্রয়) এবং {{max_daily_sell}} {{currency}} (বিক্রয়) বৃদ্ধি করতে চান?", "-1751632759": "<0>{{platform_name_go}} অ্যাপের সাথে দ্রুত মোবাইল ট্রেডিং অভিজ্ঞতা পান!", "-1164554246": "আপনি মেয়াদ উত্তীর্ণ সনাক্তকরণ নথি জমা দিয়েছেন", - "-1090244963": "Deriv Trader Chart v2.0 এর সাথে স্মার্ট ট্রেড করুন:", "-219846634": "আসুন আপনার আইডি যাচাই করি", "-529038107": "ইনস্টল", "-1738575826": "দয়া করে আপনার আসল অ্যাকাউন্টে স্যুইচ করুন বা ক্যাশিয়ার অ্যাক্সেস করতে একটি তৈরি করুন।", @@ -3581,7 +3579,9 @@ "-184453418": "আপনার {{platform}} পাসওয়ার্ড লিখুন", "-393388362": "আমরা আপনার নথি পর্যালোচনা করছি। এটি প্রায় 1 থেকে 3 দিন সময় নিতে পারে।", "-2057918502": "ইঙ্গিত: আপনার Deriv পাসওয়ার্ড প্রবেশ করিয়েছেন, যা আপনার {{platform}} পাসওয়ার্ড থেকে ভিন্ন।", - "-510908328": "ট্রেডিং শুরু করতে, এই অ্যাকাউন্টে আপনার Deriv অ্যাকাউন্ট থেকে <0 />তহবিল স্থানান্তর। <1 />", + "-267598687": "অভিনন্দন, আপনি সফলভাবে আপনার <0/>{{category}} {{platform}} {{type}} অ্যাকাউন্ট তৈরি করেছেন। ট্রেডিং শুরু করতে, আপনার ডে <1 />রিভ অ্যাকাউ <2 /> ন্ট থেকে এই অ্যাকাউন্টে তহবিল স্থানান্তর করুন।", + "-1475660820": "আপনার Deriv MT5 {{type}} অ্যাকাউন্ট প্রস্তুত। ", + "-1710177700": "আপনার ডেমো {{type}} অ্যাকাউন্ট প্রস্তুত।", "-1184248732": "অভিনন্দন, আপনি সফলভাবে আপনার <0/>{{category}} {{platform}} {{type}} অ্যাকাউন্ট তৈরি করেছেন। ", "-1928229820": "Deriv X বিনিয়োগকারী পাসওয়ার্ড রিসেট করুন", "-1969916895": "আপনার পাসওয়ার্ডে অবশ্যই 8-16 অক্ষর থাকতে হবে যার মধ্যে বড় এবং ছোট অক্ষর এবং কমপক্ষে একটি সংখ্যা এবং বিশেষ অক্ষর অন্তর্ভুক্ত থাকে ( _ @ ? ! / # )।", diff --git a/packages/translations/src/translations/de.json b/packages/translations/src/translations/de.json index 73acc092bf83..02803cae8660 100644 --- a/packages/translations/src/translations/de.json +++ b/packages/translations/src/translations/de.json @@ -304,6 +304,7 @@ "328539132": "Wiederholt interne Anweisungen wie oft angegeben", "329353047": "Maltesische Finanzdienstleistungsbehörde (MFSA) (Lizenz Nr. IS/70156)", "329404045": "<0>Wechseln Sie zu Ihrem echten Konto<1>, um ein {{platform}} {{account_title}}.", + "330384187": "Aktivieren Sie den Handel mit Ihrer ersten Überweisung.", "333456603": "Auszahlungslimits", "333807745": "Klicken Sie auf den Block, den Sie entfernen möchten, und drücken Sie Entfernen auf Ihrer Tastatur.", "334942497": "Zeit kaufen", @@ -581,7 +582,6 @@ "632897893": "Wenn einer der oben genannten Punkte auf Sie zutrifft, wählen Sie <0>Ja. Andernfalls wählen Sie <0>Nein.", "634219491": "Sie haben Ihre Steueridentifikationsnummer nicht angegeben. Diese Informationen sind für gesetzliche und regulatorische Anforderungen erforderlich. Bitte gehen Sie in Ihren Kontoeinstellungen zu <0>Persönliche Daten und geben Sie Ihre letzte Steueridentifikationsnummer ein.", "634274250": "Wie lange jeder Handel dauert, bis er abläuft.", - "636219153": "Um mit dem Handel zu beginnen, überweisen Sie <0/>Geld von Ihrem Deriv-Konto auf dieses Konto.", "636219628": "<0>c. Wenn keine Möglichkeit zur Beilegung gefunden werden kann, wird die Beschwerde in die Erledigungsphase überführt, die von der Demokratischen Republik Kongo bearbeitet wird.", "636427296": "Benötigen Sie Hilfe bei Steuerinformationen? Lassen Sie es uns im <0>Live-Chat wissen.", "636579615": "Anzahl der Einheiten, die dem nächsten Handel nach einem Verlustgeschäft hinzugefügt werden. Eine Einheit entspricht dem Betrag des ursprünglichen Einsatzes.", @@ -1160,7 +1160,6 @@ "1199281499": "Liste der letzten Digits", "1201533528": "Gewonnene Verträge", "1201773643": "numerisch", - "1202494002": "Sie erhalten Echtzeitdaten, erweiterte Charting-Tools und anpassbare Ansichten.", "1203297580": "Dieser Block sendet eine Nachricht an einen Telegram-Kanal.", "1203380736": "Die D'Alembert-Strategie ist weniger risikoreich als Martingale, aber Sie können dennoch vor dem Handel bestimmen, wie lange Ihre Mittel mit dieser Strategie reichen werden. Verwenden Sie einfach diese Formel.", "1204223111": "In diesem Beispiel werden die Eröffnungspreise aus einer Kerzenliste einer Variablen namens „candle_list“ zugewiesen.", @@ -3303,7 +3302,6 @@ "-1601813176": "Möchten Sie Ihre Tageslimits auf {{max_daily_buy}} {{currency}} (Kauf) und {{max_daily_sell}} {{currency}} (Verkauf) erhöhen?", "-1751632759": "Mit der <0>{{platform_name_go}}-App können Sie schneller mobil handeln!", "-1164554246": "Sie haben abgelaufene Ausweisdokumente eingereicht", - "-1090244963": "Handeln Sie intelligenter mit Deriv Trader Chart v2.0:", "-219846634": "Lass uns deine ID verifizieren", "-529038107": "Installieren", "-1738575826": "Bitte wechseln Sie zu Ihrem echten Konto oder erstellen Sie eines, um auf den Kassenbereich zuzugreifen.", @@ -3581,7 +3579,9 @@ "-184453418": "Geben Sie Ihr {{platform}}-Passwort ein", "-393388362": "Wir überprüfen Ihre Dokumente. Dies sollte etwa 1 bis 3 Tage dauern.", "-2057918502": "Hinweis: Sie haben möglicherweise Ihr Deriv-Passwort eingegeben, das sich von Ihrem {{platform}}-Passwort unterscheidet.", - "-510908328": "Um mit dem Handel zu beginnen, überweisen Sie <0 />Geldmittel <1 />von Ihrem Deriv-Konto auf dieses Konto.", + "-267598687": "Herzlichen Glückwunsch, Sie haben Ihr <0/>{{category}} {{platform}} {{type}} Konto erfolgreich eingerichtet. Um mit dem Handel zu beginnen, überweisen Sie <1 />Geldmittel <2 />von Ihrem Deriv-Konto auf dieses Konto.", + "-1475660820": "Ihr Deriv Apps {{type}} Konto ist bereit. ", + "-1710177700": "Ihr Demo-Konto {{type}} ist bereit.", "-1184248732": "Herzlichen Glückwunsch, Sie haben Ihr <0/>{{category}} {{platform}} {{type}} Konto erfolgreich erstellt. ", "-1928229820": "Setzen Sie das Deriv X-Investorenpasswort zurück", "-1969916895": "Ihr Passwort muss zwischen 8 und 16 Zeichen enthalten, darunter Groß- und Kleinbuchstaben sowie mindestens eine Zahl und ein Sonderzeichen ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/es.json b/packages/translations/src/translations/es.json index 25f2cc558e1b..9f282350271f 100644 --- a/packages/translations/src/translations/es.json +++ b/packages/translations/src/translations/es.json @@ -304,6 +304,7 @@ "328539132": "Repite las instrucciones internas especificando el número de veces", "329353047": "Malta Financial Services Authority (MFSA) (licencia nº IS/70156)", "329404045": "<0>Cambie a su cuenta real<1> para crear una cuenta {{platform}} {{account_title}}.", + "330384187": "Habilite el comercio con su primera transferencia.", "333456603": "Límites de retiro", "333807745": "Haz clic en el bloque que quieres eliminar y pulsa Eliminar en tu teclado.", "334942497": "Hora de compra", @@ -581,7 +582,6 @@ "632897893": "Si alguna de las opciones anteriores se aplica a usted, seleccione <0>Sí. De lo contrario, seleccione <0>No.", "634219491": "No ha proporcionado su número de identificación fiscal. Esta información es necesaria para los requisitos legales y reglamentarios. Vaya a <0>Detalles personales en la configuración de su cuenta y complete su número de identificación fiscal más reciente.", "634274250": "El tiempo que tarda en expirar cada operación.", - "636219153": "Para empezar a operar, <0/>transfiera fondos de su cuenta de Deriv a esta cuenta.", "636219628": "<0>c. Si no se encuentra una oportunidad de solución, la queja pasará a la fase de determinación que será manejada por el DRC.", "636427296": "¿Necesitas ayuda con la información tributaria? Háznoslo saber a través del <0>chat en vivo.", "636579615": "Número de unidad(es) que se añadirán a la siguiente operación después de una operación perdedora. Una unidad equivale al importe de la inversión inicial.", @@ -1160,7 +1160,6 @@ "1199281499": "Lista de los últimos dígitos", "1201533528": "Contratos ganados", "1201773643": "numérico", - "1202494002": "Obtenga datos en tiempo real, herramientas de gráficos avanzadas y vistas personalizables.", "1203297580": "Este bloque envía un mensaje a un canal de Telegram.", "1203380736": "La estrategia D'Alembert es menos arriesgada que la Martingale, pero aun así puede determinar cuánto durarán sus fondos con esta estrategia antes de operar. Simplemente utilice esta fórmula.", "1204223111": "En este ejemplo, los precios abiertos de una lista de velas se asignan a una variable llamada \"candle_list\".", @@ -3303,7 +3302,6 @@ "-1601813176": "¿Desea aumentar sus límites diarios a {{max_daily_buy}} {{currency}} (compra) y {{max_daily_sell}} {{currency}} (venta)?", "-1751632759": "¡Obtenga una experiencia del trading con móvil más rápida con la aplicación <0>{{platform_name_go}}!", "-1164554246": "Envió documentos de identificación caducados", - "-1090244963": "Opere de forma más inteligente con Deriv Trader Chart v2.0:", "-219846634": "Verifiquemos su identidad", "-529038107": "Instalar", "-1738575826": "Cambie a la cuenta real o cree una cuenta para acceder al cajero.", @@ -3581,7 +3579,9 @@ "-184453418": "Introduzca su contraseña {{platform}}", "-393388362": "Estamos revisando sus documentos. Esto debería tardar de 1 a 3 días.", "-2057918502": "Sugerencia: Es posible que haya introducido su contraseña de Deriv, que es diferente de su contraseña de {{platform}}.", - "-510908328": "Para empezar a operar, <0 />transfiera fondos <1 />de su cuenta de Deriv a esta cuenta.", + "-267598687": "Felicidades, ha creado con éxito su cuenta <0/>{{category}} {{platform}} {{type}}. Para empezar a operar, <1 />transfiera fondos <2 />de su cuenta Deriv a esta cuenta.", + "-1475660820": "Su cuenta Deriv MT5 {{type}} está lista. ", + "-1710177700": "Su cuenta de demostración {{type}} está lista.", "-1184248732": "Felicidades, ha creado su cuenta con éxito <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Restablecer la contraseña de inversor Deriv X", "-1969916895": "Su contraseña debe contener entre 8 y 16 caracteres que incluyan letras mayúsculas y minúsculas, y al menos un número y un carácter especial ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/fr.json b/packages/translations/src/translations/fr.json index d779d4bd71bb..4552b512c173 100644 --- a/packages/translations/src/translations/fr.json +++ b/packages/translations/src/translations/fr.json @@ -304,6 +304,7 @@ "328539132": "Répète les instructions dedans le nombre de fois spécifié", "329353047": "Malta Financial Services Authority (MFSA) (licence nº IS/70156)", "329404045": "<0>Passez à votre compte réel<1> pour créer un compte {{platform}} {{account_title}}.", + "330384187": "Activez les échanges dès votre premier transfert.", "333456603": "Limites de retrait", "333807745": "Cliquez sur le bloc que vous souhaitez supprimer et appuyez sur Supprimer sur votre clavier.", "334942497": "Heure d'ouverture", @@ -581,7 +582,6 @@ "632897893": "Si l'un des points ci-dessus s'applique à vous, sélectionnez <0>Oui. Sinon, sélectionnez <0>Non.", "634219491": "Vous n'avez pas fourni votre numéro d'identification fiscale. Cette information est nécessaire pour les exigences légales et réglementaires. Veuillez vous rendre dans <0>Personal details dans les paramètres de votre compte et renseigner votre dernier numéro d'identification fiscale.", "634274250": "Délai d'expiration de chaque contrat.", - "636219153": "Pour commencer à trader, <0/>transférez des fonds de votre compte Deriv vers ce compte.", "636219628": "<0>c. Si aucune opportunité de règlement n'est trouvée, la plainte passera à la phase de détermination qui sera traitée par la DRC.", "636427296": "Besoin d'aide avec les informations fiscales ? Faites-le nous savoir via le <0>chat en direct.", "636579615": "Nombre d'unité(s) à ajouter au prochain trade après un trade perdant. Une unité équivaut au montant de la mise initiale.", @@ -1160,7 +1160,6 @@ "1199281499": "Liste des derniers chiffres", "1201533528": "Contrats gagnés", "1201773643": "numérique", - "1202494002": "Obtenez des données en temps réel, des outils graphiques avancés et des vues personnalisables.", "1203297580": "Ce bloc envoie un message au réseau social Telegram.", "1203380736": "La stratégie D'Alembert est moins risquée que la stratégie Martingale, mais vous pouvez tout de même déterminer la durée de vie de vos fonds grâce à cette stratégie avant de trader. Il vous suffit d'utiliser la formule suivante.", "1204223111": "Dans cet exemple, les prix ouverts d'une liste de bougies sont affectés à une variable appelée \"candle_list\".", @@ -3303,7 +3302,6 @@ "-1601813176": "Souhaitez-vous augmenter vos limites quotidiennes à {{max_daily_buy}}{{currency}} (achat) et {{max_daily_sell}}{{currency}} (vente) ?", "-1751632759": "Bénéficiez d'une expérience de trading mobile plus rapide avec l'appli <0>{{platform_name_go}} !", "-1164554246": "Vous avez présenté des documents d'identification périmés", - "-1090244963": "Tradez plus intelligemment avec Deriv Trader Chart v2.0 :", "-219846634": "Vérifions votre identité", "-529038107": "Installer", "-1738575826": "Veuillez passer à votre compte réel ou en créer un pour accéder à la caisse.", @@ -3581,7 +3579,9 @@ "-184453418": "Entrer votre mot de passe {{platform}}", "-393388362": "Nous examinons vos documents. Cela devrait prendre environ 1 à 3 jours.", "-2057918502": "Astuce: vous avez peut-être entré votre mot de passe Deriv, qui est différent de votre mot de passe {{platform}}.", - "-510908328": "Pour commencer à trader, <0 />transférez des fonds<1 />de votre compte Deriv vers ce compte.", + "-267598687": "Félicitations, vous avez créé avec succès votre compte <0/>{{category}} {{platform}} {{type}}. Pour commencer à trader, \n<1 />transférez des fonds <2 />de votre compte Deriv vers ce compte.", + "-1475660820": "Votre compte Deriv MT5 {{type}} est prêt. ", + "-1710177700": "Votre compte démo {{type}} est prêt.", "-1184248732": "Félicitations, vous avez correctement créé votre compte <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Réinitialiser le mot de passe investisseur de Deriv X", "-1969916895": "Votre mot de passe doit contenir entre 8 et 16 caractères, dont des lettres majuscules et minuscules, et au moins un chiffre et un caractère spécial ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/it.json b/packages/translations/src/translations/it.json index ed5efd54d862..3a4b92d5a82b 100644 --- a/packages/translations/src/translations/it.json +++ b/packages/translations/src/translations/it.json @@ -304,6 +304,7 @@ "328539132": "Ripete le istruzioni ad esso relative per un numero specifico di volte", "329353047": "Malta Financial Services Authority (MFSA) (licenza n. IS/70156)", "329404045": "<0>Passa al conto reale<1> per creare un conto {{account_title}} {{platform}}.", + "330384187": "Abilita il trading con il suo primo trasferimento.", "333456603": "Limiti per i prelievi", "333807745": "Fai clic sul blocco che desideri rimuovere e premi Elimina sulla tastiera.", "334942497": "Tempo di acquista", @@ -581,7 +582,6 @@ "632897893": "Se una di queste domande si applica a lei, selezioni <0>Sì. Altrimenti, selezioni <0>No.", "634219491": "Non hai verificato il numero di identificazione fiscale: questo dato è fondamentale per questioni legali e normative. Vai su <0>dati personali nelle impostazioni del conto e inserisci il numero di identificazione fiscale aggiornato.", "634274250": "Quanto tempo impiega ogni trade per scadere.", - "636219153": "Per iniziare a fare trading, <0/>trasferisci fondi dal tuo conto Deriv a questo conto.", "636219628": "<0>c.Se non è possibile raggiungere la risoluzione del reclamo, quest'ultimo passerà alla fase di determinazione condotta dalla DRC.", "636427296": "Hai bisogno di aiuto con le informazioni fiscali? Fateci sapere tramite <0>live chat.", "636579615": "Numero di unità da aggiungere all'operazione successiva dopo un'operazione perdente. Un'unità equivale all'importo della puntata iniziale.", @@ -1160,7 +1160,6 @@ "1199281499": "Elenco delle ultime cifre", "1201533528": "Contratti vinti", "1201773643": "numerico", - "1202494002": "Ottiene dati in tempo reale, strumenti grafici avanzati e visualizzazioni personalizzabili.", "1203297580": "Questo blocco invia un messaggio a un canale Telegram.", "1203380736": "La strategia D'Alembert è meno rischiosa della Martingale, ma può comunque determinare quanto dureranno i suoi fondi con questa strategia prima di fare trading. Utilizzi semplicemente questa formula.", "1204223111": "In questo esempio, i prezzi di apertura presi da una lista di candele sono assegnati a una variabile chiamata \"candle_list\".", @@ -3303,7 +3302,6 @@ "-1601813176": "Vuoi aumentare i tuoi limiti giornalieri a {{max_daily_buy}} {{currency}} (acquisto) e {{max_daily_sell}} {{currency}} (vendita)?", "-1751632759": "Ottieni un'esperienza di trading mobile più veloce grazie all'app <0>{{platform_name_go}}!", "-1164554246": "I documenti per la verifica dell'identità non sono più validi", - "-1090244963": "Negoziare in modo più intelligente con Deriv Trader Chart v2.0:", "-219846634": "Verifichiamo la tua identità", "-529038107": "Installa", "-1738575826": "Passa al conto reale oppure crea un conto reale per accedere alla cassa.", @@ -3581,7 +3579,9 @@ "-184453418": "Inserisci la password {{platform}}", "-393388362": "Stiamo esaminando i tuoi documenti. Questa operazione dovrebbe richiedere 1-3 giorni.", "-2057918502": "Suggerimento: forse hai inserito la password di Deriv, che è diversa dalla password {{platform}}.", - "-510908328": "Per iniziare a fare trading, <0 />trasferisci fondi <1 /> dal tuo conto Deriv a questo conto.", + "-267598687": "Congratulazioni, hai creato con successo il conto <0/>{{category}} {{platform}} {{type}}. Per iniziare a fare trading, <1 />trasferisci fondi <2 />dal tuo conto Deriv a questo.", + "-1475660820": "Il suo conto Deriv MT5 {{type}} è pronto. ", + "-1710177700": "Il suo conto demo {{type}} è pronto.", "-1184248732": "Congratulazioni, hai creato il conto <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Reimposta password investitore Deriv X", "-1969916895": "La sua password deve contenere da 8 a 16 caratteri che includano lettere maiuscole e minuscole, e almeno un numero e un carattere speciale ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/ko.json b/packages/translations/src/translations/ko.json index afdc110f3138..46c4961b3856 100644 --- a/packages/translations/src/translations/ko.json +++ b/packages/translations/src/translations/ko.json @@ -304,6 +304,7 @@ "328539132": "내부 지침을 지정된 횟수만큼 반복합니다", "329353047": "Malta Financial Services Authority (MFSA) (라이선스 번호. IS/70156)", "329404045": "<0>실제 계좌로 전환하여<1> {{platform}} {{account_title}} 계좌를 생성하세요.", + "330384187": "첫 번째 송금으로 거래를 활성화합니다.", "333456603": "인출 한도", "333807745": "삭제하려는 블록을 클릭하고 키보드에서 삭제 키를 누르세요.", "334942497": "매수 시간", @@ -581,7 +582,6 @@ "632897893": "위의 항목 중 하나라도 해당되는 경우 <0>예를 선택합니다. 그렇지 않으면 <0>아니요를 선택합니다.", "634219491": "귀하께서는 세금 식별 번호를 제공하지 않으셨습니다. 이 정보는 법적 및 규제적 요구사항에 따라 필요한 정보입니다. 계정 설정의 <0>개인 세부정보 로 이동하여 귀하의 가장 최근 세금 식별 번호를 입력해 주시기 바랍니다.", "634274250": "각 거래가 만료될 때까지 걸리는 시간입니다.", - "636219153": "거래를 시작하려면 <0/>Deriv 계좌에서 이 계좌로 자금을 이체하세요.", "636219628": "<0>c.합의 기회가 없는 경우, 해당 불만은 결정 단계로 진행되어 DRC에서 처리됩니다.", "636427296": "세금 정보에 대한 도움이 필요하신가요? <0>실시간 채팅을 통해 알려주세요.", "636579615": "손실 거래 후 다음 거래에 추가되는 단위 수입니다. 1유닛은 초기 판돈과 동일한 금액입니다.", @@ -1160,7 +1160,6 @@ "1199281499": "마지막 숫자 목록", "1201533528": "획득한 계약", "1201773643": "숫자의", - "1202494002": "실시간 데이터, 고급 차트 도구, 사용자 지정 가능한 보기를 확인하세요.", "1203297580": "이 블록은 텔레그램 채널에 메시지를 전송합니다.", "1203380736": "D'Alembert 전략은 Martingale보다 덜 위험하지만 거래하기 전에 이 전략으로 자금이 얼마나 오래 지속될지 결정할 수 있습니다. 이 공식을 사용하기만 하면 됩니다.", "1204223111": "이 예시에서, 캔들 목록에서의 개장가격은 \"candle_list\"로 불리는 변수에 할당되어집니다.", @@ -3303,7 +3302,6 @@ "-1601813176": "귀하의 일일 한도를 {{max_daily_buy}} {{currency}} (구매) 및 {{max_daily_sell}} {{currency}} (판매) 로 늘리시겠습니까?", "-1751632759": "<0>{{platform_name_go}} 앱을 통해 더 빠른 모바일 트레이딩 경험을 경험하세요!", "-1164554246": "귀하께서는 만기된 신분증을 제출하셨습니다", - "-1090244963": "파생상품 트레이더 차트 v2.0으로 더 스마트하게 거래하세요:", "-219846634": "귀하의 아이디를 검증합시다", "-529038107": "설치", "-1738575826": "캐셔에 접근하기 위해 귀하의 실제 계좌로 변경하시거나 또는 실제 계좌를 생성하세요.", @@ -3581,7 +3579,9 @@ "-184453418": "귀하의 {{platform}} 비밀번호를 입력하세요", "-393388362": "귀하의 문서를 검토 중입니다.이 작업에는 1~3일 정도 소요됩니다.", "-2057918502": "힌트: 귀하의 {{platform}} 비밀번호와는 다른 Deriv 비밀번호를 입력하셨을 수 있습니다.", - "-510908328": "거래를 시작하려면 Deriv <0 />계좌에서 이 계좌로 자금을 <1 />이체하세요.", + "-267598687": "축하드립니다, 귀하께서는 귀하의 <0/>{{category}} {{platform}} {{type}} 계좌를 성공적으로 만드셨습니다. 거래를 시작하려면 <1 />자금을 Deriv 계좌에서 이 계좌로 이체<2 />하세요.", + "-1475660820": "귀하의 Deriv MT5 {{type}} 계정이 준비되었습니다. ", + "-1710177700": "데모 {{type}} 계정이 준비되었습니다.", "-1184248732": "축하합니다, <0/>{{category}} {{platform}} {{type}} 계정을 성공적으로 만들었습니다. ", "-1928229820": "Deriv X 투자자 비밀번호 재설정", "-1969916895": "비밀번호는 대문자와 소문자, 숫자 및 특수 문자 ( _ @ ? ! / # ) 하나 이상을 포함하여 8~16자로 구성되어야 합니다.", diff --git a/packages/translations/src/translations/pl.json b/packages/translations/src/translations/pl.json index 4bdaee658895..5e02bbe1889e 100644 --- a/packages/translations/src/translations/pl.json +++ b/packages/translations/src/translations/pl.json @@ -304,6 +304,7 @@ "328539132": "Powtarza wewnętrzne instrukcje określoną liczbę razy", "329353047": "Podlega pod regulacje instytucji Malta Financial Services Authority (MFSA) (Nr licencji: IS/70156)", "329404045": "<0>Przejdź na swoje prawdziwe konto,<1> aby utworzyć konto {{platform}} {{account_title}}.", + "330384187": "Włącz handel swoim pierwszym przelewem.", "333456603": "Limity wypłat", "333807745": "Kliknij blok, który chcesz usunąć, i naciśnij Usuń na klawiaturze.", "334942497": "Czas zakupu", @@ -581,7 +582,6 @@ "632897893": "Jeśli którekolwiek z powyższych informacji dotyczy Ciebie, wybierz <0>Tak. W przeciwnym razie wybierz opcję <0>Nie.", "634219491": "Nie podano numeru identyfikacji podatkowej. Jest on wymagany z powodów prawnych i regulacyjnych. Przejdź do sekcji <0>Dane osobowe w ustawieniach swojego konta i podaj swój najnowszy numer identyfikacji podatkowej.", "634274250": "Jak długo trwa wygaśnięcie każdej transakcji.", - "636219153": "Aby rozpocząć handel, <0/>przelej środki ze swojego konta Deriv na to konto.", "636219628": "<0>c.Jeżeli nie będzie możliwe dojście do porozumienia, skarga zostanie skierowana do fazy rozstrzygania prowadzonej przez DRC.", "636427296": "Potrzebujesz pomocy z informacjami podatkowymi? Daj nam znać za pośrednictwem <0>czatu na żywo.", "636579615": "Liczba jednostek, które mają zostać dodane do następnej transakcji po przegranej transakcji. Jedna jednostka odpowiada kwocie początkowej stawki.", @@ -1160,7 +1160,6 @@ "1199281499": "Lista ostatnich cyfr", "1201533528": "Wygrane kontrakty", "1201773643": "numeryczna", - "1202494002": "Uzyskaj dane w czasie rzeczywistym, zaawansowane narzędzia do tworzenia wykresów i konfigurowalne widoki.", "1203297580": "Ten blok wysyła wiadomość do kanału Telegram.", "1203380736": "Strategia D'Alembert jest mniej ryzykowna niż Martingale, ale nadal możesz określić, jak długo Twoje fundusze będą trwać dzięki tej strategii przed handlem. Po prostu użyj tej formuły.", "1204223111": "W tym przykładzie ceny otwarcia z listy świec są przypisane do zmiennej o nazwie „candle_list”.", @@ -3303,7 +3302,6 @@ "-1601813176": "Czy chcesz zwiększyć swoje dzienne limity do {{max_daily_buy}} {{currency}} (kup) i {{max_daily_sell}} {{currency}} (sprzedaj)?", "-1751632759": "Szybsze inwestowanie mobilne dzięki aplikacji <0>{{platform_name_go}}!", "-1164554246": "Przesłano nieważny dokument tożsamości", - "-1090244963": "Handluj mądrzej dzięki Deriv Trader Chart v2.0:", "-219846634": "Potwierdźmy Twoją tożsamość", "-529038107": "Instaluj", "-1738575826": "Przejdź na swoje prawdziwe konto lub utwórz je, aby uzyskać dostęp do sekcji Kasjer.", @@ -3581,7 +3579,9 @@ "-184453418": "Wprowadź swoje hasło {{platform}}", "-393388362": "Sprawdzamy Twoje dokumenty. Powinno to zająć około 1-3 dni.", "-2057918502": "Wskazówka: Możliwe, że wprowadzono hasło Deriv, które różni się od hasła {{platform}}.", - "-510908328": "Aby rozpocząć handel, <0 />przelej środki <1 /> ze swojego konta Deriv na to konto.", + "-267598687": "Gratulacje, Twoje konto <0/>{{category}} {{platform}} {{type}} zostało utworzone. Aby rozpocząć handel, <1 />przelej środki <2 />ze swojego konta Deriv na to konto.", + "-1475660820": "Twoje konto Deriv MT5 {{type}} jest gotowe. ", + "-1710177700": "Twoje konto demo {{type}} jest gotowe.", "-1184248732": "Gratulacje, pomyślnie utworzono konto <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Zresetuj hasło inwestora Deriv X", "-1969916895": "Twoje hasło musi zawierać od 8 do 16 znaków zawierających wielkie i małe litery oraz co najmniej jedną cyfrę i znak specjalny ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/pt.json b/packages/translations/src/translations/pt.json index 5781a15b09d9..3daf3a780cf4 100644 --- a/packages/translations/src/translations/pt.json +++ b/packages/translations/src/translations/pt.json @@ -304,6 +304,7 @@ "328539132": "Repete o número de vezes especificado nas instruções internas", "329353047": "Malta Financial Services Authority (MFSA) (licença n.º IS/70156)", "329404045": "<0>Mude para a sua conta real<1> para criar uma conta {{platform}} {{account_title}}.", + "330384187": "Permita a negociação com a sua primeira transferência.", "333456603": "Limites de levantamento", "333807745": "Clique no bloco que pretende remover e selecione o botãoEliminar no seu teclado.", "334942497": "Hora e Data de compra", @@ -581,7 +582,6 @@ "632897893": "Se o exposto acima se aplicar a si, selecione <0>Sim. Caso contrário, selecione <0>Não.", "634219491": "Não forneceu o seu número de identificação fiscal. Esta informação é essencial para os requisitos legais e regulamentares. Aceda a <0>Detalhes pessoais nas definições da sua conta e introduza o seu número de identificação fiscal atual.", "634274250": "Quanto tempo demora cada transação a expirar.", - "636219153": "Para começar a negociar, <0/>transfira fundos da sua conta Deriv para esta conta.", "636219628": "<0>c.Se não for possível encontrar uma solução, a reclamação segue para a fase de apuramento a ser tratada pelo Comité de Resolução de Litígios (DRC).", "636427296": "Precisa de ajuda com informações fiscais? Informe-nos via <0>live chat.", "636579615": "Número de unidades a serem adicionadas à próxima negociação após uma negociação com perdas. Uma unidade é equivalente ao montante da entrada inicial.", @@ -1160,7 +1160,6 @@ "1199281499": "Última lista de \"Digits\"", "1201533528": "Contratos conquistados", "1201773643": "numérico", - "1202494002": "Desfrute de dados em tempo real, ferramentas de gráficos avançadas e modos de visualização personalizáveis.", "1203297580": "Esse bloco envia uma mensagem para um canal do Telegram.", "1203380736": "A estratégia D'Alembert é menos arriscada do que a Martingale, mas pode determinar por quanto tempo os seus fundos irão durar com esta estratégia antes de começar a negociar. Utilize simplesmente esta fórmula.", "1204223111": "Neste exemplo, os preços de abertura de uma lista de velas são atribuídos a uma variável chamada “candle_list”.", @@ -3303,7 +3302,6 @@ "-1601813176": "Gostaria de aumentar os seus limites diários para {{max_daily_buy}} {{currency}} (compra) e {{max_daily_sell}} {{currency}} (venda)?", "-1751632759": "Obtenha uma experiência de negociação móvel mais rápida com a aplicacção <0>{{platform_name_go}}!", "-1164554246": "Apresentou documentos de identificação caducados", - "-1090244963": "Realize negociações mais informadas com a Deriv Trader Chart v2.0:", "-219846634": "Vamos validar a sua identidade", "-529038107": "Instalar", "-1738575826": "Alterne para a sua conta real ou crie uma para aceder à caixa.", @@ -3581,7 +3579,9 @@ "-184453418": "Insira a sua senha {{platform}}", "-393388362": "Estamos a analisar os seus documentos. Este processo deve demorar cerca de 1 a 3 dias.", "-2057918502": "Sugestão: Pode ter introduzido a sua senha Deriv, que difere da sua senha {{platform}}.", - "-510908328": "Para começar a negociar, <0 />transfira fundos <1 />da sua conta Deriv para esta conta.", + "-267598687": "Parabéns, você criou com sucesso sua conta <0/>{{category}} {{platform}} {{type}}. Para começar a negociar, <1 />transfira fundos <2 />de sua conta Deriv para esta conta.", + "-1475660820": "A sua conta Deriv MT5 {{type}} está pronta. ", + "-1710177700": "A sua conta de demonstração {{type}} está pronta.", "-1184248732": "Parabéns, criou com sucesso a sua conta <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Redefinir a senha do investidor da Deriv X", "-1969916895": "A sua palavra-passe deve conter entre 8 e 16 caracteres, incluindo letras maiúsculas e minúsculas, e pelo menos um número e um carácter especial ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/ru.json b/packages/translations/src/translations/ru.json index 091743e969e7..cf0fec99b65e 100644 --- a/packages/translations/src/translations/ru.json +++ b/packages/translations/src/translations/ru.json @@ -304,6 +304,7 @@ "328539132": "Повторяет находящиеся в нем инструкции указанное количество раз", "329353047": "Malta Financial Services Authority (MFSA) (лицензия IS/70156)", "329404045": "<0>Перейдите на реальный счет,<1> чтобы открыть {{account_title}} счет {{platform}}.", + "330384187": "Включите торговлю с первым переводом.", "333456603": "Лимиты на вывод", "333807745": "Нажмите на блок, который хотите удалить, и нажмите Delete на клавиатуре.", "334942497": "Время покупки", @@ -581,7 +582,6 @@ "632897893": "Если что-то из вышеперечисленного относится к Вам, выберите <0>Да. В противном случае выберите <0>Нет.", "634219491": "Вы не указали свой идентификационный номер налогоплательщика. Эта информация необходима для соблюдения правовых и нормативных требований. Перейдите в <0>личные данные в настройках счета и введите свой актуальный идентификационный номер налогоплательщика.", "634274250": "Как долго длится каждый контракт.", - "636219153": "Чтобы начать торговать, <0/> переведите средства со своего счета Deriv на этот счет.", "636219628": "<0>c.Если не удастся найти возможность урегулировать спор, DRC перейдет к этапу определения.", "636427296": "Нужна помощь с информацией о налогах? Сообщите нам об этом в <0>чате.", "636579615": "Количество единиц (единиц), которые будут добавлены к следующей сделке после проигрыша. Одна единица эквивалентна сумме начальной ставки.", @@ -1160,7 +1160,6 @@ "1199281499": "Список последних десятичных", "1201533528": "Успешные контракты", "1201773643": "числовой", - "1202494002": "Получайте данные в реальном времени, продвинутые инструменты построения графиков и настраиваемые представления.", "1203297580": "Этот блок отправляет сообщение в Telegram-канал.", "1203380736": "Стратегия D'Alembert менее рискованна, чем Martingale, но Вы все равно можете определить, на какой срок хватит Ваших средств при использовании этой стратегии, до начала торговли. Просто используйте эту формулу.", "1204223111": "В этом примере цены открытия из списка свечей присваиваются переменной с именем \"candle_list\".", @@ -3303,7 +3302,6 @@ "-1601813176": "Хотите увеличить дневные лимиты до {{max_daily_buy}} {{currency}} (покупка) и {{max_daily_sell}} {{currency}} (продажа)?", "-1751632759": "Быстрый мобильный трейдинг в приложении <0>{{platform_name_go}}!", "-1164554246": "Вы предоставили просроченные документы, удостоверяющие личность", - "-1090244963": "Торгуйте умнее с Deriv Trader Chart v2.0:", "-219846634": "Давайте верифицируем ваше удостоверение личности", "-529038107": "Установить", "-1738575826": "Переключитесь на реальный счет или создайте его, чтобы получить доступ к кассе.", @@ -3581,7 +3579,9 @@ "-184453418": "Введите пароль {{platform}}", "-393388362": "Мы проверяем ваши документы. Это займет 1-3 дня.", "-2057918502": "Подсказка: возможно, вы ввели свой пароль Deriv, который отличается от вашего пароля {{platform}}.", - "-510908328": "Чтобы начать торговать, <0 />переведите средства <1 />со своего счета Deriv на этот счет.", + "-267598687": "Поздравляем, вы успешно открыли счет <0/>{{category}} {{platform}} {{type}}. Чтобы начать торговлю, <1 />переведите средства <2 />с Вашего счета Deriv на этот счет.", + "-1475660820": "Ваш аккаунт Deriv MT5 {{type}} готов. ", + "-1710177700": "Ваш демо-счет {{type}} готов.", "-1184248732": "Поздравляем, ваш счет открыт <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Сбросить инвесторский пароль Deriv X", "-1969916895": "Ваш пароль должен содержать от 8 до 16 символов, включающих заглавные и строчные буквы, а также хотя бы одну цифру и специальный символ ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/si.json b/packages/translations/src/translations/si.json index 6ce9a0fb56b5..7ac59959ffe7 100644 --- a/packages/translations/src/translations/si.json +++ b/packages/translations/src/translations/si.json @@ -304,6 +304,7 @@ "328539132": "නිශ්චිත වාර ගණන උපදෙස් ඇතුළත පුනරාවර්තනය වේ", "329353047": "Malta Financial Services Authority (MFSA) (බලපත්‍ර අංකය. IS/70156)", "329404045": "<1>{{platform}} {{account_title}} ගිණුමක් සෑදීමට<0> ඔබේ සැබෑ ගිණුමට මාරු වන්න.", + "330384187": "ඔබේ පළමු මාරුව සමඟ ගනුදෙනු සබල කරන්න.", "333456603": "ආපසු ගැනීමේ සීමාවන්", "333807745": "ඔබට ඉවත් කිරීමට අවශ්‍ය බ්ලොක් එක​ මත ක්ලික් කර ඔබේ යතුරුපුවරුවේ delete ඔබන්න.", "334942497": "ගැනුම් කාලය", @@ -466,7 +467,7 @@ "514031715": "ලැයිස්තුව {{ input_list }} හිස් ය", "514776243": "ඔබේ {{account_type}} මුරපදය වෙනස් කර ඇත.", "514948272": "සබැඳිය පිටපත් කරන්න", - "517631043": "අපි ඔයාගේ ඊ-පොත එව්වා. එය බාගත කිරීම සඳහා ඔබේ විද්යුත් තැපෑල පරීක්ෂා කරන්න.", + "517631043": "අපි ඔබේ ඊ-පොත එවා ඇත. එය බාගත කිරීම සඳහා ඔබේ ඊ-තැපෑල පරීක්ෂා කරන්න.", "517833647": "50 (1s) අස්ථායීතා දර්ශකය", "518955798": "7. ආරම්භයේදී එක් වරක් ධාවනය කරන්න", "519205761": "ඔබට තවදුරටත් මෙම ගිණුම සමඟ නව ස්ථාන විවෘත කළ නොහැක.", @@ -581,9 +582,8 @@ "632897893": "ඉහත කිසිවක් ඔබට අදාළ නම්, <0>ඔව් තෝරන්න. එසේ නොමැතිනම්, <0>නැත තෝරන්න", "634219491": "ඔබ ඔබේ බදු හඳුනාගැනීමේ අංකය සපයා නැත. නීතිමය සහ නියාමන අවශ්‍යතා සඳහා මෙම තොරතුරු අවශ්‍ය වේ. කරුණාකර ඔබේ ගිණුම් සැකසීම් තුළ <0>පුද්ගලික විස්තර වෙත ගොස්, ඔබේ නවතම බදු හඳුනාගැනීමේ අංකය පුරවන්න.", "634274250": "එක් එක් ගනුදෙනුව කල් ඉකුත් වීමට කොපමණ කාලයක් ගතවේද.", - "636219153": "ගනුදෙනු ආරම්භ කිරීම සඳහා, <0/> ඔබේ Deriv ගිණුමෙන් අරමුදල් මෙම ගිණුමට මාරු කරන්න.", "636219628": "<0>c.පියවීමට අවස්ථාවක් සොයාගත නොහැකි නම්, පැමිණිල්ල DRC විසින් හසුරුවන නිර්ණය කිරීමේ අදියර කරා ගමන් කරනු ඇත.", - "636427296": "බදු තොරතුරු සඳහා උදව් අවශ්යද? සජීවී චැට් හරහා <0>අපට දන්වන්න.", + "636427296": "බදු තොරතුරු සම්බන්ධයෙන් උදවු අවශ්‍ය ද? <0>සජීවී කතාබස් හරහා අපට දන්වන්න.", "636579615": "පරාජිත ගනුදෙනුවකින් පසු ඊළඟ ගනුදෙනුවට එකතු කළ යුතු ඒකක ගණන. එක් ඒකකයක් ආරම්භක කොටස් ප්‍රමාණයට සමාන වේ.", "639382772": "කරුණාකර සහය දක්වන ගොනු වර්ගයක් උඩුගත කරන්න.", "640249298": "සාමාන්‍යයි", @@ -1160,7 +1160,6 @@ "1199281499": "අවසාන Digit ලැයිස්තුව", "1201533528": "දිනා ගත් ගිවිසුම්", "1201773643": "සංඛ්‍යාත්මක", - "1202494002": "තත්‍ය කාලීන දත්ත, උසස් ප්‍රස්තාර​ මෙවලම් සහ අභිරුචිකරණය කළ හැකි දසුන් ලබා ගන්න.", "1203297580": "මෙම කොටස Telegram නාලිකාවකට පණිවුඩ​යක් යවයි.", "1203380736": "D'Alembert උපාය මාර්ගය Martingale උපාය මාර්ගයට වඩා අවදානමින් අඩුයි, නමුත් මෙම උපාය මාර්ගය සමඟ ඔබේ අරමුදල් කොපමණ කාලයක් පවතිනු ඇත්ද යන්න ගනුදෙනුවට පෙර ඔබට තීරණය කළ හැකිය. සරලවම මෙම සූත්‍රය භාවිත කරන්න.", "1204223111": "මෙම උදාහරණයේ දී, candle ලැයිස්තුවකින් විවෘත මිල ගණන් \"candle_list\" යනුවෙන් හැඳින්වෙන විචල්‍යයකට පවරනු ලැබේ.", @@ -1502,7 +1501,7 @@ "1531017969": "අමුණා ඇති එක් එක් අයිතම අතර හිඩැස් නොමැතිව, පාඨ අගය එකතු කිරීමෙන් තනි පාඨ පෙළක් නිර්මාණය කරයි. ඒ අනුව අයිතම ගණන එක් කළ හැකිය.", "1533177906": "Fall", "1534796105": "විචල්‍ය අගයක් ලැබේ", - "1537192641": "ඔබගේ ඉල්ලීම ක්‍රියාවට නැංවිය නොහැක", + "1537192641": "ඔබේ ඉල්ලීම ක්‍රියාවට නැංවිය නොහැක", "1537711064": "ඔබ අයකැමි වෙත ප්‍රවේශ වීමට පෙර ඉක්මන් අනන්‍යතා සත්‍යාපනයක් කිරීමට අවශ්‍ය වේ. කරුණාකර ඔබේ අනන්‍යතා සාක්ෂි ඉදිරිපත් කිරීමට ඔබේ ගිණුම් සැකසීම් වෙත යන්න.", "1540585098": "ප්‍රතික්ෂේප කරන්න", "1541508606": "CFD සොයනවාද? Trader's Hub වෙත යන්න", @@ -2330,7 +2329,7 @@ "-1458676679": "ඔබ 2-50 අක්ෂර ඇතුළත් කළ යුතුය.", "-1116008222": "ඔබ අංක 9-35 ඇතුළත් කළ යුතුය.", "-1995979930": "ලිපිනයේ පළමු පේළිය අවශ්‍ය වේ.", - "-703454156": "කරුණාකර අක්ෂර 20 යටතේ තැපැල්/ZIP කේතයක් ඇතුළත් කරන්න.", + "-703454156": "කරුණාකර අක්ෂර 20 ක තැපැල්/ZIP කේතයක් ඇතුළත් කරන්න.", "-2113555886": "අකුරු, අංක, අවකාශය සහ හයිපන සඳහා පමණක් අවසර ඇත.", "-1103497546": "බදු ප්‍රතිලාභය", "-700600899": "ව්‍යාපාරික ලිපිනය සනාථ කිරීම", @@ -2635,8 +2634,8 @@ "-1728732301": "passkeys සමඟ වෙහෙස නොවී පුරනය වීම", "-684009726": "passkey සංස්කරණය කරන්න", "-1140319320": "ඔබේ ගිණුම දැන් passkey එකකින් සුරක්ෂිත කර ඇත.<0/>ඔබේ Deriv ගිණුම් සැකසීම් හරහා <0/>ඔබේ passkey කළමනාකරණය කරන්න.", - "-1036903080": "ඔබගේ ඉල්ලීම සැකසීමේදී අපට තාවකාලික ගැටළුවක් අත්විඳිනවා. කරුණාකර පසුව නැවත උත්සාහ කරන්න.", - "-331060101": "Passkey පිහිටුවීම අසාර්ථක විය", + "-1036903080": "අපි ඔබේ ඉල්ලීම සැකසීමේදී තාවකාලික ගැටලුවක් අත්විඳින්නෙමු. කරුණාකර පසුව නැවත උත්සාහ කරන්න.", + "-331060101": "Passkey සැකසීම අසාර්ථක විය", "-713875531": "Bluetooth සක්‍රීය කරන්න.", "-80717068": "ඔබ ඔබේ <0>Deriv මුරපදය වෙත සම්බන්ධ කර ඇති යෙදුම්:", "-340060402": "ඔබේ Deriv X මුරපදය වෙබ් සහ ජංගම යෙදුම් මත ඔබේ Deriv X ගිණුම් වෙත පුරනය වීම සඳහා භාවිත කළ හැක.", @@ -2693,7 +2692,7 @@ "-145462920": "Deriv cTrader", "-1210359945": "ඔබගේ ගිණුම් වලට අරමුදල් මාරු කරන්න", "-81256466": "CFD ගිණුමක් සෑදීමට ඔබට Deriv ගිණුමක් අවශ්‍ය වේ.", - "-1926387364": "අපි ඔබේ ඊ-පොත ඔබගේ විද්යුත් තැපෑලට එවා ඇත. ඔබට එය මෙතනින් බාගත කළ හැකිය.", + "-1926387364": "අපි ඔබේ ඊ-පොත ඔබේ ඊ-තැපෑලට එවා ඇත. ඔබට එය මෙතනින් බාගත කළ හැකි ය.", "-1057002564": "<0>අපට මෙම අවස්ථාවේදී ඔබව Wallets වෙත උත්ශ්‍රේණි කිරීමට නොහැකි වන අතර අපි හැකි ඉක්මනින් මෙය නිවැරදි කිරීමට කටයුතු කරමින් සිටිමු. කරුණාකර <1>නැවත උත්සාහ කරන්න<0>.", "-1424352390": "<0>Wallets<1> — ඔබේ අරමුදල් කළමනාකරණය කිරීමට සුක්ෂම ක්‍රමයක්", "-280236366": "දැන් සබල කරන්න", @@ -2931,7 +2930,7 @@ "-1247744334": "- අඩු මිල: අඩුම මිල", "-1386365697": "- අවසාන මිල: අවසන් වන අවස්ථාවේ ඇති මිල", "-1498732382": "කළු (හෝ රතු) candle එකක් පෙන්නුම් කරන්නේ විවෘත මිල ආසන්න මිලට වඩා වැඩි බවයි. මෙය වෙළඳපල මිල පහත වැටීමක් නියෝජනය කරයි.", - "-1871864755": "මෙම බ්ලොක් එක මඟින් ඔබට තෝරාගත් වෙළඳපොළේ නවතම ටික් වටිනාකමේ අවසාන ඉලක්කම් ලබා දෙයි. නවතම ටික් අගය 1410.90 නම්, මෙම බ්ලොක් එක නැවත 0 බවට පත් වේ. Even/Odd, Matches/Differs, හෝ Higher/Lower වැනි ඩිජිටල් මත පදනම් වූ ගිවිසුම් සඳහා එය ප්‍රයෝජනවත් වේ.", + "-1871864755": "මෙම බ්ලොක් එක මඟින් ඔබට තෝරාගත් වෙළඳපළේ නවතම ටික් වටිනාකමේ අවසාන ඉලක්කම් ලබා දෙයි. නවතම ටික් අගය 1410.90 නම්, මෙම බ්ලොක් එක නැවත 0 බවට පත් වේ. Even/Odd, Matches/Differs, හෝ Higher/Lower වැනි ඩිජිටල් මත පදනම් වූ ගිවිසුම් සඳහා එය ප්‍රයෝජනවත් වේ.", "-1029671512": "\"OR\" මෙහෙයුම තෝරාගෙන තිබේ නම්, ලබා දී ඇති අගයන් එකක් හෝ දෙකම \"සත්‍ය\" නම්, බ්ලොක් එකේ අගය \"True\" ලෙස ලැබෙයි", "-210295176": "ලබා ගත හැකි ගණිත කර්ම:", "-1385862125": "- එකතු කිරීම", @@ -3303,7 +3302,6 @@ "-1601813176": "ඔබ ඔබේ දෛනික සීමා {{max_daily_buy}} {{currency}} (ගැනුම්) සහ {{max_daily_sell}} {{currency}} (විකුණුම්) දක්වා වැඩි කිරීමට කැමති ද?", "-1751632759": "<0>{{platform_name_go}} යෙදුම සමඟ වේගවත් ජංගම ගනුදෙනු අත්දැකීමක් ලබා ගන්න!", "-1164554246": "ඔබ කල් ඉකුත් වූ හැඳුනුම් ලේඛන ඉදිරිපත් කර ඇත", - "-1090244963": "Deriv Trader Chart v2.0 සමඟින් කඩිසරව ගනුදෙනු කරන්න:", "-219846634": "ඔබගේ හැඳුනුම්පත සත්‍යාපනය කරමු", "-529038107": "ස්ථාපනය කරන්න", "-1738575826": "කරුණාකර ඔබේ සැබෑ ගිණුමට මාරු වන්න හෝ අයකැමි වෙත ප්‍රවේශ වීමට ගිණුමක් සාදන්න.", @@ -3581,7 +3579,9 @@ "-184453418": "ඔබේ {{platform}} මුරපදය ඇතුළත් කරන්න", "-393388362": "අපි ඔබේ ලේඛන සමාලෝචනය කරමින් සිටිමු. මේ සඳහා දින 1 සිට 3 දක්වා කාලයක් ගත විය හැක.", "-2057918502": "ඉඟිය: ඔබ ඔබේ Deriv මුරපදය ඇතුළත් කර තිබිය හැකි අතර එය ඔබේ {{platform}} මුරපදයට වඩා වෙනස් වේ.", - "-510908328": "ගනුදෙනු ආරම්භ කිරීමට, ඔබේ Deriv ගිණුමෙන් මෙම ගිණුමට <0 />මුදල් මාරු කරන්න<1 />.", + "-267598687": "සුභ පැතුම්, ඔබ ඔබේ <0/>{{category}} {{platform}} {{type}} ගිණුම සාර්ථකව නිර්මාණය කර ඇත. ගනුදෙනු ආරම්භ කිරීමට, ඔබේ Deriv ගිණුමෙන් මෙම ගිණුමට <1 />අරමුදල් මාරු <2 />කරන්න.", + "-1475660820": "ඔබේ Deriv MT5 {{type}} ගිණුම සූදානම්. ", + "-1710177700": "ඔබේ ආදර්ශන {{type}} ගිණුම සූදානම්.", "-1184248732": "සුභ පැතුම්, ඔබ ඔබේ <0/>{{category}} {{platform}} {{type}} ගිණුම සාර්ථකව නිර්මාණය කර ඇත. ", "-1928229820": "Deriv X ආයෝජක මුරපදය නැවත සකසන්න", "-1969916895": "ඔබේ මුරපදයේ කැපිටල් සහ සිම්පල් අකුරු සහ අවම වශයෙන් එක් අංකයක් සහ විශේෂ අක්ෂර ( _ @ ? ! / # ) ඇතුළත් විය යුතු අතර, අක්ෂර 8-16 ක් අඩංගු විය යුතුය.", diff --git a/packages/translations/src/translations/sw.json b/packages/translations/src/translations/sw.json index fe2347855c70..31e4ccf05c1b 100644 --- a/packages/translations/src/translations/sw.json +++ b/packages/translations/src/translations/sw.json @@ -304,6 +304,7 @@ "328539132": "Inarudia maelekezo ya ndani kwa idadi maalum ya muda", "329353047": "Malta Financial Service Authority (MFSA) (leseni na. IS/70156)", "329404045": "<0>Nenda kwenye akaunti yako halisi <1> ili kuunda akaunti ya {{platform}} {{account_title}}.", + "330384187": "Wezesha biashara na uhamisho wako wa kwanza.", "333456603": "Ukomo wa kutoa pesa", "333807745": "Bonyeza kwenye kizuizi unachotaka kuondoa na bofya Futa kwenye kibodi yako.", "334942497": "Muda wa ununuzi", @@ -581,7 +582,6 @@ "632897893": "Ikiwa yoyote kati ya yaliyo hapo juu yanatumika kwako, chagua <0>Ndio. Vinginevyo, chagua <0>Hapana.", "634219491": "Hujatoa nambari yako ya utambulisho wa kodi. Taarifa hii ni muhimu kwa mahitaji ya kisheria na udhibiti. Tafadhali nenda kwenye <0>Taarifa binafsi katika mipangilio ya akaunti yako, na ujaze nambari yako ya hivi karibuni ya utambulisho wa kodi.", "634274250": "Ni muda gani kila biashara huchukua kumalizika.", - "636219153": "Ili kuanza biashara, <0/>hamisha fedha kutoka kwenye akaunti yako ya Deriv kwenda akaunti hii.", "636219628": "<0>c. Ikiwa hakuna fursa ya utatuzi inayoweza kupatikana, malalamiko yataendea kwenye awamu ya uamuzi ili kushughulikiwa na DRC.", "636427296": "Unahitaji msaada na maelezo ya ushuru? Tujulishe kupitia mazungum <0>zo ya moja kwa moja.", "636579615": "Idadi ya uniti zinazoongezwa kwenye biashara inayofuata baada ya biashara iliyopoteza. Uniti moja ni sawa na kiasi cha dau la awali.", @@ -1160,7 +1160,6 @@ "1199281499": "Orodha ya Tarakimu za Mwisho", "1201533528": "Mikataba uliyoshinda", "1201773643": "nambari ya kirumi", - "1202494002": "Pata data ya wakati halisi, zana za hali ya juu za chati, na maoni inayoweza kubadilishwa.", "1203297580": "Kizuizi hiki hutuma ujumbe kwenye kituo cha Telegram.", "1203380736": "Mkakati wa D'Alembert una hatari ndogo kuliko Martingale, lakini bado unaweza kuamua ni muda gani fedha zako zitadumu na mkakati huu kabla ya kufanya biashara. Tumia tu fomula hii.", "1204223111": "Katika mfano huu, bei za ufunguzi kutoka kwenye orodha ya candles hupewa kigezo kinachoitwa “candle_list”.", @@ -2243,7 +2242,7 @@ "-1541554430": "Ifuatayo", "-307865807": "Onyo la Kustahimili Hatari", "-690100729": "Ndio, ninaelewa hatari.", - "-2010628430": "CFD na vyombo vingine vya kifedha huja na hatari kubwa ya kupoteza pesa haraka kutokana na mkopo. Unapaswa kuzingatia ikiwa unaelewa jinsi CFD na vyombo vingine vya kifedha zinavyofanya kazi na ikiwa unaweza kumudu kuchukua hatari kubwa ya kupoteza pesa zako. <0/> <0/> Ili kuendelea, lazima uthibitishe kuwa unaelewa mtaji wako uko hatarini.", + "-2010628430": "CFD na vyombo vingine vya kifedha huja na hatari kubwa ya kupoteza pesa haraka kutokana na mkopo. Unapaswa kuzingatia ikiwa unaelewa jinsi CFD na vyombo vingine vya kifedha zinavyofanya kazi na ikiwa unaweza kumudu kuchukua hatari kubwa ya kupoteza pesa zako. <0/><0/> Ili kuendelea, lazima uthibitishe kuwa unaelewa mtaji wako uko hatarini.", "-863770104": "Tafadhali kumbuka kuwa kwa kubonyeza 'SAWA', unaweza kuwa unajifichua kwenye hatari. Huenda usiwe na maarifa au uzoefu wa kutathmini vizuri au kupunguza hatari hizi, ambazo zinaweza kuwa muhimu, ikiwa ni pamoja na hatari ya kupoteza jumla ya kiasi chote ulichowekeza.", "-684271315": "SAWA", "-1292808093": "Uzoefu wa biashara", @@ -2638,42 +2637,42 @@ "-1036903080": "Tunakumbana na tatizo kidogo katika kuchakata ombi lako. Tafadhali jaribu tena baadae.", "-331060101": "Usanidi wa Passkey ulishindwa", "-713875531": "Washa Bluetooth.", - "-80717068": "Programu ambazo umeunganisha na nenosiri <0>lako la Deriv:", - "-340060402": "Nenosiri lako la Deriv X ni kwa kuingia kwenye akaunti zako za Deriv X kwenye wavuti na programu za rununu.", - "-619126443": "Tumia nen <0>osiri la Deriv kuingia kwenye {{brand_website_name}} na {{platform_name_trader}}.", - "-623760979": "Tumia nen <0>osiri la Deriv kuingia kwenye {{brand_website_name}}, {{platform_name_trader}} na {{platform_name_go}}.", - "-459147994": "Tumia nen <0>osiri la Deriv kuingia kwenye {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, {{platform_name_dbot}} na {{platform_name_ctrader}}.", - "-1884902844": "Max. kikomo cha amana kwa siku", - "-545085253": "Max. kikomo cha amana zaidi ya siku 7", - "-1031006762": "Max. kikomo cha amana zaidi ya siku 30", - "-1116871438": "Max. jumla ya hasara zaidi ya siku 30", - "-2134714205": "Kikomo cha muda kwa kila kikao", + "-80717068": "Apps ambazo umeunganisha na <0>nenosiri lako la Deriv:", + "-340060402": "Nenosiri lako la Deriv X ni kwa kuingia kwenye akaunti zako za Deriv X kwenye wavuti na app za simu.", + "-619126443": "Tumia <0>nenosiri la Deriv ili kuingia kwenye {{brand_website_name}} na {{platform_name_trader}}.", + "-623760979": "Tumia <0>nenosiri la Deriv ili kuingia kwenye {{brand_website_name}}, {{platform_name_trader}} na {{platform_name_go}}.", + "-459147994": "Tumia <0>nenosiri la Deriv ili kuingia kwenye {{brand_website_name}}, {{platform_name_go}}, {{platform_name_trader}}, {{platform_name_smarttrader}}, {{platform_name_dbot}} na {{platform_name_ctrader}}.", + "-1884902844": "Max. kikomo cha kuweka pesa kwa siku", + "-545085253": "Max. kikomo cha kuweka pesa zaidi ya siku 7", + "-1031006762": "Max. kikomo cha kuweka pesa zaidi ya siku 30", + "-1116871438": "Max. jumla ya hasara ya zaidi ya siku 30", + "-2134714205": "Kikomo cha muda kwa kila kipindi", "-1884271702": "Muda mpaka", "-1265825026": "Muda wa muda lazima uwe mkubwa kuliko wakati wa sasa.", "-1332882202": "Muda wa muda hauwezi kuwa zaidi ya wiki 6.", - "-1635977118": "Muda wa kuondoa hauwezi kuwa chini ya miezi 6.", + "-1635977118": "Muda wa kuondolewa hauwezi kuwa chini ya miezi 6.", "-2131200819": "Zima", "-200487676": "Wezesha", - "-1840392236": "Hiyo sio nambari sahihi. Tafadhali jaribu tena.", - "-2067796458": "Nambari ya uthibitish", - "-790444493": "Kulinda akaunti yako na 2FA. Kila wakati unapoingia kwenye akaunti yako, utahitaji kuingiza nenosiri lako na nambari ya uthibitishaji uliozalishwa na programu ya 2FA kwenye smartphone yako.", - "-752939584": "Jinsi ya kuanzisha 2FA kwa akaunti yako ya Deriv", - "-90649785": "Bonyeza hapa kunakili ufunguo", - "-206376148": "Kitufe kinakiliwa!", + "-1840392236": "Huo sio msimbo sahihi. Tafadhali jaribu tena.", + "-2067796458": "Msimbo wa uthibitishaji", + "-790444493": "Linda akaunti yako na 2FA. Kila wakati unapoingia kwenye akaunti yako, utahitaji kuingiza nenosiri lako na msimbo wa uthibitishaji uliozalishwa na app ya 2FA kwenye smartphone yako.", + "-752939584": "Jinsi ya kusanidi 2FA kwa akaunti yako ya Deriv", + "-90649785": "Bonyeza hapa ili kunakili ufunguo", + "-206376148": "Ufunguo umenakiliwa!", "-368010540": "Umewezesha 2FA kwa akaunti yako ya Deriv.", - "-403552929": "Ili kuzima 2FA, tafadhali ingiza nambari ya uthibitishaji wa tarakimu sita unaozalishwa na programu yako ya 2FA hapa chini:", - "-890084320": "Hifadhi na kuwasilisha", - "-30772747": "Maelezo yako ya kibinafsi yamehifadhiwa kwa ufanisi", - "-2021135479": "Eneo hili linahitajika.", + "-403552929": "Ili kuzima 2FA, tafadhali ingiza msimbo wa uthibitishaji wa tarakimu sita zinazozalishwa na app yako ya 2FA hapa chini:", + "-890084320": "Hifadhi na wasilisha", + "-30772747": "Taarifa zako binafsi zimehifadhiwa kikamilifu.", + "-2021135479": "Eneo hili linahitajika kujazwa.", "-1002044401": "Chagua hati yako*", - "-1272489896": "Tafadhali kamilisha uwanja huu.", - "-1107320163": "Biashara yako kiotomatiki, hakuna nambari inayohitajika.", - "-829643221": "Jukwaa la biashara ya viongezeka.", + "-1272489896": "Tafadhali kamilisha kujaza eneo hili.", + "-1107320163": "Biashara ya kiotomatiki. Hakuna msimbo unaohitajika.", + "-829643221": "Jukwaa la biashara ya multipliers.", "-2115275974": "CFDs", - "-1585707873": "Tume ya Fedha", - "-199154602": "Tume ya Huduma za Fedha ya Vanu", - "-191165775": "Mamlaka ya Huduma za Fedha ya Malta", - "-194969520": "Kampuni ya mwenzake", + "-1585707873": "Financial Commission", + "-199154602": "Vanuatu Financial Service Commission", + "-191165775": "Malta Financial Service Authority", + "-194969520": "Kampuni mwenza", "-1089385344": "Deriv (SVG) LLC", "-2019617323": "Deriv (BVI) Ltd", "-112814932": "Deriv (FX) Ltd", @@ -2713,13 +2712,13 @@ "-1699909965": "au ", "-2127865736": "Akaunti yako ya {{from_account}} itahifadhiwa baada ya siku 30 za kutokuwa na shughuli. Bado unaweza kufikia historia yako ya biashara hadi akaunti itakapohifadhiwa.", "-417529381": "Akaunti yako ya sasa ya biashara", - "-1543281897": "Uhamisho wa papo hapo kati ya Wallets na akaunti", - "-1415400918": "Multiple currency support", + "-1543281897": "Uhamishaji pesa wa papo hapo kati ya Wallets na akaunti za biashara", + "-1415400918": "Huweza kutumika kwa sarafu nyingi tofauti", "-1712363879": "Kwa nini Wallets", - "-348452343": "Nafasi zako za biashara wazi hazitaathiriwa wakati tunaweka Wallets zako.", + "-348452343": "Nafasi zako za biashara zilizo wazi hazitaathiriwa wakati tunapoweka wallets zako.", "-2055865877": "Kanuni isiyo ya EU", "-643108528": "Kanuni isiyo ya EU na EU", - "-1002556560": "Hatuwezi kukamilisha na uboreshaji wa Wallet. Tafadhali jaribu tena baadaye au wasiliana nasi kupitia mazungumzo ya moja kwa moja.", + "-1002556560": "Hatujaweza kukamilisha uboreshaji wa Wallet. Tafadhali jaribu tena baadae au wasiliana nasi kupitia mazungumzo mubashara.", "-2051096382": "<1>Pata malipo anuwai kwa kutabiri kwa usahihi harakati za soko na <0>chag uzi, au upate\n juu ya CFD bila kuhatarisha zaidi ya hisa yako ya awali na viongezaji.", "-1638358352": "<0>Pata upande wa CFDs bila kuhatarisha zaidi ya hisa yako ya awali na Multipliers.", "-744999940": "Akaunti ya Deriv", @@ -2746,160 +2745,160 @@ "-1443721737": "Pasheria wako umefungwa. Angalia <0>jinsi tunavyokulinda fedha z ako kabla ya kuendelea.", "-901712457": "Ufikiaji wako wa Msafiri umezimwa kwa muda kwani haujawaweka kikomo chako cha mauzo ya siku 30. Tafadhali nenda kwenye K <0>ujitolewa na weke kikomo chako cha mauzo ya siku 30.", "-166472881": "Maelezo yako <0>ya kibinaf si hayakamilika. Tafadhali nenda kwenye mipangilio ya akaunti yako na ukamilisha maelezo yako ya kibinafsi ili kuwezesha amana na uondoaji", - "-666905139": "Amana zimefungwa", - "-378858101": "Maelezo yako <0>ya kibinaf si hayakamilika. Tafadhali nenda kwenye mipangilio ya akaunti yako na ukamilishe maelezo yako ya kibinafsi ili kuwezesha", - "-1318742415": "Akaunti yako haijathibitishwa. Tafadhali wasilisha uthi <0>bitisho wako wa utam bulish <1>o na uthibitisho wa anwani ili kuthibitisha akaunti yako na ombi la kutolewa.", - "-1923809087": "Kwa bahati mbaya, unaweza tu kufanya amana. Tafadhali wasiliana nasi kupitia gumzo la <0>moja kwa moja ili kuwezesha uondoaji.", - "-172277021": "Mpesa amefungwa kwa ajili ya uondoaji", - "-1624999813": "Inaonekana kuwa huna tume za kujiondoa kwa sasa. Unaweza kuondoa mara tu unapopokea tume zako.", + "-666905139": "Uwekaji pesa umefungwa", + "-378858101": "<0>Taarifa zako binafsi hazijakamilika. Tafadhali nenda kwenye mipangilio ya akaunti yako na ukamilishe taarifa zako binafsi ili uweze kuweka pesa.", + "-1318742415": "Akaunti yako haijathibitishwa. Tafadhali wasilisha <0>uthibitisho wako wa utambulisho na <1>uthibitisho wa anwani ili kuthibitisha akaunti yako na maombi ya kutoa pesa.", + "-1923809087": "Kwa bahati mbaya, unaweza tu kuweka pesa. Tafadhali wasiliana nasi kupitia <0>mazungumzo mubashara ili kuwezesha kutoa pesa.", + "-172277021": "Keshia imefungwa kwa utoaji pesa", + "-1624999813": "Inaonekana kuwa hauna gawio za kutoa kwa sasa. Unaweza kutoa mara tu unapopokea magawio yako.", "-1077304626": "Kiasi ({{currency}})", "-1559994981": "Thamani ya takriban", - "-1272778997": "Tumekutuma barua pepe.", - "-89973258": "Tuma tena barua pepe katika {{seconds}}s", - "-1332236294": "Tafadhali thibitisha utambulisho", + "-1272778997": "Tumekutumia barua pepe.", + "-89973258": "Tuma tena barua pepe katika {{seconds}}", + "-1332236294": "Tafadhali thibitisha utambulisho wako", "-1675848843": "Hitilafu", "-283017497": "Jaribu tena", "-1294455996": "Deriv P2P haipatikani", "-1838982691": "HAIJULIKANI", - "-532693866": "Kitu kilienda vibaya. Tafadhali upya ukurasa na jaribu tena.", + "-532693866": "Kuna kitu kilienda vibaya. Tafadhali refreshi ukurasa na jaribu tena.", "-1196049878": "Mstari wa kwanza wa anwani ya nyumbani", "-1326406485": "Msimbo wa Posta/Zip", "-939625805": "Simu", - "-442575534": "Uthibitishaji wa barua pe", - "-1459042184": "Sasisha maelezo yako binafsi", - "-1603543465": "Hatuwezi kuthibitisha maelezo yako ya kibinafsi kwa sababu kuna baadhi ya habari zinazopotea.", + "-442575534": "Uthibitishaji wa barua pepe haukufaulu", + "-1459042184": "Sasisha taarifa zako binafsi", + "-1603543465": "Hatuwezi kuthibitisha taarifa zako binafsi kwa sababu kuna baadhi ya taarifa hazipo.", "-614516651": "Unahitaji msaada? <0>Wasiliana nasi.", - "-203002433": "Amana sasa", - "-720315013": "Huna fedha kwenye akaunti yako ya {{currency}}", - "-2052373215": "Tafadhali weka amana ili kutumia huduma hii.", - "-379487596": "{{selected_percentage}}% ya usawa unaopatikana ({{format_amount}} {{currency__display_code}})", + "-203002433": "Weka pesa sasa", + "-720315013": "Hauna fedha kwenye akaunti yako ya {{currency}}", + "-2052373215": "Tafadhali weka pesa ili kutumia huduma hii.", + "-379487596": "{{selected_percentage}}% ya salio linalopatikana ({{format_amount}} {{currency__display_code}})", "-1957498244": "zaidi", "-1059419768": "Vidokezo", - "-285921910": "Jifunze zaidi kuhusu <0>njia za mali po.", + "-285921910": "Jifunze zaidi kuhusu <0>njia za malipo.", "-190084602": "Muamala", "-1995606668": "Kiasi", "-2024290965": "Uthibitisho", - "-811190405": "Wakati", - "-1984478597": "Maelezo ya shughuli hii inapatikana kwenye CoinSpaid.", - "-316545835": "Tafadhali hakik <0>isha maelezo yote ni <0>sahihi kabla ya kufanya uhamisho wako.", - "-949073402": "Ninathibitisha kuwa nimethibitisha habari ya uhamisho wa mteja.", - "-1752211105": "Kuhamisha sasa", + "-811190405": "Muda", + "-1984478597": "Maelezo ya muamala huu yanapatikana kwenye CoinSpaid.", + "-316545835": "Tafadhali hakikisha <0>taarifa zote ni <0>sahihi kabla ya kufanya uhamishaji pesa wako.", + "-949073402": "Ninathibitisha kuwa nimethibitisha taarifa za uhamishaji pesa wa mteja.", + "-1752211105": "Hamisha sasa", "-1787304306": "Deriv P2P", "-174976899": "Uthibitishaji wa P2P", - "-1705887186": "Amana yako imefanikiwa.", + "-1705887186": "Umefanikiwa kuweka kikamilifu.", "-142361708": "Katika mchakato", "-1582681840": "Tumepokea ombi lako na tunasubiri uthibitisho zaidi wa blockchain.", - "-1626218538": "Umefuta ombi lako la kuondoa.", - "-1062841150": "Uondoaji wako haufanikiwa kutokana na kosa kwenye blockchain. Tafadhali <0>wasiliana nasi kupi tia mazungumzo ya moja kwa moja kwa maelezo zaidi.", + "-1626218538": "Umeghairi ombi lako la kutoa pesa.", + "-1062841150": "Utoaji wako haukufanikiwa kutokana na hitilafu kwenye blockchain. Tafadhali <0>wasiliana nasi kupitia mazungumzo mubashara kwa maelezo zaidi.", "-630780094": "Tunasubiri uthibitisho kutoka kwa blockchain.", - "-1525882769": "Uondoaji wako haufanikiwa. Tumekutuma barua pepe na habari zaidi.", - "-298601922": "Uondoaji wako umefanikiwa.", - "-922143389": "Deriv P2P haipatikani kwa sarafu hii kwa sasa.", + "-1525882769": "Utoaji wako haukufanikiwa. Tumekutumia barua pepe kwa maelezo zaidi.", + "-298601922": "Umefanikiwa kutoa kikamilifu.", + "-922143389": "Deriv P2P haipatikani katika sarafu hii kwa sasa.", "-1310327711": "Deriv P2P haipatikani kwa sasa katika nchi yako.", "-1463156905": "Jifunze zaidi kuhusu njia za malipo", "-972283623": "Deriv P2P-V2", - "-685073712": "Hii ndio ak aunti yako ya <0>{{currency}} {{loginid}}.", - "-1547606079": "Tunakubali sarafu zifuatazo:", - "-1517325716": "Amana kupitia njia zifuatazo za malipo:", - "-639677539": "Nunua cryptocurrency", + "-685073712": "Hii ndio akaunti yako ya <0>{{currency}} {{loginid}}.", + "-1547606079": "Tunakubali cryptocurrencies zifuatazo:", + "-1517325716": "Weka pesa kupitia njia zifuatazo za malipo:", + "-639677539": "Nunua cryptocurrencies", "-1560098002": "Nunua cryptocurrency kupitia fiat onramp", - "-541870313": "Amana kupitia mawakala wa malipo", + "-541870313": "Weka pesa kupitia mawakala wa malipo", "-197251450": "Hutaki kufanya biashara katika {{currency_code}}? Unaweza kufungua akaunti nyingine ya cryptocurrency.", "-515809216": "Tuma tu {{currency_name}} ({{currency_code}}) kwa anwani hii.", "-748636591": "Thamani ya chini ya amana ya <0>{{minimum_deposit}} {{currency}} inahitajika. Vinginevyo, ada hutumiwa.", "-1589407981": "Ili kuepuka upotezaji wa fedha:", - "-1042704302": "Hakikisha unakili anwani yako ya akaunti ya Deriv kwa usahihi kwenye Wallet wako wa crypto.", + "-1042704302": "Hakikisha umenakili anwani yako ya akaunti ya Deriv kwa usahihi kwenda wallet yako ya crypto.", "-2108344100": "Unatafuta njia ya kununua cryptocurrency? <0>Jaribu Fiat onramp.", "-598073640": "Kuhusu Tether (Ethereum)", - "-275902914": "Tether kwenye Ethereum (EuSDT)", - "-1188009792": "Tether kwenye Safu ya Omni (USDT)", + "-275902914": "Tether kwenye Ethereum (eUSDT)", + "-1188009792": "Tether kwenye Omni Layer (USDT)", "-1239329687": "Tether awali iliundwa kutumia mtandao wa bitcoin kama itifaki yake ya usafirishaji - haswa, Safu ya Omni - kuruhusu shughuli za sarafu za jadi iliyotokenizwa.", - "-314177745": "Kwa bahati mbaya, hatukuweza kupata anwani kwani seva yetu ilikuwa chini. Tafadhali bonyeza Fanya ili kupakia tena anwani au jaribu tena baadaye.", + "-314177745": "Kwa bahati mbaya, hatukuweza kupata anwani kwani seva yetu ilikuwa kwenye matengenezo. Tafadhali bonyeza Refreshi ili kupakia tena anwani au jaribu tena baadae.", "-91824739": "Amana {{currency}}", "-523804269": "{{amount}} {{currency}} kwenye {{date}}", "-494847428": "Anwani: <0>{{value}}", - "-1117977576": "<0>Uthibitisho:{{value}}", + "-1117977576": "Uthibitisho: <0>{{value}}", "-1935946851": "Tazama zaidi", - "-1744490898": "Kwa bahati mbaya, hatuwezi kupata habari kwa wakati huu. ", + "-1744490898": "Kwa bahati mbaya, hatuwezi kurejesha taarifa kwa wakati huu. ", "-338505133": "Hatutoi ada ya uhamisho kwa uhamisho kwa sarafu sawa kati ya akaunti zako za Deriv fiat na {{platform_name_mt5}} , kati ya akaunti zako za Deriv fiat na {{platform_name_ctrader}} , na kati ya akaunti zako za Deriv fiat na {{platform_name_dxtrade}} .", "-2056016338": "Hutatozwa ada ya uhamisho kwa uhamisho kwa sarafu sawa kati ya akaunti zako za Deriv fiat na {{platform_name_mt5}} .", "-599632330": "Tutatoza ada ya uhamisho wa 1% kwa uhamisho katika sarafu tofauti kati ya akaunti zako za Deriv fiat na {{platform_name_mt5}} na kati ya akaunti zako za Deriv fiat na {{platform_name_dxtrade}} .", "-1196994774": "Tutatoza ada ya uhamisho wa 2% au {{minimum_fee}} {{currency}}, yoyote iliyo juu, kwa uhamisho kati ya akaunti zako za cryptocurrency za Deriv.", - "-993556039": "Tutatoza ada ya uhamisho wa 2% au {{minimum_fee}} {{currency}}, yoyote iliyo juu, kwa uhamisho kati ya akaunti zako za cryptocurrency za Deriv na Deriv MT5 na kati ya akaunti zako za cryptocurrency za Deriv na {{platform_name_dxtrade}} .", - "-1382702462": "Tutatoza ada ya uhamisho wa 2% au {{minimum_fee}} {{currency}}, yoyote iliyo juu, kwa uhamisho kati ya akaunti zako za cryptocurrency za Deriv na Deriv MT5.", + "-993556039": "Tutatoza ada ya uhamishaji ya 2% au {{minimum_fee}} {{currency}}, yoyote iliyo juu, kwa uhamishaji kati ya akaunti zako za Deriv cryptocurrency na Deriv MT5 na kati ya akaunti zako za Deriv cryptocurrency na {{platform_name_dxtrade}}.", + "-1382702462": "Tutatoza ada ya uhamishaji ya 2% au {{minimum_fee}} {{currency}}, yoyote iliyo juu, kwa uhamishaji kati ya akaunti zako za Deriv cryptocurrency na Deriv MT5.", "-1339063554": "Unaweza kuhamisha kati ya akaunti zako za Deriv fiat, cryptocurrency, {{platform_name_mt5}}, {{platform_name_ctrader}}, na {{platform_name_dxtrade}} .", - "-1151983985": "Mipaka ya uhamisho yanaweza kutofautiana kulingana na viwango vya", - "-1747571263": "Tafadhali kumbuka kuwa baadhi ya uhamisho huenda hauwezekani.", - "-757062699": "Uhamisho unaweza kupatikana kwa sababu ya mabadiliko makubwa au maswala ya kiufundi na wakati masoko ya ubadilishaji yamefungwa.", - "-855721928": "Inahitaji uhakiki", - "-908402700": "Uthibitishaji ulit", + "-1151983985": "Ukomo wa uhamishaji unaweza kutofautiana kulingana na viwango vya ubadilishaji pesa.", + "-1747571263": "Tafadhali kumbuka kuwa baadhi ya uhamishaji pesa huenda usiwezekane.", + "-757062699": "Uhamishaji unaweza usipatikane kwa sababu ya mabadiliko makubwa au maswala ya kiufundi na wakati masoko ya ubadilishaji yamefungwa.", + "-855721928": "Inahitaji uthibitishaji", + "-908402700": "Uthibitishaji haukufaulu", "-1866405488": "Deriv cTrader akaunti", "-1344870129": "Akaunti za Deriv", - "-1109729546": "Utaweza kuhamisha fedha kati ya akaunti za MT5 na akaunti zingine mara tu anwani yako itathibitishwa.", - "-1593609508": "Uhamisha kati ya akaunti zako katika Deriv", - "-1155970854": "Umefikia uhamisho wa juu wa kila siku. Tafadhali jaribu tena kesho.", - "-464965808": "Mipaka ya uhamisho: <0 /> - <1 />", - "-553249337": "Uhamisho umefungwa", + "-1109729546": "Utaweza kuhamisha fedha kati ya akaunti za MT5 na akaunti nyingine mara tu anwani yako itapothibitishwa.", + "-1593609508": "Hamisha kati ya akaunti zako katika Deriv", + "-1155970854": "Umefikia kiwango cha juu cha uhamishaji pesa wa kila siku. Tafadhali jaribu tena kesho.", + "-464965808": "Kikomo cha uhamishaji: <0 /> - <1 />", + "-553249337": "Uhamishaji umefungwa", "-1638172550": "Ili kuwezesha huduma hii lazima ukamilishe yafuatayo:", "-1949883551": "Una akaunti moja tu", - "-1149845849": "Rudi kwenye Kituo cha Mfanyabiashara", - "-1232852916": "Tunabadilisha kwenye akaunti yako ya {{currency}} ili kutazama shughuli hiyo.", + "-1149845849": "Rudi kwenye Trader's Hub", + "-1232852916": "Tunabadilisha hadi akaunti yako ya {{currency}} ili kutazama muamala.", "-1632668764": "Ninakubali", - "-544232635": "Tafadhali nenda kwenye ukurasa wa Amana ili kutoa anwani. Kisha rudi hapa kuendelea na shughuli yako.", - "-1161069724": "Tafadhali nakili anwani ya crypto unayoona hapa chini. Utahitaji kuweka cryptocurrency yako.", - "-1388977563": "Inakiliwa!", - "-1962894999": "Anwani hii inaweza kutumika mara moja tu. Tafadhali nakili mpya kwa shughuli yako inayofuata.", - "-451858550": "Kwa kubofya 'Endelea' utaelekezwa kwa {{ service }}, mtoa huduma wa malipo wa tatu. Tafadhali kumbuka kuwa {{ website_name }} haiwajibiki kwa yaliyomo au huduma zinazotolewa na {{ service }}. Ikiwa unakutana na maswala yoyote yanayohusiana na huduma za {{ service }} , lazima uwasiliane na {{ service }} moja kwa moja.", - "-2005265642": "Fiat onramp ni huduma ya pesa ambayo hukuruhusu kubadilisha sarafu za fiat kuwa crypto ili kuongeza akaunti zako za crypto za Deriv. Imeorodheshwa hapa ni ubadilishaji wa crypto wa Utahitaji kuunda akaunti nao ili kutumia huduma zao.", + "-544232635": "Tafadhali nenda kwenye ukurasa wa Uwekaji pesa ili kutengeneza anwani. Kisha rudi hapa ili kuendelea na muamala wako.", + "-1161069724": "Tafadhali nakili anwani ya crypto unayoona hapa chini. Utaihitaji kuweka cryptocurrency yako.", + "-1388977563": "Imenakiliwa!", + "-1962894999": "Anwani hii inaweza kutumika mara moja tu. Tafadhali nakili mpya kwa muamala wako unaofuata.", + "-451858550": "Kwa kubofya 'Endelea' utaelekezwa kwa {{ service }}, mtoa huduma mwingine wa malipo. Tafadhali kumbuka kuwa {{ website_name }} haiwajibiki kwa maudhui au huduma zinazotolewa na {{ service }}. Ikiwa unakutana na maswala yoyote yanayohusiana na huduma za {{ service }} , lazima uwasiliane na {{ service }} moja kwa moja.", + "-2005265642": "Fiat onramp ni huduma ya cashier ambayo hukuruhusu kubadilisha sarafu za fiat kuwa crypto ili kuongeza kwenye akaunti zako za crypto za Deriv. Waliorodheshwa hapa ni wahusika wengine wa ubadilishaji wa crypto. Utahitaji kuunda akaunti nao ili kutumia huduma zao.", "-1593063457": "Chagua kituo cha malipo", - "-1309258714": "Kutoka kwa nambari ya akaunti", - "-1247676678": "Kwa nambari ya akaunti", - "-816476007": "Jina la mmiliki akaunti", + "-1309258714": "Kutoka akaunti namba", + "-1247676678": "Kwenda akaunti namba", + "-816476007": "Jina la mmiliki wa akaunti", "-344403983": "Maelezo", - "-922432739": "Tafadhali ingiza kitambulisho halali cha kuingia mteja", - "-1024241603": "Usawa wa kutosha.", - "-1979554765": "Tafadhali ingiza maelezo halali.", + "-922432739": "Tafadhali ingiza Kitambulisho halali cha kuingia kama mteja.", + "-1024241603": "Salio halitoshi.", + "-1979554765": "Tafadhali weka maelezo sahihi.", "-1254233806": "Umehamisha", - "-953082600": "Njia zingine za malipo hazijaorodheshwa hapa lakini mawakala wa malipo bado wanaweza kuziwatoa. Ikiwa huwezi kupata njia unayopenda, wasiliana na mawakala wa malipo moja kwa moja ili kuangalia zaidi.", + "-953082600": "Njia nyingine za malipo hazijaorodheshwa hapa lakini mawakala wa malipo bado wanaweza kuwa wanazitoa. Ikiwa huwezi kupata njia unayopenda, wasiliana na mawakala wa malipo moja kwa moja ili kuangalia zaidi.", "-1491457729": "Njia zote za malipo", - "-142563298": "Wasiliana na wakala uliopendelea wa malipo kwa maagizo ya malipo na uweke amana yako.", + "-142563298": "Wasiliana na wakala unayempendelea wa malipo kwa maelekezo ya malipo na uweke pesa yako.", "-352134412": "Kikomo cha kuhamisha", - "-1023961762": "Tume juu ya amana", - "-552873274": "Tume ya kuondoa", - "-880645086": "Kiasi cha uondoaji", - "-118683067": "Mipaka ya uondoaji: <0 /> - <1 />", - "-1125090734": "Ilani muhimu ya kupokea fedha zako", - "-1924707324": "Angalia shughuli", - "-1474202916": "Fanya uondoaji mpya", + "-1023961762": "Gawio kwa uwekaji pesa", + "-552873274": "Gawio kwa utoaji pesa", + "-880645086": "Kiasi cha utoaji", + "-118683067": "Ukomo wa utoaji: <0 /> - <1 />", + "-1125090734": "Notisi muhimu ya kupokea fedha zako", + "-1924707324": "Tazama muamala", + "-1474202916": "Fanya utoaji mpya", "-511423158": "Ingiza nambari ya akaunti ya wakala wa malipo", - "-2059278156": "Kumbuka: {{website_name}} haitoi ada yoyote ya uhamisho.", - "-1201279468": "Ili kuondoa fedha zako, tafadhali chagua njia sawa ya malipo uliyotumia kufanya amana zako.", + "-2059278156": "Kumbuka: {{website_name}} haitozi ada yoyote ya uhamishaji pesa.", + "-1201279468": "Ili kutoa fedha zako, tafadhali chagua njia ya malipo ambayo ni sawa na ile uliyotumia kuweka pesa zako.", "-2004264970": "Anwani yako ya Wallet inapaswa kuwa na herufi 25 hadi 64.", - "-1707299138": "Anwani yako ya Wallet wa {{currency_symbol}}", - "-38063175": "{{account_text}} Wallet", - "-705272444": "Pakia ushahidi wa utambulisho ili kuthibitisha utambulisho", - "-130833284": "Tafadhali kumbuka kuwa mipaka yako ya juu na ya chini ya kuondoa hayajawekwa. Wanabadilika kwa sababu ya ugonjwa mkubwa wa cryptocurrency.", - "-1531269493": "Tutakutuma barua pepe mara tu shughuli yako itakapokusindika.", + "-1707299138": "Anwani yako ya Wallet ya {{currency_symbol}}", + "-38063175": "{{account_text}} wallet", + "-705272444": "Pakia uthibitisho wa utambulisho ili kuthibitisha utambulisho", + "-130833284": "Tafadhali kumbuka kuwa ukomo wako wa juu na wa chini wa utoaji unaweza kubadilika. Unabadilika kwa sababu ya mabadiliko mkubwa ya cryptocurrency.", + "-1531269493": "Tutakutumia barua pepe mara tu muamala wako utaposhughulikiwa.", "-1572746946": "Asia Up", "-686840306": "Asia Down", - "-2141198770": "Juu", - "-816098265": "Chini", - "-1646655742": "Kuenea", - "-668987427": "Kuenea Chini", - "-912577498": "Mechi", - "-1862940531": "Tofautiana", - "-808904691": "Ajabu", + "-2141198770": "Higher", + "-816098265": "Lower", + "-1646655742": "Spread Up", + "-668987427": "Spread Down", + "-912577498": "Matches", + "-1862940531": "Differs", + "-808904691": "Odd", "-556230215": "Ends Outside", "-1268220904": "Ends Between", "-703542574": "Up", "-1127399675": "Down", - "-768425113": "Hakuna Kugusa", + "-768425113": "No Touch", "-1163058241": "Stays Between", - "-1354485738": "Weka upya simu", - "-376148198": "Ups tu", - "-1337379177": "Nguo Juu", - "-328036042": "Tafadhali ingiza kiasi cha kuacha hasara ambayo ni kubwa kuliko hasara inayowezekana ya sasa.", - "-2127699317": "Upotezaji wa kuacha bila malipo. Kuacha hasara haiwezi kuwa zaidi ya hisa.", + "-1354485738": "Reset Call", + "-376148198": "Only Ups", + "-1337379177": "High Tick", + "-328036042": "Tafadhali ingiza kiasi cha kuzuia hasara ambacho ni kikubwa kuliko hasara inayoweza kutokea sasa.", + "-2127699317": "Uzuiaji hasara batili. Kiasi cha uzuiaji hasara hakiwezi kuwa kikubwa zaidi ya dau.", "-1428017300": "THE", "-1450728048": "YA", "-255051108": "WEWE", @@ -2911,11 +2910,11 @@ "-1800436138": "2. kwa “namba”: 1325.68", "-530632460": "Kizuizi hiki hutumiwa kuamua ikiwa bei ya soko inaendelea katika mwelekeo uliochaguliwa au la. Inakupa thamani ya “Kweli” au “Uwongo”.", "-1875717842": "Mifano:", - "-890079872": "1. Ikiwa mwelekeo uliochaguliwa ni “Panda”, na thamani ya alama ya awali ni chini ya thamani ya alama ya sasa, pato litakuwa “Kweli”. Vinginevyo, pato litakuwa kamba tupu.", - "-489739641": "2. Ikiwa mwelekeo uliochaguliwa ni “Fall”, na thamani ya alama ya awali ni zaidi ya thamani ya sasa ya alama, pato litakuwa “Kweli”. Vinginevyo, pato litakuwa kamba tupu.", + "-890079872": "1. Ikiwa mwelekeo uliochaguliwa ni “Rise”, na thamani ya tick ya awali ni ya chini zaidi ya thamani ya tick ya sasa, matokeo yatakuwa “Kweli”. Vinginevyo, matokeo itakuwa string tupu.", + "-489739641": "2. Ikiwa mwelekeo uliochaguliwa ni “Fall”, na thamani ya tick ya awali ni zaidi ya thamani ya tick ya sasa, matokeo yatakuwa “Kweli”. Vinginevyo, matokeo itakuwa string tupu.", "-2116076360": "Kuna aina 4 za ujumbe:", - "-1421941045": "2. 'Tahari' inaonyesha ujumbe kwa njano ili kuonyesha kitu ambacho kinahitaji tahadhari.", - "-277850921": "Ikiwa “Kushinda” imechaguliwa, itarudi “Kweli” ikiwa biashara yako ya mwisho ilifanikiwa. Vinginevyo, itarejea kamba tupu.", + "-1421941045": "2. 'Tahadhari' inaonyesha ujumbe wenye rangi ya njano ili kuonyesha kitu ambacho kinahitaji kuchukuliwa tahadhari.", + "-277850921": "Ikiwa “Win” imechaguliwa, itarudi “Kweli” ikiwa biashara yako ya mwisho ilifanikiwa. Vinginevyo, itarejea string tupu.", "-1918487001": "Mfano:", "-2139916657": "1. Katika mfano uliopo chini mzunguko huishwa ikiwa “x” ni “Uwongo” ingawa mara moja tu umekamilika", "-1238900333": "2. Katika mfano uliopo chini, mzunguko huelekea kwa mara inayofuata bila kutekeleza kizuizi chini ikiwa “x” ni “Uwongo”", @@ -2925,59 +2924,59 @@ "-334040831": "2. Katika mfano huu, maagizo hurudiwa maadamu thamani ya x ni kubwa kuliko au sawa na 10. Mara tu thamani ya x itapungua chini ya 10, mzunguko huishwa.", "-444267958": "Kizuizi cha “Seconds Since Epoch” inarudisha idadi ya sekunde tangu Januari 1, 1970.", "-447522129": "Unaweza kuihitaji wakati unataka kurudia vitendo baada ya muda fulani.", - "-1488259879": "Neno “mshumaa” linahusu kila bar kwenye chati ya taa. Kila mshumaa inawakilisha bei nne za soko kwa muda uliochaguliwa:", - "-2020693608": "Kila taa kwenye chati inawakilisha bei 4 za soko kwa muda uliochaguliwa:", - "-62728852": "- Bei ya wazi: bei ya ufunguzi", - "-1247744334": "- Bei ya chini: bei ya chini", - "-1386365697": "- Bei ya kufunga: bei ya kufunga", - "-1498732382": "Mshumaa nyeusi (au nyekundu) unaonyesha kuwa bei ya wazi ni ya juu kuliko bei ya karibu. Hii inawakilisha harakati za kushuka kwa bei ya soko.", + "-1488259879": "Neno “candle” linahusu kila bar kwenye candlestick chati. Kila candle inawakilisha bei nne za soko kwa muda uliochaguliwa:", + "-2020693608": "Kila candlestick kwenye chati inawakilisha bei 4 za soko kwa muda uliochaguliwa:", + "-62728852": "- Bei ya kufungua: bei ya ufunguzi", + "-1247744334": "- Bei ndogo: bei ya chini", + "-1386365697": "- Bei ya kufunga: bei ya ufungaji", + "-1498732382": "Candle nyeusi (au nyekundu) inaonyesha kuwa bei ya kufungua ni kubwa kuliko bei ya kufunga. Hii inawakilisha mwenendo wa kushuka kwa bei ya soko.", "-1871864755": "Kizuizi hiki kinakupa tarakimu ya mwisho ya thamani ya hivi karibuni ya alama ya soko lililochaguliwa. Ikiwa thamani ya hivi karibuni ya alama ni 1410.90, kizuizi hiki kitarudi 0. Ni muhimu kwa mikataba inayotegemea dijiti kama vile Even/Odd, Matches/Tofautiana, au Jua/Chini.", "-1029671512": "Ikiwa operesheni ya “OR” imechaguliwa, kizuizi kinarudisha “Kweli” ikiwa maadili moja au zote mbili zilizopewa ni “Kweli”", "-210295176": "Shughuli zinazopatikana:", - "-1385862125": "- Kuongeza", - "-983721613": "- Kupunguza", + "-1385862125": "- Kujumlisha", + "-983721613": "- Kutoa", "-854750243": "- Kuzidisha", "-1394815185": "Ikiwa namba iliyopewa ni chini kuliko mpaka wa chini wa safu, kizuizi kinarudisha thamani ya chini ya mpaka. Vivyo hivyo, ikiwa nambari iliyopewa ni kubwa kuliko mpaka wa juu, kizuizi kitarejea thamani ya juu ya mpaka. Ikiwa thamani iliyopewa iko kati ya mipaka, kizuizi kitarejea thamani iliyopewa bila kubadilika.", "-1034564248": "Katika mfano uliopo chini kizuizi kinarudisha thamani ya 10 kwani thamani iliyopewa (5) ni chini ya mpaka wa chini (10)", "-2009817572": "Kizuizi hiki hufanya shughuli zifuatazo kwa nambari fulani", "-671300479": "Shughuli zinazopatikana ni:", - "-514610724": "- Kamili", - "-1923861818": "- Nambari ya Euler (2.71) kwa nguvu ya namba fulani", + "-514610724": "- Kabisa", + "-1923861818": "- Nambari ya Euler (2.71) kwa uwezo wa nambari fulani", "-1556344549": "Hapa kuna jinsi:", - "-1061127827": "- Tembelea URL ifuatayo, hakikisha kubadilisha na ishara ya Telegram API uliyounda katika Hatua ya 1: https://api.telegram.org/bot/getUpdates", + "-1061127827": "- Tembelea URL ifuatayo, hakikisha unabadilisha na Telegram API tokeni uliyounda katika Hatua ya 1: https://api.telegram.org/bot/getUpdates", "-311389920": "Katika mfano huu, bei za wazi kutoka orodha ya mishumaa hupewa kwa tofauti inayoitwa “cl”.", "-1460794449": "Kizuizi hiki kinakupa orodha ya mishumaa ndani ya muda uliochaguliwa.", "-1634242212": "Inatumika ndani ya kizuizi cha kazi, kizuizi hiki kinarudisha thamani wakati hali maalum ni kweli.", "-2012970860": "Kizuizi hiki kinakupa habari juu ya mkataba wako wa mwisho.", "-1504783522": "Unaweza kuchagua kuona moja ya yafuatayo:", "-10612039": "- Faida: faida uliyopata", - "-555996976": "- Wakati wa kuingia: wakati wa kuanza wa mkataba", - "-1391071125": "- Wakati wa kuondoka: muda wa kumalizika mkataba", - "-1961642424": "- Thamani ya kutoka: thamani ya alama ya mwisho ya mkataba", + "-555996976": "- Muda wa kuingia: muda wa kuanza mkataba", + "-1391071125": "- Muda wa kutoka: muda wa kumalizika mkataba", + "-1961642424": "- Thamani ya kutoka: thamani ya tick ya mwisho ya mkataba", "-111312913": "- Kizuizi: thamani ya kizuizi ya mkataba (inatumika kwa aina za biashara zinazotegemea vizuizi kama vile kukaa ndani, kugusa/hakuna kugusa, nk)", - "-674283099": "- Matokeo: matokeo ya mkataba wa mwisho: “kushinda” au “hasara”", + "-674283099": "- Matokeo: matokeo ya mkataba wa mwisho: “ushindi” au “hasara”", "-704543890": "Kizuizi hiki kinakupa thamani ya mshumaa iliyochaguliwa kama vile bei ya wazi, bei ya karibu, bei ya juu, bei ya chini, na wakati wazi. Inahitaji mshumaa kama kigezo cha pembejeo.", "-482281200": "Katika mfano hapa chini, bei ya wazi imepewa kwa tofauti “op”.", "-364621012": "Kizuizi hiki kinakupa thamani maalum ya mshumaa kwa muda uliochaguliwa. Unaweza kuchagua ni thamani gani unayotaka:", "-232477769": "- Fungua: bei ya ufunguzi", "-610736310": "Tumia kizuizi hiki kuuza mkataba wako kwa bei ya soko. Kuuza mkataba wako ni hiari. Unaweza kuchagua kuuza ikiwa mwenendo wa soko haujafaa.", "-1307657508": "Kizuizi hiki kinakupa faida au hasara inayowezekana ikiwa utaamua kuuza mkataba wako. Inaweza kutumika tu ndani ya kizizi cha “Kuuza hali”.", - "-1921072225": "Katika mfano hapa chini, mkataba utauzwa tu ikiwa faida au hasara inayowezekana ni zaidi ya hisa.", - "-955397705": "SMA inaongeza bei ya soko katika orodha ya taa au mishumaa kwa vipindi kadhaa vya muda, na hugawanya jumla kwa idadi hiyo ya vipindi vya muda.", + "-1921072225": "Katika mfano hapa chini, mkataba utauzwa tu ikiwa faida au hasara inayowezekana ni zaidi ya dau.", + "-955397705": "SMA inaweka bei ya soko katika orodha ya tick au candles kwa vipindi kadhaa vya muda, na hugawanya jumla kwa idadi hiyo ya vipindi vya muda.", "-1424923010": "ambapo n ni idadi ya vipindi.", - "-1835384051": "Nini SMA inakuambia", - "-749487251": "SMA hutumika kama kiashiria cha mwenendo huo. Ikiwa SMA inaonyesha basi bei ya soko inaongezeka na kinyume chake. Kadiri idadi kubwa zaidi ya kipindi, mstari wa SMA ni laini zaidi.", + "-1835384051": "SMA inakuambia nini", + "-749487251": "SMA hutumika kama kiashiria cha mwenendo. Ikiwa SMA inaonyesha basi bei ya soko inaongezeka na kinyume chake. Kadiri idadi inavyokuwa zaidi ya kipindi, mstari wa SMA ni laini zaidi.", "-1996062088": "Katika mfano huu, kila hatua ya mstari wa SMA ni wastani wa hesabu wa bei za karibu kwa siku 10 zilizopita.", "-1866751721": "Orodha ya pembejeo inakubali orodha ya taa au mishumaa, wakati kipindi ni kipindi cha muda maalum.", "-1097076512": "Unaweza kulinganisha maadili ya SMA zilizohesabiwa kwenye kila mendeshaji wa bot ili kutambua mwelekeo Vinginevyo, unaweza pia kutumia tofauti ya kizuizi cha SMA, kizuizi cha Simple Moving Average Array. ", "-1254849504": "Ikiwa kipindi cha 10 kinaingiwa, kizuizi cha Simple Moving Average Array kitarejea orodha ya maadili ya SMA iliyohesabiwa kulingana na kipindi cha 10.", "-1190046167": "Kizuizi hiki kinaonyesha sanduku la mazungumzo na ujumbe umeboreshwa Wakati sanduku la mazungumzo linaonyeshwa, mkakati wako umesitiwa na utaendelea tu baada ya kubonyeza “OK”.", - "-859028989": "Katika mfano huu, tarehe na wakati zitaonyeshwa kwenye sanduku la arifa la kijani.", - "-1452086215": "Katika mfano huu, mkataba wa Rise utununuliwa usiku wa usiku mnamo Agosti 1 2019.", - "-1765276625": "Bonyeza menyu ya kuzuia kuzidisha na uchague thamani ya kuzidisha unayotaka kufanya biashara nayo.", - "-1872233077": "Faida yako inayowezekana itazidishwa na thamani ya kuzidisha uliyochagua.", - "-614454953": "Ili kujifunza zaidi kuhusu viongezaji, tafadhali nenda kwenye ukurasa wa Vi <0>ongezaji.", - "-2078588404": "Chagua soko unayotaka na aina ya mali. Kwa mfano, Forex> Jozi kubwa> AUD/JPY", + "-859028989": "Katika mfano huu, tarehe na muda zitaonyeshwa kwenye sanduku cha arifa kwa rangi ya kijani.", + "-1452086215": "Katika mfano huu, mkataba wa Rise utununuliwa usiku wa mnamo Agosti 1 2019.", + "-1765276625": "Bonyeza menyu kunjuzi ya multiplier na uchague thamani ya multiplier unayotaka kufanya biashara nayo.", + "-1872233077": "Faida yako inayowezekana itazidishwa na thamani ya multiplier uliyochagua.", + "-614454953": "Ili kujifunza zaidi kuhusu multipliers, tafadhali nenda kwenye ukurasa wa <0>Multipliers.", + "-2078588404": "Chagua soko unalotaka na aina ya mali. Kwa mfano, Forex> Major pairs > AUD/JPY", "-2037446013": "2. Aina ya Biashara", "-533927844": "Chagua aina yako ya biashara unayotaka. Kwa mfano, Jua/Chini > Kupanga/Kuanguka", "-1192411640": "4. Kipindi cha mshumaa chagu", @@ -2985,19 +2984,19 @@ "-1827646586": "Kizuizi hiki hupewa thamani iliyopewa kwa togezo, na kuunda tofauti ikiwa haipo tayari.", "-254421190": "Orodha: ({{message_length}})", "-1616649196": "matokeo", - "-90107030": "Hakuna matokeo yamepatikana", - "-1373954791": "Inapaswa kuwa nambari halali", + "-90107030": "Hakuna matokeo yaliyopatikana", + "-1373954791": "Inapaswa kuwa nambari sahihi", "-1278608332": "Tafadhali ingiza nambari kati ya 0 na {{api_max_losses}}.", - "-287597204": "Ingiza mipaka ili kuzuia bot yako kufanya biashara wakati yoyote ya masharti haya yanapotimizwa.", - "-1445989611": "Inapunguza hasara zako zinazowezekana kwa siku katika majukwaa yote ya Deriv.", + "-287597204": "Ingiza kikomo ili kuzuia bot yako kufanya biashara wakati wowote masharti haya yanapotimizwa.", + "-1445989611": "Hupunguza uwezekano wa hasara zako kwa siku katika majukwaa yote ya Deriv.", "-152878438": "Idadi kubwa ya biashara ya bot yako itafanya kwa ajili ya mbio huu.", - "-1490942825": "Tumia na kukimbia", - "-2067572496": "Umesimamisha bot tu. Mikataba yoyote ya wazi inaweza kutazamwa kwenye ukur asa wa Ripoti.", + "-1490942825": "Tumia na endesha", + "-2067572496": "Umesimamisha bot. Mikataba yoyote iliyo wazi inaweza kutazamwa kwenye ukurasa wa Ripoti.", "-992003496": "Mabadiliko unayofanya hayataathiri bot yako inayoendesha.", - "-1778025545": "Umefanikiwa kuagiza bot.", + "-1778025545": "Umefanikiwa kuingiza bot kikamilifu.", "-179005984": "Hifadhi", "-610059687": "Kuchunguza mkakati wa D'Alembert katika Deriv Bot", - "-1226666341": "Mkakati wa D'Alembert unajumuisha kuongeza hisa yako baada ya biashara iliyopoteza na kuipunguza baada ya biashara iliyofanikiwa na idadi iliyoamuliwa mapema ya vitengo.", + "-1226666341": "Mkakati wa D'Alembert unajumuisha kuongeza dau lako baada ya biashara iliyopata hasara na kulipunguza baada ya biashara iliyopata faida kwa idadi iliyoamuliwa mapema ya uniti.", "-312844882": "Hisa ya awali: Kiasi ambacho uko tayari kuweka kama hisa ili kuingia kwenye biashara. Hii ndio hatua ya kuanza kwa mabadiliko yoyote katika hisa kulingana na nguvu ya mkakati unaotumiwa.", "-1173302981": "1. Anza na hisa ya awali. Katika mfano huu, tutatumia USD 1.", "-1540106116": "Vizingiti vya faida na hasara", @@ -3011,120 +3010,120 @@ "-500873566": "Kanusho:", "-344769349": "Tafadhali fahamu kwamba ingawa tunaweza kutumia takwimu zilizopunguka kwa mfano, hisa ya kiasi maalum haihakikishi kiasi halisi katika biashara zilizofanikiwa. Kwa mfano, hisa ya USD 1 sio lazima sawa na faida ya USD 1 katika biashara zilizofanikiwa.", "-818800551": "Kuchunguza mkakati wa Martingale katika Deriv Bot", - "-533490374": "Hizi ni vigezo vya biashara vinavyotumika katika Deriv Bot na mkakati wa Martingale.", - "-1507161059": "Ngazi: Viongezaji unatumika kuongeza hisa yako ikiwa unapoteza biashara. Thamani lazima iwe kubwa kuliko 1.", + "-533490374": "Hivi ni vigezo vya biashara vinavyotumika katika Deriv Bot na mkakati wa Martingale.", + "-1507161059": "Multiplier: Hutumika kuongeza dau lako ikiwa umepata hasara kwenye biashara. Thamani lazima iwe kubwa kuliko 1.", "-1333404686": "Mfano wa mkakati wa Martingale", - "-1755877136": "3. Ikiwa biashara ya kwanza inaisha kwa hasara, Deriv Bot itaongeza mara mbili hisa yako kwa biashara inayofuata hadi USD 2. Deriv Bot itaendelea kuongeza hisa mara mbili baada ya kila biashara kupoteza.", + "-1755877136": "3. Ikiwa biashara ya kwanza inaisha kwa hasara, Deriv Bot itaongeza mara mbili dau lako kwa biashara inayofuata hadi USD 2. Deriv Bot itaendelea kuongeza dau mara mbili baada ya kila biashara iliyo toa hasara.", "-1297651002": "Ikiwa uko karibu kuanza biashara na haujaanzisha Hisa ya Juu kama sehemu ya mkakati wako wa usimamizi wa hatari, unaweza kuamua ni muda gani fedha zako zitadumu kwa kutumia mkakati wa Martingale. Tumia tu fomula hii.", - "-46865201": "Fomu ya Martingale 1", - "-116397598": "m ni waziaji wa Martingale.", + "-46865201": "Martingale fomula ya 1", + "-116397598": "m ni Martingale multiplier.", "-658161609": "Idadi ya raundi, R ≈ 9.965", - "-288082521": "Hii inamaanisha kuwa baada ya raundi 10 za hasara mfululizo, mfanyabiashara huyu atapoteza USD 1023 ambayo inazidi kizingiti cha hasara cha USD 1000, na kuacha bot.", - "-770387160": "Mkakati wa Martingale katika biashara unaweza kutoa faida kubwa lakini pia unakuja na hatari kubwa. Ukiwa na mkakati uliochaguliwa, Deriv Bot hutoa biashara ya kiotomatiki na hatua za usimamizi wa hatari kama kuweka hisa ya awali, ukubwa wa hisa, hisa kubwa, kizingiti cha faida Ni muhimu kwa wafanyabiashara kutathmini uvumilivu wao wa hatari, kufanya mazoezi katika akaunti ya onyesho, na kuelewa mkakati kabla ya kufanya biashara na pesa halisi.", - "-1901073152": "Hizi ni vigezo vya biashara vinavyotumika kwa mkakati wa Grind wa Oscar katika Deriv Bot.", - "-1575153036": "Mfano wa mkakati wa Grind wa Oscar", - "-732418614": "Jedwali hapo juu linaonyesha kanuni hii kwa kuonyesha kwamba wakati biashara iliyofanikiwa inatokea na kufikia lengo la kitengo kimoja cha faida inayowezekana ambacho ni USD 1 katika mfano huu, kikao kinaishia. Ikiwa biashara inaendelea, kikao kipya kitaanza.", - "-106266344": "Kanuni ya 3: Hisa hurekebisha ukubwa wa pengo kati ya hasara ya sasa na faida inayolengwa kwa kikao", - "-492908094": "Katika raundi ya 7, hisa hiyo inarekebishwa chini kutoka USD 2 hadi USD 1, ili kufikia faida lengwa ya USD 1.", - "-90079299": "Ukiwa na Deriv Bot, wafanyabiashara wanaweza kuweka vizuizi vya faida na hasara ili kupata faida inayowezekana na kupunguza hasara zinazowe Hii inamaanisha kuwa bot ya biashara itaacha kiatomati wakati kizingiti cha faida au hasara kitafikwa. Hii ni aina ya usimamizi wa hatari ambayo inaweza kuongeza biashara zilizofanikiwa wakati wa kupunguza athari za hasara. Kwa mfano, ikiwa mfanyabiashara anaweka kizingiti cha faida kwa USD 100 na mkakati unazidi USD 100 ya faida kutoka kwa biashara zote, basi bot itaacha kuendesha.", - "-1549673884": "Mkakati wa Grind wa Oscar hutoa njia yenye nidhamu kwa faida ya kuongezeka kupitia maendeleo ya hisa ya kimfumo. Inapojumuishwa kwenye Deriv Bot na usimamizi sahihi wa hatari kama vile vizuizi vya faida au hasara, inawapa wafanyabiashara mbinu yenye nguvu ya biashara ya kiotomatiki. Walakini, wafanyabiashara wanapaswa kwanza kutathmini kikamilifu uvumilivu wao wa hatari na kwanza kujaribu biashara kwenye akaunti ya onyesho ili kujua mkakati kabla ya kufanya biashara na fedha halisi.", + "-288082521": "Hii inamaanisha kuwa baada ya raundi 10 za hasara mfululizo, mfanyabiashara huyu atapoteza USD 1023 ambayo inazidi kizingiti cha hasara cha USD 1000, cha kusimamisha bot.", + "-770387160": "Mkakati wa Martingale katika biashara unaweza kutoa faida kubwa lakini pia unakuja na hatari kubwa. Ukiwa na mkakati uliochaguliwa, Deriv Bot hutoa biashara ya kiotomatiki na hatua za udhibiti wa hatari kama kuweka dau la awali, ukubwa wa dau, Dau la juu, kizingiti cha faida na kizingiti cha hasara. Ni muhimu kwa wafanyabiashara kutathmini uvumilivu wao wa hatari, kufanya mazoezi katika akaunti ya demo, na kuelewa mkakati kabla ya kufanya biashara na pesa halisi.", + "-1901073152": "Hivi ni vigezo vya biashara vinavyotumika kwa mkakati wa Oscar Grind katika Deriv Bot.", + "-1575153036": "Mfano wa mkakati wa Oscar Grind", + "-732418614": "Jedwali hapo juu linaonyesha kanuni hii kwa kuonyesha kwamba wakati biashara iliyotoa faida inapotokea na kufikia lengo la uniti moja ya faida inayowezekana ambayo ni USD 1 katika mfano huu, kipindi kinaishia. Ikiwa biashara inaendelea, kipindi kipya kitaanza.", + "-106266344": "Kanuni ya 3: Dau hurekebisha ukubwa wa pengo kati ya hasara ya sasa na faida inayolengwa kwa kipindi", + "-492908094": "Katika raundi ya 7, dau hilo litashushwa chini kutoka USD 2 hadi USD 1, ili kufikia faida lengwa ya USD 1.", + "-90079299": "Ukiwa na Deriv Bot, wafanyabiashara wanaweza kuweka vizingiti vya faida na hasara ili kupata faida inayowezekana na kupunguza hasara zinazoweza kutokea. Hii inamaanisha kuwa bot ya biashara itasimama otomatiki wakati kizingiti cha faida au hasara kitapofikwa. Hii ni aina ya udhibiti wa hatari ambayo inaweza kuongeza biashara zilizofanikiwa huku ikipunguza athari za hasara. Kwa mfano, ikiwa mfanyabiashara anaweka kizingiti cha faida kuwa USD 100 na mkakati unazidi USD 100 ya faida kutoka kwa biashara zote, basi bot itaacha kuendesha.", + "-1549673884": "Mkakati wa Oscar Grind hutoa mbinu yenye nidhamu kwa faida ya nyongeza kupitia uendelezaji wa dau kwa utaratibu. Inapojumuishwa kwenye Deriv Bot na udhibiti sahihi wa hatari kama vile vizingiti vya faida au hasara, huwapa wafanyabiashara mbinu yenye nguvu ya biashara ya kiotomatiki. Hata hivyo, wafanyabiashara wanapaswa kwanza kutathmini kikamilifu uvumilivu wao wa hatari na kwanza kujaribu kufanya biashara kwenye akaunti ya demo ili kufahamu mkakati kabla ya kufanya biashara na fedha halisi.", "-655650222": "Kuchunguza mkakati wa Reverse D'Alembert katika Deriv Bot", - "-1864807973": "Mkakati wa Reverse D'Alembert unajumuisha kuongeza hisa yako baada ya biashara iliyofanikiwa na kuipunguza baada ya biashara iliyopoteza kwa idadi iliyoamuliwa mapema ya vitengo.", - "-809681645": "Hizi ni vigezo vya biashara vinavyotumika katika Deriv Bot na mkakati wa Reverse D’Alembert.", + "-1864807973": "Mkakati wa Reverse D'Alembert unajumuisha kuongeza dau lako baada ya biashara iliyofanikiwa na kulipunguza baada ya biashara iliyopata hasara kwa idadi iliyoamuliwa mapema ya uniti.", + "-809681645": "Hivi ni vigezo vya biashara vinavyotumika katika Deriv Bot na mkakati wa Reverse D’Alembert.", "-1239374257": "Mfano wa mkakati wa Reverse D'Alembert", - "-309821442": "Tafadhali fahamu kwamba ingawa tunaweza kutumia takwimu zilizopunguka kwa mfano, hisa ya kiasi maalum haihakikishi kiasi halisi katika biashara zilizofanikiwa. Kwa mfano, hisa ya USD 1 sio lazima sawa na faida ya USD 1 katika biashara zilizofanikiwa.", - "-1576691912": "Makala hii inachunguza mkakati wa Reverse Martingale uliojumuishwa katika Deriv Bot, bot ya biashara inayofaa iliyoundwa kufanya biashara ya mali kama vile forex, bidhaa, na fahirisi zinazotokana. Tutachunguza vigezo vya msingi vya mkakati huo, matumizi yake, na kutoa huduma muhimu kwa wafanyabiashara wanaotafuta kutumia bot kwa ufanisi.", + "-309821442": "Tafadhali fahamu kwamba ingawa tunaweza kutumia takwimu zilizokadiriwa kwa kilelezo, dau la kiasi maalum halihakikishi kiasi kamili katika biashara zilizofanikiwa. Kwa mfano, dau la USD 1 sio lazima liwe sawa na faida ya USD 1 katika biashara zilizofanikiwa.", + "-1576691912": "Makala hii inaelezea mkakati wa Reverse Martingale uliojumuishwa katika Deriv Bot, bot ya biashara inayotumika tofauti iliyoundwa kufanya biashara ya mali kama vile forex, bidhaa, na dira za derived Tutachunguza vigezo vya msingi vya mkakati, matumizi yake, na kutoa njia muhimu za kuchukua kwa wafanyabiashara wanaotaka kutumia bot kwa ufanisi.", "-1934849823": "Hizi ni vigezo vya biashara vinavyotumika katika Deriv Bot na mkakati wa Reverse Martingale.", - "-1021919630": "Multiplier: Multiplier unatumika kuongeza hisa yako ikiwa biashara yako inafanikiwa. Thamani lazima iwe kubwa kuliko 1.", - "-760516362": "3. Ikiwa biashara ya kwanza ni biashara iliyofanikiwa, Deriv Bot itaongeza mara mbili hisa yako kwa biashara inayofuata hadi USD 2. Deriv Bot itaendelea kuongeza hisa mara mbili baada ya kila biashara iliyofanikiwa.", + "-1021919630": "Multiplier: Multiplier hutumika kuongeza dau lako ikiwa biashara yako inafanikiwa. Thamani lazima iwe kubwa kuliko 1.", + "-760516362": "3. Ikiwa biashara ya kwanza ni biashara iliyofanikiwa, Deriv Bot itaongeza mara mbili dau lako kwa biashara inayofuata hadi USD 2. Deriv Bot itaendelea kuongeza dau mara mbili baada ya kila biashara iliyofanikiwa.", "-1410950365": "Kuchunguza mkakati wa 1-3-2-6 katika Deriv Bot", "-1175255072": "Hizi ni vigezo vya biashara vinavyotumika katika Deriv Bot na mkakati wa 1-3-2-6.", "-183884527": "Mfano wa mkakati wa 1-3-2-6", - "-275617819": "4. Walakini, ikiwa biashara yoyote inasababisha hasara, hisa yako itarejea tena kwenye hisa ya awali ya USD 1 kwa biashara inayofuata. Biashara ya tatu inasababisha hasara kwa hivyo hisa huongezeka kwa hisa ya awali ya USD 1 kwa biashara inayofuata.", - "-719846465": "5. Baada ya kufikia hisa ya awali, ikiwa biashara inayofuata bado inasababisha hasara, hisa yako itabaki kwenye hisa ya awali ya USD 1. Mkakati huu utafanya biashara kidogo kwa hisa ya awali. Rejelea biashara ya nne na ya tano.", - "-1452746011": "Mkakati wa 1-3-2-6 katika biashara unaweza kutoa faida kubwa lakini pia unakuja na hatari kubwa. Kila hisa ni huru, na mkakati hauongezi nafasi zako za biashara zilizofanikiwa kwa muda mrefu. Ikiwa unakutana na mfululizo wa hasara, mkakati unaweza kusababisha hasara kubwa. Kwa hiyo, ni muhimu kwa wafanyabiashara kutathmini uvumilivu wao wa hatari, kufanya mazoezi katika akaunti ya onyesho, kutumia vizuizi vya faida na hasara, na kuelewa kikamilifu mkakati kabla ya kushiriki katika biashara ya pesa halisi.", + "-275617819": "4. Walakini, ikiwa biashara yoyote inasababisha hasara, dau lako litarejea tena kwenye dau la awali la USD 1 kwa biashara inayofuata. Biashara ya tatu inasababisha hasara kwa hivyo dau litarejea kwa dau la awali la USD 1 kwa biashara inayofuata.", + "-719846465": "5. Baada ya kufikia dau la awali, ikiwa biashara inayofuata bado itasababisha hasara, dau lako litasalia katika dau la awali la USD 1. Mkakati huu utafanya biashara kidogo kwa dau la awali. Rejelea biashara ya nne na ya tano.", + "-1452746011": "Mkakati wa 1-3-2-6 katika biashara unaweza kutoa faida kubwa lakini pia unakuja na hatari kubwa. Kila dau linajitegemea, na mkakati hauongezi nafasi zako za biashara zilizofanikiwa kwa muda mrefu. Ikiwa unakutana na mfululizo wa hasara, mkakati unaweza kusababisha hasara kubwa. Kwa hiyo, ni muhimu kwa wafanyabiashara kutathmini uvumilivu wao wa hatari, kufanya mazoezi katika akaunti ya demo, kutumia vizingiti vya faida na hasara, na kuelewa kikamilifu mkakati kabla ya kushiriki katika biashara ya pesa halisi.", "-1016171176": "Mali", "-138833194": "Soko la msingi bot yako itafanya biashara na mkakati huu.", "-621128676": "Aina ya biashara", - "-399349239": "Bot yako itatumia aina hii ya biashara kwa kila mbio", + "-399349239": "Bot yako itatumia aina hii ya biashara kwa kila mkimbio", "-410856998": "Bot itaacha biashara ikiwa faida yako ya jumla inazidi kiasi hiki.", "-447853970": "Kizingiti cha hasara", - "-33106112": "Ukubwa uliotumiwa kuzidisha hisa baada ya biashara iliyofanikiwa kwa biashara inayofuata.", + "-33106112": "Ukubwa uliotumiwa kuzidisha dau baada ya biashara iliyofanikiwa kwa biashara inayofuata.", "-1503301801": "Thamani lazima iwe sawa au kubwa kuliko {{ min }}", - "-1596504046": "Idadi ya vitengo vya kuongezwa kwenye biashara inayofuata baada ya biashara iliyofanikiwa. Kitengo kimoja ni sawa na kiasi cha hisa ya awali.", - "-1521098535": "Hisa kubwa", - "-1448426542": "Hisa ya biashara yako inayofuata itarejeshwa kwenye hisa ya awali ikiwa itazidi thamani hii.", + "-1596504046": "Idadi ya uniti za kuongezwa kwenye biashara inayofuata baada ya biashara iliyofanikiwa. Uniti moja ni sawa na kiasi cha dau la awali.", + "-1521098535": "Kiwango cha juu cha dau", + "-1448426542": "Dau la biashara yako inayofuata litarejeshwa kwenye dau la awali ikiwa litazidi thamani hii.", "-993953307": "Utabiri wako wa tarakimu ya mwisho ya bei ya mali.", "-1305281529": "D'Alembert", "-1842451303": "Karibu kwenye Deriv Bot!", - "-1391310674": "Angalia miongozo haya na Maswali Yanayoulizwa Sana ili kujifunza zaidi juu ya kujenga bot yako:", + "-1391310674": "Angalia miongozo hii na Maswali Yanayoulizwa Sana (FAQs) ili kujifunza zaidi juu ya kujenga bot yako:", "-2066779239": "FAQs", "-280324365": "Deriv Bot ni nini?", "-155173714": "Hebu tujenge bot!", "-1919212468": "3. Unaweza pia kutafuta vitalu unavyotaka kwa kutumia upau wa utafutaji juu ya kategoria.", - "-1520558271": "Kwa habari zaidi, angalia chapisho hili la blogi juu ya misingi ya kujenga bot ya biashara.", + "-1520558271": "Kwa maelezo zaidi, angalia chapisho hili la blogu kuhusu misingi wa kujenga bot ya biashara.", "-980360663": "3. Chagua kizuizi unachotaka na kuiburuta kwenye nafasi ya kazi.", - "-1493168314": "Je! Mkakati wa haraka ni nini?", + "-1493168314": "Je, mkakati wa haraka ni nini?", "-1680391945": "Kutumia mkakati wa haraka", "-1177914473": "Ninawezaje kuhifadhi mkakati wangu?", - "-271986909": "Katika Bot Builder, bonyeza Side kwenye zana ya juu ili kupakua bot yako. Toa bot yako jina, na uchague kupakua bot yako kwenye kifaa chako au Hifadhi ya Google. Bot yako itapakuliwa kama faili ya XML.", - "-1149045595": "1. Baada ya kubonyeza Ingiza, chagua Local na bonyeza Endelea.", + "-271986909": "Katika Bot Builder, bofya Hifadhi kwenye upau wa juu ili kupakua bot yako. Ipe bot yako jina, na chagua kuipakua bot yako kwenye kifaa chako au Google Drive. Bot yako itapakuliwa kama XML faili.", + "-1149045595": "1. Baada ya kubonyeza Ingiza, chagua Mahali na bonyeza Endelea.", "-288041546": "2. Chagua faili yako ya XML na bonyeza Fungua.", "-2127548288": "3. Bot yako itapakiwa ipasavyo.", "-1311297611": "1. Baada ya kubonyeza Ingiza, chagua Google Drive na bonyeza Endelea.", "-1549564044": "Ninawezaje kuweka upya nafasi ya kazi?", - "-1127331928": "Katika Bot Builder, bonyeza Reset kwenye zana ya juu. Hii itafuta nafasi ya kazi. Tafadhali kumbuka kuwa mabadiliko yoyote yasiyohifadhiwa yatapotea.", + "-1127331928": "Katika Bot Builder, bonyeza Weka upya kwenye upau wa juu. Hii itafuta eneo la kazi. Tafadhali kumbuka kuwa mabadiliko yoyote ambayo hayaja hifadhiwa yatapotea.", "-1720444288": "Ninawezaje kudhibiti hasara zangu na Deriv Bot?", - "-1142295124": "Kuna njia nyingi ambazo za kudhibiti hasara zako na Deriv Bot. Hapa kuna mfano rahisi wa jinsi unavyoweza kutekeleza udhibiti wa hasara katika mkakati wako:", + "-1142295124": "Kuna njia nyingi za kudhibiti hasara zako kwa Deriv Bot. Hapa kuna mfano rahisi wa jinsi unavyoweza kutekeleza udhibiti wa hasara katika mkakati wako:", "-2129119462": "1. Unda vigezo vifuatazo na uziweke chini ya Running mara moja mwanzoni:", "-468926787": "Hivi ndivyo ambavyo vigezo vyako vya biashara, vibadala, na chaguzi za biashara zinapaswa kuonekana:", - "-1565344891": "Je! Ninaweza kuendesha Deriv Bot kwenye vichupo vingi kwenye kivinjari changu cha wavuti?", - "-90192474": "Ndio, unaweza. Walakini, kuna mipaka kwenye akaunti yako, kama vile idadi kubwa ya nafasi wazi na malipo ya jumla ya juu kwenye nafasi za wazi. Kwa hivyo, weka tu mipaka haya wakati wa kufungua nafasi nyingi. Unaweza kupata habari zaidi kuhusu mipaka haya katika Mipangilio > Mipaka ya akaunti.", - "-213872712": "Hapana, hatutoi sarafu za kripto kwenye Deriv Bot.", + "-1565344891": "Je, ninaweza kuendesha Deriv Bot kwenye vichupo vingi katika kivinjari changu cha wavuti?", + "-90192474": "Ndio, unaweza. Walakini, kuna ukomo kwenye akaunti yako, kama vile idadi ya juu ya nafasi za kufungua na malipo ya jumla ya juu kwenye nafasi za kufungua. Kwa hivyo, weka tu vikomo hivi akilini wakati wa kufungua nafasi nyingi. Unaweza kupata maelezo zaidi kuhusu vikomo hivi katika Mipangilio >Vikomo vya akaunti.", + "-213872712": "Hapana, hatutoi cryptocurrencies kwenye Deriv Bot.", "-2147346223": "Deriv Bot inapatikana katika nchi zipi?", - "-352345777": "Je! Ni mikakati gani maarufu zaidi kwa biashara ya kiotomatiki?", - "-552392096": "Mikakati tatu inayotumiwa sana katika biashara ya kiotomatiki ni Martingale, D'Alembert, na Oscar's Grind - unaweza kuzipata zote tayari tayari na kukukungojea katika Deriv Bot.", + "-352345777": "Je, ni mikakati gani maarufu zaidi kwa biashara ya kiotomatiki?", + "-552392096": "Mikakati mitatu inayotumiwa sana katika biashara ya kiotomatiki ni Martingale, D'Alembert, na Oscar's Grind - unaweza kuipata imetengenezwa tayari na ina kungojea katika Deriv Bot.", "-1630262763": "Kuhusu Martingale", "-413928457": "Kuhusu Oscar's Grind", "-1497015866": "Kuhusu Reverse D'Alembert", "-437005403": "Kuhusu 1-3-2-6", - "-590765322": "Kwa bahati mbaya, jukwaa hili la biashara halipatikani kwa akaunti ya EU Deriv. Tafadhali badilisha kwenye akaunti isiyo ya EU ili kuendelea na biashara.", + "-590765322": "Kwa bahati mbaya, jukwaa hili la biashara halipatikani kwa akaunti ya EU Deriv. Tafadhali nenda kwenye akaunti ya non-EU ili kuendelea na biashara.", "-2110207996": "Deriv Bot haipatikani kwa akaunti hii", - "-971295844": "Badilisha kwenye akaunti nyingine", + "-971295844": "Nenda kwenye akaunti nyingine", "-1194079833": "Deriv Bot haipatikani kwa wateja wa EU", "-746652890": "Arifa", "-824109891": "Mfumo", "-507620484": "Haijahifadhiwa", - "-764102808": "Hifadhi ya Google", - "-749186458": "Kubadilisha akaunti umezimwa wakati bot yako inaendesha. Tafadhali acha bot yako kabla ya kubadilisha akaunti.", - "-597939268": "Weka mkataba wangu", + "-764102808": "Google Drive", + "-749186458": "Kubadilisha akaunti kumezimwa wakati bot yako inaendesha. Tafadhali simamisha bot yako kabla ya kubadilisha akaunti.", + "-597939268": "Bakisha mkataba wangu", "-1322453991": "Unahitaji kuingia ili kuendesha bot.", - "-236548954": "Hitilafu ya Sasisho", + "-236548954": "Hitilafu ya Usasishaji wa Mkataba", "-1223145005": "Kiasi cha hasara: {{profit}}", "-1206212388": "Karibu tena! Ujumbe wako umerejeshwa. Unatumia akaunti yako ya {{current_currency}} .", "-1724342053": "Unatumia akaunti yako ya {{current_currency}} .", - "-555886064": "Kushinda", + "-555886064": "Imeshinda", "-529060972": "Imepoteza", - "-1062922595": "Kitambulisho cha Rejeo (kununua", - "-2068574600": "Kitambulisho cha Rejeo (kuuza)", - "-994038153": "Wakati wa Kuanza", - "-1979852400": "Sehemu ya Kuingia", + "-1062922595": "ID ya kumbukumbu (kununua)", + "-2068574600": "ID ya kumbukumbu (kuuza)", + "-994038153": "Muda wa Kuanza", + "-1979852400": "Bei ya Kuingia", "-427802309": "Faida/Hasara", - "-287223248": "Hakuna shughuli au shughuli bado.", + "-287223248": "Bado hakuna muamala au shughuli.", "-418247251": "Pakua jarida lako.", "-2123571162": "Pakua", "-984140537": "Ongeza", - "-870004399": "<0>Kunun uliwa: {{longcode}} (ID: {{transaction_id}})", - "-1211474415": "Vichungi", + "-870004399": "<0>Kununuliwa: {{longcode}} (ID: {{transaction_id}})", + "-1211474415": "Vichujio", "-186972150": "Hakuna ujumbe wa kuonyesha", - "-558594655": "Bot haiendesha", - "-478946875": "Takwimu zimesafishwa", + "-558594655": "Bot haifanyi kazi", + "-478946875": "Takwimu zimefutwa", "-999254545": "Ujumbe wote umechujwa", - "-934909826": "Mkakati wa mzigo", + "-934909826": "Pakia mkakati", "-1121028020": "au, ikiwa unapendelea...", - "-254025477": "Chagua faili ya XML kutoka kwa kifaa chako", + "-254025477": "Chagua faili ya XML kutoka kwenye kifaa chako", "-1131095838": "Tafadhali pakia faili ya XML", - "-523928088": "Unda moja au pakia moja kutoka kwenye gari lako la ndani au Hifadhi ya Google.", + "-523928088": "Unda moja au pakia moja kutoka kwenye local drive au Google Drive.", "-1684205190": "Kwa nini siwezi kuona bots zangu za hivi karibuni?", "-2050879370": "1. Ingia kutoka kwa kifaa tofauti", "-811857220": "3. Ilifuta cache ya kivinjari chako", @@ -3150,14 +3149,14 @@ "-2140412463": "Kununua bei", "-1299484872": "Akaunti", "-2004386410": "Kushinda", - "-266502731": "Muhtasari wa kina wa biashara", + "-266502731": "Muhtasari wa kina wa miamala", "-1711732508": "ID za kumbukumbu", - "-386141434": "(Kununua)", + "-386141434": "(Nunua)", "-482272687": "(Uza)", - "-1983189496": "kupe", + "-1983189496": "ticks", "-694277729": "(High)", - "-2028564707": "(Kidogo)", - "-596238067": "Mahali ya Kuingia/Kuondoka", + "-2028564707": "(Low)", + "-596238067": "Bei ya Kuingia/Kutoka", "-1823621139": "Mkakati wa Haraka", "-1782602933": "Chagua template hapa chini na weke vigezo vyako vya biashara.", "-315611205": "Mkakati", @@ -3167,38 +3166,38 @@ "-1349897832": "Usionyeshe ujumbe huu tena.", "-984512425": "Muda wa chini: {{ value }}", "-2084091453": "Thamani lazima iwe sawa au kubwa kuliko {{ value }}", - "-657364297": "Thamani lazima iwe sawa au chini ya {{ value }}", + "-657364297": "Thamani lazima iwe sawa au ndogo kuliko {{ value }}", "-1696412885": "Ingiza", "-320197558": "Panga vitalu", "-939764287": "Chati", - "-1566369363": "Kuondoa", + "-1566369363": "Ongeza ukubwa", "-1285759343": "Tafuta", - "-1291088318": "Masharti ya ununuzi", + "-1291088318": "Vigezo vya ununuzi", "-112876186": "Uchambuzi", "-1769584466": "Takwimu", - "-1133736197": "Huduma", + "-1133736197": "Matumizi", "-1682372359": "Maandishi", "-907562847": "Orodha", "-1646497683": "Mzunguko", "-251326965": "Anuwai", - "-1692205739": "Ingiza bot kutoka kwa kompyuta yako au Hifadhi ya Google, ijenge kutoka mwanzo, au anza na mkakati wa haraka.", + "-1692205739": "Ingiza bot kutoka kwa kompyuta yako au Google Drive, ijenge kutoka mwanzo, au anza na mkakati wa haraka.", "-1545070554": "Futa bot", - "-1972599670": "Bot yako itafutwa kabisa unapopiga ", + "-1972599670": "Bot yako itafutwa kabisa ukibonyeza ", "-1692956623": "Ndio, futa.", - "-573479616": "Je! Una hakika unataka kuifuta?", - "-786915692": "Umeunganishwa kwenye Hifadhi ya Google", - "-1256971627": "Ili kuagiza bot yako kutoka kwenye Hifadhi yako ya Google, utahitaji kuingia kwenye akaunti yako ya Google.", - "-1233084347": "Ili kujua jin <0>si Google Drive inashughulikia data yako, tafadhali pitia sera ya faragha ya Deriv.", + "-573479616": "Je, una uhakika unataka kuifuta?", + "-786915692": "Umeunganishwa kwenye Google Drive", + "-1256971627": "Ili kuingiza bot yako kutoka kwenye Google Drive yako, utahitaji kuingia kwenye akaunti yako ya Google.", + "-1233084347": "Ili kufahamu jinsi Google Drive hushughulikia data yako, tafadhali pitia <0>Sera ya faragha ya Deriv", "-1150107517": "Unganisha", "-1150390589": "Iliyorekebishwa", "-1393876942": "Boti zako:", - "-767342552": "Ingiza jina lako la bot, chagua kuhifadhi kwenye kompyuta yako au Hifadhi ya Google, na bonyeze ", + "-767342552": "Ingiza jina la bot yako, chagua kuhifadhi kwenye kompyuta yako au Google Drive, na bonyeza ", "-1372891985": "Hifadhi.", "-1003476709": "Hifadhi kama mkusanyiko", "-636521735": "Hifadhi mkakati", - "-1953880747": "Acha bot yangu", - "-1899230001": "Kuacha bot ya sasa kutapakia Mkakati wa Haraka uliounda tu kwenye nafasi ya kazi.", - "-2131847097": "Mikataba yoyote ya wazi inaweza kutazamwa kwenye ", + "-1953880747": "Simamisha bot yangu", + "-1899230001": "Kusimamisha bot ya sasa kutapakia Mkakati wa Haraka uliounda kwenye eneo la kazi.", + "-2131847097": "Mikataba yoyote iliyo wazi inaweza kutazamwa kwenye ", "-563774117": "Dashibodi", "-683790172": "Sasa, <0>endesha bot ili kujaribu mkakati.", "-1127164953": "Habari! Bonye <0>za An za kwa ziara ya haraka.", @@ -3245,26 +3244,26 @@ "-1190972431": "P2P-V2", "-1837059346": "Nunua/Kuuza", "-1845037007": "Ukurasa wa mtangazaji", - "-494667560": "Maagizo", + "-494667560": "Oda", "-679691613": "Matangazo yangu", - "-821418875": "mfanyabiashara", - "-679102561": "Maelezo ya Mkataba", + "-821418875": "Mfanyabiashara", + "-679102561": "Taarifa ya Mkataba", "-430118939": "Sera ya malalamiko", "-1308346982": "Derived", - "-579984289": "Demo yanayotokana", - "-1596515467": "Inatokea BVI", - "-222394569": "Inatokea Vanuatu", - "-328128497": "Fedha", - "-533935232": "BVI ya Fedha", - "-565431857": "Labuan ya kifedha", - "-659955365": "Bila kubadilishana", - "-291535132": "Demo bila kubadilishana", - "-1472945832": "SVG isiyo na kubadilishana", + "-579984289": "Demo Demo", + "-1596515467": "Derived BVI", + "-222394569": "Derived Vanuatu", + "-328128497": "Financial", + "-533935232": "Financial BVI", + "-565431857": "Financial Labuan", + "-659955365": "Swap-Free", + "-291535132": "Swap-Free Demo", + "-1472945832": "Swap-Free SVG", "-144803045": "Nambari tu na herufi hizi maalum zinaruhusiwa: {{permitted_characters}}", "-1450516268": "Barua tu, nambari, nafasi, kipindi, kipindi, na apostrophe zinaruhusiwa.", - "-1966032552": "Urefu wa ishara unapaswa kuwa 8.", + "-1966032552": "Urefu wa tokeni unapaswa kuwa 8.", "-2128137611": "Inapaswa kuanza na herufi au namba, na inaweza kuwa na nyama na msingi.", - "-1590869353": "Hadi maeneo ya kufikia {{decimal_count}} zinaruhusiwa.", + "-1590869353": "Hadi nafasi {{decimal_count}} za desimali zinaruhusiwa.", "-2061307421": "Inapaswa kuwa zaidi ya {{min_value}}", "-1099941162": "Inapaswa kuwa chini ya {{max_value}}", "-1528188268": "Safu za moja kwa moja za funguo ni rahisi kudhani", @@ -3273,7 +3272,7 @@ "-235760680": "Epuka maneno na wahusika mara kwa mara", "-1568933154": "Mlolongo kama abc au 6543 ni rahisi kudhani", "-725663701": "Epuka mlolongo", - "-1450768475": "Miaka ya hivi karibuni ni rahisi kudhani", + "-1450768475": "Miaka ya hivi karibuni ni rahisi kukisia", "-1804838610": "Epuka miaka ambayo inahusishwa na wewe", "-64849469": "Tarehe mara nyingi ni rahisi kudhani", "-2006915194": "Epuka tarehe na miaka ambayo inahusishwa na wewe", @@ -3303,7 +3302,6 @@ "-1601813176": "Je! Unataka kuongeza mipaka yako ya kila siku hadi {{max_daily_buy}} {{currency}} (kununua) na {{max_daily_sell}} {{currency}} (kuuza)?", "-1751632759": "Pata uzoefu wa haraka wa biashara ya rununu na <0>programu ya{{platform_name_go}}!", "-1164554246": "Uliwasilisha nyaraka za utambulisho", - "-1090244963": "Biashara Buri na Chati ya Deriv Trader v2.0:", "-219846634": "Hebu tuthibitishe ID yako", "-529038107": "Sakinisha", "-1738575826": "Tafadhali badilisha kwenye akaunti yako halisi au unda moja ili kufikia pesa.", @@ -3419,7 +3417,7 @@ "-1016775979": "Chagua akaunti", "-1362081438": "Kuongeza akaunti zaidi za kweli kimezuiliwa kwa nchi yako.", "-1602122812": "Onyo ya Baridi ya 24", - "-1519791480": "CFD na vyombo vingine vya kifedha huja na hatari kubwa ya kupoteza pesa haraka kutokana na ufanisi. Unapaswa kuzingatia ikiwa unavyoelewa jinsi CFD na vyombo vingine vya kifedha zinavyofanya kazi na ikiwa unaweza kumudu kuchukua hatari ya kupoteza pesa zako. <0/> <0/>\n Kwa kuwa umekataa onyo letu la awali, utahitaji kusubiri masaa 24 kabla ya kuendelea zaidi.", + "-1519791480": "CFD na vyombo vingine vya kifedha huja na hatari kubwa ya kupoteza pesa haraka kutokana na mkopo. Unapaswa kuzingatia ikiwa unaelewa jinsi CFD na vyombo vingine vya kifedha zinavyofanya kazi na ikiwa unaweza kumudu kuchukua hatari kubwa ya kupoteza pesa zako. \n<0/><0/> Kwa kuwa umekataa onyo letu la awali, utahitaji kusubiri masaa 24 kabla ya kuendelea zaidi.", "-1010875436": "CFD na vyombo vingine vya kifedha huja na hatari kubwa ya kupoteza pesa haraka kutokana na ufanisi. Unapaswa kuzingatia ikiwa unavyoelewa jinsi CFD na vyombo vingine vya kifedha zinavyofanya kazi na ikiwa unaweza kumudu kuchukua hatari kubwa ya kupoteza pesa zako. <0/> <0/> Ili kuendelea, kumbuka kuwa utahitaji kusubiri masaa 24 kabla ya kuendelea zaidi.", "-1725418054": "Kwa kubonyeza 'Kubali' na kuendelea na kufungua akaunti, unapaswa kutambua kuwa unaweza kujifichua kwa hatari. Hatari hizi, ambazo zinaweza kuwa muhimu, ni pamoja na hatari ya kupoteza jumla iliyowekezwa, na huenda usiwe na maarifa na uzoefu wa kutathmini vizuri au kuzipunguza.", "-1369294608": "Tayari umejisajili?", @@ -3581,7 +3579,9 @@ "-184453418": "Ingiza nenosiri lako la {{platform}}", "-393388362": "Tunakagua nyaraka zako. Hii inapaswa kuchukua siku 1 hadi 3.", "-2057918502": "Kidokezo: Labda umeingiza nenosiri lako la Deriv, ambayo ni tofauti na nenosiri lako la {{platform}} .", - "-510908328": "Ili kuanza biashara, hamisha <0 />fedha kutoka <1 />kwa akaunti yako ya Deriv kwenye akaunti hii.", + "-267598687": "Hongera, umefanikiwa kuunda ak <0/>{{category}} {{platform}} {{type}}. Ili kuanza biashara, <1 />hamisha fedha <2 /> kutoka kwa akaunti yako ya Deriv kwenye akaunti hii.", + "-1475660820": "Akaunti yako ya Deriv MT5 {{type}} iko tayari. ", + "-1710177700": "Akaunti yako ya demo {{type}} iko tayari.", "-1184248732": "Hongera, umefanikiwa kuunda ak <0/>{{category}} {{platform}} {{type}}. ", "-1928229820": "Rudisha nenosiri la mwekezaji wa Deriv X", "-1969916895": "Nenosiri lako lazima iwe na kati ya herufi 8-16 ambazo zinajumuisha herufi kubwa na ndogo, na angalau nambari moja na herufi maalum ( _ @ ? ! / # ).", @@ -3709,7 +3709,7 @@ "-1336860323": "Ukichagua <0>\"Down\", utapata malipo ikiwa bei ya hapo haitaongezeka juu ya kizuizi.", "-1547935605": "Malipo yako ni sawa na mali <0>po kwa kila pointi iliyoongezwa na tofauti kati ya bei ya <0>mwisho na kiz uizi. Utapata faida tu ikiwa malipo yako ni kubwa kuliko hisa yako ya awali.", "-1307465836": "Unaweza kuuza mkataba hadi sekunde 15 kabla ya kumalizika. Ikiwa utafanya hivyo, tutakulipa thamani ya <0>mkataba.", - "-351875097": "Idadi ya taa", + "-351875097": "Idadi ya ticks", "-729830082": "Tazama kidogo", "-1649593758": "Maelezo ya biashara", "-1382749084": "Rudi kwenye biashara", diff --git a/packages/translations/src/translations/th.json b/packages/translations/src/translations/th.json index b9fb33e1ef19..0ddb121307fd 100644 --- a/packages/translations/src/translations/th.json +++ b/packages/translations/src/translations/th.json @@ -1,17 +1,17 @@ { "1485191": "1:1000", "2082741": "หมายเลขเอกสารเพิ่มเติม", - "2091451": "Deriv Bot - คู่หูในการซื้อขายอัตโนมัติของคุณ", + "2091451": "Deriv Bot - คู่หูในการเทรดอัตโนมัติของคุณ", "3125515": "รหัสผ่าน Deriv MT5 ของคุณนั้นสําหรับเข้าใช้งานบัญชี Deriv MT5 ของคุณบนเดสก์ท็อป เว็บ และแอปบนอุปกรณ์เคลื่อนที่", "3215342": "30 วันที่ผ่านมา", "3420069": "เพื่อหลีกเลี่ยงความล่าช้า ให้ป้อน <0>ชื่อ และ <0>วันเดือนปีเกิด ของคุณให้ตรงตามที่ปรากฏในเอกสารระบุตัวตนของคุณ", "4547840": "<0>ยืนยันบัญชีของคุณเพื่อโอนเงิน <1>ยืนยันตอนนี้", - "5149403": "เรียนรู้เพิ่มเติมเกี่ยวกับประเภทการซื้อขายต่างๆ", + "5149403": "เรียนรู้เพิ่มเติมเกี่ยวกับประเภทการเทรดต่างๆ", "7100308": "ตัวเลขชั่วโมงต้องอยู่ระหว่าง 0 ถึง 23", - "9488203": "Deriv Bot เป็นเครื่องมือสร้างกลยุทธ์บนเว็บสำหรับการซื้อขายตราสารสิทธิดิจิทัล และเป็นแพลตฟอร์มที่ให้คุณสร้างบอทซื้อขายอัตโนมัติได้เองโดยใช้การลากและวาง 'บล็อก'", + "9488203": "Deriv Bot เป็นเครื่องมือสร้างกลยุทธ์บนเว็บสำหรับการเทรดตราสารสิทธิดิจิทัล และเป็นแพลตฟอร์มที่ให้คุณสร้างบอทเทรดอัตโนมัติได้เองโดยใช้การลากและวาง 'บล็อก'", "9757544": "โปรดส่งเอกสารยืนยันที่อยู่ของคุณ", "11539750": "กำหนด {{ variable }} เป็นเครื่องมือชี้วัด Relative Strength Index Array {{ dummy }}", - "11706633": "เกณฑ์การขาดทุน: บอทจะหยุดการซื้อขายหากการขาดทุนทั้งหมดของคุณนั้นเกินจำนวนนี้", + "11706633": "เกณฑ์การขาดทุน: บอทจะหยุดการเทรดหากการขาดทุนทั้งหมดของคุณนั้นเกินจำนวนนี้", "11872052": "ใช่ ฉันจะกลับมาในภายหลัง", "14365404": "คำร้องขอล้มเหลวสำหรับ: {{ message_type }} จะลองอีกครั้งใน {{ delay }} วินาที", "15377251": "จำนวนกำไร: {{profit}}", @@ -54,15 +54,15 @@ "66519591": "รหัสผ่านของผู้ลงทุน", "66610627": "เราไม่สามารถตรวจสอบเซลฟี่ของคุณได้เพราะมันไม่ชัดเจน โปรดถ่ายรูปให้ชัดเจนขึ้นแล้วลองอีกครั้ง โปรดตรวจดูให้แน่ใจด้วยว่า มีแสงเพียงพอในที่ๆ คุณอยู่และภาพทั้งใบหน้าของคุณนั้นอยู่ภายในเฟรมภาพ", "67923436": "ไม่ Deriv Bot จะหยุดทำงานเมื่อเว็บเบราว์เซอร์ของคุณถูกปิด", - "68885999": "ดำเนินการซื้อขายตามสัญญาที่กำลังทำก่อนหน้านี้ซ้ำอีกครั้งเมื่อพบข้อผิดพลาด", + "68885999": "ดำเนินการเทรดตามสัญญาที่กำลังทำก่อนหน้านี้ซ้ำอีกครั้งเมื่อพบข้อผิดพลาด", "69005593": "ตัวอย่างด้านล่างนี้เป็นการเริ่มทำการเทรดใหม่อีกครั้งหลังจากเวลา 30 วินาทีหรือมากกว่าภายหลังจากที่แท่งเทียนเริ่มทำงานไป 1 นาที", "71016232": "OMG/USD", "71232823": "จัดการเงินทุน", "71445658": "เปิด", - "71563326": "บริการชำระเงินที่แปลงสกุลเงินตรารัฐบาลเป็นสกุลเงินดิจิทัลอย่างรวดเร็วและปลอดภัยโดยคุณสามารถฝากเงินดิจิทัลได้จากทุกที่ในโลกโดยใช้บัตรเครดิต/บัตรเดบิตและการโอนเงินผ่านธนาคารของคุณ", + "71563326": "บริการชำระเงินที่แปลงสกุลเงินตรารัฐบาลเป็นคริปโตเคอเรนซี่อย่างรวดเร็วและปลอดภัยโดยคุณสามารถฝากเงินดิจิทัลได้จากทุกที่ในโลกโดยใช้บัตรเครดิต/บัตรเดบิตและการโอนเงินผ่านธนาคารของคุณ", "71853457": "$100,001 - $500,000", "72500774": "โปรดระบุถิ่นที่อยู่เพื่อการรัษฎากร", - "73086872": "คุณได้กันตนเองออกจากการซื้อขาย", + "73086872": "คุณได้กันตนเองออกจากการเทรด", "73326375": "จุดต่ำคือจุดที่ต่ำที่สุดที่ตลาดได้ไปถึงในช่วงระยะเวลาของสัญญา", "74963864": "Under", "76635112": "เพื่อดำเนินการต่อ ให้ส่งเอกสารเหล่านี้อีกครั้ง", @@ -87,7 +87,7 @@ "100239694": "โปรดอัปโหลดด้านหน้าของบัตรจากคอมพิวเตอร์ของคุณ", "102226908": "ช่องนี้ไม่สามารถเว้นให้ว่างได้", "105871033": "อายุของคุณในเอกสารที่ให้มาดูเหมือนจะต่ำกว่า 18 ปี เราได้รับอนุญาตให้นำเสนอบริการของเราแก่ลูกค้าที่มีอายุ 18 ปีขึ้นไปเท่านั้น ดังนั้นเราจำเป็นจะต้องปิดบัญชีของคุณ หากคุณมียอดคงเหลือในบัญชี โปรดติดต่อเราทางแชทสดแล้วเราจะช่วยถอนเงินของคุณก่อนที่บัญชีของคุณจะถูกปิด", - "107537692": "ขีดจำกัดเหล่านี้ใช้ได้กับการซื้อขายตราสารสิทธิของคุณเท่านั้น ตัวอย่างเช่น <0>การขาดทุนรวมสูงสุด ซึ่งหมายถึงการขาดทุนจากการซื้อขายทั้งหมดของคุณบนแพลตฟอร์มการซื้อขายตราสารสิทธิ", + "107537692": "ขีดจำกัดเหล่านี้ใช้ได้กับการเทรดตราสารสิทธิของคุณเท่านั้น ตัวอย่างเช่น <0>การขาดทุนรวมสูงสุด ซึ่งหมายถึงการขาดทุนจากการเทรดทั้งหมดของคุณบนแพลตฟอร์มการเทรดตราสารสิทธิ", "108916570": "ระยะเวลา {{duration}} วัน", "109073671": "โปรดใช้อีวอลเล็ทที่คุณได้ใช้สำหรับการฝากเงินก่อนหน้านี้ โปรดตรวจสอบให้แน่ใจว่าอีวอลเล็ทนั้นรองรับการถอนเงินได้ โดยคุณสามารถไปดูรายการอีวอลเล็ทที่รองรับการถอนเงินได้ <0>ที่นี่", "111215238": "หลีกเลี่ยงแสงที่ส่องมาตรงๆ", @@ -109,19 +109,19 @@ "123454801": "{{withdraw_amount}} {{currency_symbol}}", "124723298": "อัปโหลดหลักฐานแสดงที่อยู่เพื่อจะยืนยันที่อยู่ของคุณ", "125354367": "ตัวอย่างของกลยุทธ์ D'Alembert's Grind", - "125443840": "6. เริ่มการซื้อขายล่าสุดใหม่อีกครั้งเนื่องจากมีข้อผิดพลาด", + "125443840": "6. เริ่มการเทรดล่าสุดใหม่อีกครั้งเนื่องจากมีข้อผิดพลาด", "125842960": "{{name}} นั้นจำเป็นต้องระบุ", "127307725": "บุคคลที่มีสถานภาพทางการเมือง (PEP) คือใครก็ตามที่ได้รับการแต่งตั้งและดำรงตำแหน่งราชการระดับสูง ทั้งนี้ผู้ใกล้ชิดและสมาชิกในครอบครัวของบุคคล PEP เองนั้นก็ถือว่าเป็น PEP เช่นกัน", - "129005644": "แนวคิดก็คือการเทรดที่ประสบความสำเร็จอาจชดเชยการขาดทุนก่อนหน้านี้ได้ อย่างไรก็ตาม สิ่งสำคัญคือต้องใช้ความระมัดระวังเนื่องจากความเสี่ยงอาจเพิ่มขึ้นได้อย่างรวดเร็วด้วยกลยุทธ์นี้ ในการใช้ Deriv Bot คุณสามารถลดความเสี่ยงโดยตั้งวงเงินทุนทรัพย์สูงสุด นี่เป็นฟีเจอร์ตัวเลือกในการจัดการความเสี่ยง สมมติว่าวงเงินทุนทรัพย์สูงสุดคือ 3 USD หากเงินทุนทรัพย์ของคุณสำหรับการซื้อขายครั้งถัดไปจะถูกกำหนดให้เกิน 3 USD มันจะถูกรีเซ็ตกลับไปเป็นค่าเงินทุนทรัพย์เริ่มต้นที่ 1 USD แต่หากคุณไม่ได้กำหนดวงเงินทุนทรัพย์สูงสุดไว้ มันก็จะเพิ่มขึ้นเกิน 3 USD", - "129137937": "คุณตัดสินใจว่าจะซื้อขายหรือเทรดเท่าไหร่และนานแค่ไหนคุณสามารถหยุดพักจากการเทรดได้ทุกเมื่อตามต้องการโดยช่วงเวลานั้นอาจอยู่ระหว่าง 6 สัปดาห์ถึง 5 ปี และเมื่อสิ้นสุดระยะเวลานั้น คุณอาจขยายเวลาพักต่อไปอีกหรือกลับไปทำการเทรดได้หลังจากช่วงเวลาคูลออฟ 24 ชั่วโมง หากคุณไม่ต้องการตั้งขีดจำกัดที่เฉพาะเจาะจงก็ให้เว้นว่างช่องนี้เอาไว้", + "129005644": "แนวคิดก็คือการเทรดที่ประสบความสำเร็จอาจชดเชยการขาดทุนก่อนหน้านี้ได้ อย่างไรก็ตาม สิ่งสำคัญคือต้องใช้ความระมัดระวังเนื่องจากความเสี่ยงอาจเพิ่มขึ้นได้อย่างรวดเร็วด้วยกลยุทธ์นี้ ในการใช้ Deriv Bot คุณสามารถลดความเสี่ยงโดยตั้งวงเงินทุนทรัพย์สูงสุด นี่เป็นฟีเจอร์ตัวเลือกในการจัดการความเสี่ยง สมมติว่าวงเงินทุนทรัพย์สูงสุดคือ 3 USD หากเงินทุนทรัพย์ของคุณสำหรับการเทรดครั้งถัดไปจะถูกกำหนดให้เกิน 3 USD มันจะถูกรีเซ็ตกลับไปเป็นค่าเงินทุนทรัพย์เริ่มต้นที่ 1 USD แต่หากคุณไม่ได้กำหนดวงเงินทุนทรัพย์สูงสุดไว้ มันก็จะเพิ่มขึ้นเกิน 3 USD", + "129137937": "คุณตัดสินใจว่าจะเทรดหรือเทรดเท่าไหร่และนานแค่ไหนคุณสามารถหยุดพักจากการเทรดได้ทุกเมื่อตามต้องการโดยช่วงเวลานั้นอาจอยู่ระหว่าง 6 สัปดาห์ถึง 5 ปี และเมื่อสิ้นสุดระยะเวลานั้น คุณอาจขยายเวลาพักต่อไปอีกหรือกลับไปทำการเทรดได้หลังจากช่วงเวลาคูลออฟ 24 ชั่วโมง หากคุณไม่ต้องการตั้งขีดจำกัดที่เฉพาะเจาะจงก็ให้เว้นว่างช่องนี้เอาไว้", "129729742": "หมายเลขประจำตัวผู้เสียภาษี*", "130567238": "จากนั้น", "132596476": "ในการให้บริการของเรา พวกเราจำเป็นต้องขอข้อมูลบางอย่างจากคุณเพื่อประเมินว่าผลิตภัณฑ์หรือบริการนั่นเหมาะสมกับคุณหรือไม่ และเพื่อประเมินว่าคุณมีประสบการณ์และความรู้เพื่อทำความเข้าใจความเสี่ยงที่เกี่ยวข้องหรือไม่<0/><0/>", - "132689841": "ทำการซื้อขายบนเว็บเทอร์มินัล", + "132689841": "ทำการเทรดบนเว็บเทอร์มินัล", "133523018": "โปรดไปที่หน้าการฝากเงินเพื่อรับที่อยู่", "133536621": "และ", "133655768": "หมายเหตุ: หากคุณต้องการเรียนรู้เพิ่มเติมเกี่ยวกับ Bot Builder คุณสามารถไปที่แท็บ <0>บทช่วยสอน", - "137589354": "เพื่อประเมินประสบการณ์การซื้อขายของคุณและดูว่าผลิตภัณฑ์ของเราเหมาะกับคุณหรือไม่ โปรดให้คำตอบที่ถูกต้องและสมบูรณ์ เนื่องจากอาจจะกระทบต่อผลการประเมินนี้", + "137589354": "เพื่อประเมินประสบการณ์การเทรดของคุณและดูว่าผลิตภัณฑ์ของเราเหมาะกับคุณหรือไม่ โปรดให้คำตอบที่ถูกต้องและสมบูรณ์ เนื่องจากอาจจะกระทบต่อผลการประเมินนี้", "138055021": "ดัชนีสังเคราะห์", "139454343": "ยืนยันขีดจำกัดของฉัน", "141265840": "ข้อมูลการโอนเงิน", @@ -162,8 +162,8 @@ "177099483": "การยืนยันที่อยู่ของคุณนั้นอยู่ระหว่างการดำเนินการ และเราได้วางข้อจำกัดบางอย่างไว้ในบัญชีของคุณซึ่งข้อจำกัดนั้นจะถูกยกเลิกต่อเมื่อที่อยู่ของคุณได้รับการยืนยันแล้ว", "178413314": "ชื่อแรกควรมีความยาวระหว่าง 2 ถึง 50 ตัวอักษร", "179083332": "วันที่", - "179737767": "แพลตฟอร์มซื้อขายตราสารสิทธิดั้งเดิมของเรา", - "181107754": "บัญชี <0>{{platform}} {{eligible_account_to_migrate}} ใหม่ของคุณพร้อมสำหรับการซื้อขายแล้ว", + "179737767": "แพลตฟอร์มเทรดตราสารสิทธิดั้งเดิมของเรา", + "181107754": "บัญชี <0>{{platform}} {{eligible_account_to_migrate}} ใหม่ของคุณพร้อมสำหรับการเทรดแล้ว", "181346014": "หมายเหตุ ", "181881956": "ประเภทสัญญา: {{ contract_type }}", "182630355": "ขอบคุณสำหรับการส่งข้อมูลของคุณมาให้เรา", @@ -196,9 +196,9 @@ "211461880": "ชื่อและนามสกุลทั่วไปนั้นสามารถคาดเดาได้ง่าย", "211487193": "หมายเลขเอกสาร (เช่น บัตรประจำตัวประชาชน หนังสือเดินทาง ใบขับขี่)", "211847965": "<0>รายละเอียดส่วนบุคคล ของคุณไม่สมบูรณ์ โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลเพื่อเปิดใช้งานการถอนเงิน", - "215975531": "บัญชีนี้ให้บริการ CFD บนแพลตฟอร์มการซื้อขายที่สามารถปรับแต่งได้อย่างเหนือชั้น", + "215975531": "บัญชีนี้ให้บริการ CFD บนแพลตฟอร์มการเทรดที่สามารถปรับแต่งได้อย่างเหนือชั้น", "216650710": "คุณกำลังใช้บัญชีทดลอง", - "217377529": "5. หากการซื้อขายครั้งถัดๆ ไปนั้นส่งผลทำกำไร เงินทุนทรัพย์สำหรับการเทรดต่อไปนี้จะลดลง 2 USD สิ่งนี้สามารถดูได้จากด้านบนที่เงินทุนทรัพย์ 3 USD ลดลงเหลือ 1 USD ดู A3", + "217377529": "5. หากการเทรดครั้งถัดๆ ไปนั้นส่งผลทำกำไร เงินทุนทรัพย์สำหรับการเทรดต่อไปนี้จะลดลง 2 USD สิ่งนี้สามารถดูได้จากด้านบนที่เงินทุนทรัพย์ 3 USD ลดลงเหลือ 1 USD ดู A3", "217403651": "เซนต์วินเซนต์และเกรนาดีนส์", "217504255": "ส่งรายละเอียดการประเมินข้อมูลทางการเงินเรียบร้อยแล้ว", "218441288": "หมายเลขบัตรประชาชน", @@ -214,9 +214,9 @@ "228521812": "ทดสอบว่าสตริงข้อความนั้นว่างเปล่าหรือไม่ แล้วแสดงข้อมูลแบบบูลีน (จริง หรือ เท็จ)", "233500222": "- สูง: ราคาสูงสุด", "235583807": "SMA เป็นตัวบ่งชี้ที่ใช้บ่อยในการวิเคราะห์ทางเทคนิค โดยมันจะคํานวณราคาตลาดเฉลี่ยในช่วงเวลาที่กําหนดและมักจะถูกนำมาใช้ในการระบุทิศทางแนวโน้มตลาดว่าจะขึ้นหรือลง ตัวอย่างเช่น หาก SMA กําลังเคลื่อนที่ขึ้นไป นั่นหมายถึงแนวโน้มของตลาดจะเพิ่มขึ้น ", - "235994721": "Forex (คู่มาตรฐาน/คู่แปลกใหม่) และสกุลเงินดิจิทัล", + "235994721": "Forex (คู่มาตรฐาน/คู่แปลกใหม่) และคริปโตเคอเรนซี่", "236642001": "บันทึก", - "238496287": "การซื้อขายเลเวเรจมีความเสี่ยงสูง ดังนั้นการใช้ฟีเจอร์ลูกเล่นเพื่อจัดการความเสี่ยง เช่น ตัวหยุดการขาดทุนจึงเป็นวิธีที่ดี ทั้งนี้ ตัวหยุดการขาดทุนช่วยให้คุณ", + "238496287": "การเทรดเลเวเรจมีความเสี่ยงสูง ดังนั้นการใช้ฟีเจอร์ลูกเล่นเพื่อจัดการความเสี่ยง เช่น ตัวหยุดการขาดทุนจึงเป็นวิธีที่ดี ทั้งนี้ ตัวหยุดการขาดทุนช่วยให้คุณ", "241546739": "โปรดเลือกชื่อบริษัทและเซิร์ฟเวอร์ของ Deriv อย่างถูกต้องเมื่อเข้าสู่ระบบ ดังที่แสดงไว้บน Trader’s Hub", "243537306": "1. ภายใต้เมนู บล็อก ให้ไปที่ เครื่องมือการใช้งาน > ตัวแปร", "243614144": "สิ่งนี้มีให้ใช้ได้เฉพาะกับลูกค้าที่มีอยู่แล้วเท่านั้น", @@ -234,16 +234,16 @@ "256031314": "ธุรกิจเงินสด", "256602726": "หากคุณปิดบัญชีของคุณ:", "258448370": "MT5", - "258912192": "การประเมินการซื้อขาย", + "258912192": "การประเมินการเทรด", "260069181": "เกิดข้อผิดพลาดขณะพยายามโหลด URL", "260086036": "วางบล็อกที่นี่เพื่อดำเนินงานต่างๆ ในทันทีที่บอทของคุณเริ่มทำงาน", "260361841": "หมายเลขประจำตัวผู้เสียภาษีต้องมีความยาวไม่เกิน 25 อักขระ", "260393332": "คุณไม่สามารถทำการฝากเงินเพิ่มเติมได้เพราะเอกสารของคุณยังอยู่ระหว่างการตรวจสอบ เราจะแจ้งให้คุณทราบทางอีเมล์ภายใน 3 วันเมื่อการยืนยันของคุณได้รับการอนุมัติ", - "261074187": "4. เมื่อบล็อกถูกโหลดลงไปในพื้นที่ทำงานแล้ว ให้ปรับแต่งพารามิเตอร์หากคุณต้องการ หรือกด เริ่มทำงาน เพื่อเริ่มการซื้อขาย", + "261074187": "4. เมื่อบล็อกถูกโหลดลงไปในพื้นที่ทำงานแล้ว ให้ปรับแต่งพารามิเตอร์หากคุณต้องการ หรือกด เริ่มทำงาน เพื่อเริ่มการเทรด", "261250441": "ลากบล็อก <0>เทรดอีกครั้ง เพื่อเติมเข้าไปในส่วน <0>ที่ต้องทำ ของบล็อกคำสั่ง <0>ทำซ้ำจนกว่า", "262095250": "หากคุณเลือกสัญญาสิทธิ์แบบ <0>\"Put\" คุณจะได้รับเงินผลตอบแทนถ้าราคาสุดท้ายนั้นต่ำกว่าราคาใช้สิทธิเมื่อสัญญาหมดอายุ มิฉะนั้นคุณจะไม่ได้รับเงินผลตอบแทน", "264976398": "3. กรณีมี 'ข้อผิดพลาด' ข้อความเตือนจะเป็นสีแดงเพื่อเน้นว่าเป็นสิ่งที่ต้องแก้ไขโดยทันที", - "265644304": "ประเภทการซื้อขาย", + "265644304": "ประเภทการเทรด", "267992618": "แพลตฟอร์มเหล่านี้ขาดคุณสมบัติหรือฟังก์ชันที่สำคัญ", "268940240": "ยอดคงเหลือของคุณ ({{format_balance}} {{currency}}) นั้นน้อยกว่าขีดการถอนขั้นต่ำในปัจจุบันที่อนุญาตคือ ({{format_min_withdraw_amount}} {{currency}}) ดังนั้น โปรดเติมเงินในบัญชีของคุณเสียก่อนที่จะดำเนินการถอนต่อไป", "269322978": "ทำการฝากเงินด้วยสกุลเงินท้องถิ่นของคุณผ่านการแลกเปลี่ยนแบบเพียร์ทูเพียร์กับเทรดเดอร์รายอื่นๆ ในประเทศของคุณ", @@ -254,16 +254,16 @@ "270712176": "ที่เรียงข้อมูลจากมากไปหาน้อย", "270780527": "คุณได้อัปโหลดเอกสารมากจนถึงขีดจำกัดแล้ว", "271637055": "ไม่สามารถดาวน์โหลดได้ในขณะที่บอทของคุณกำลังทำงานอยู่", - "272179372": "โดยทั่วไป บล็อกนี้ถูกใช้เพื่อปรับพารามิเตอร์ของการซื้อขายครั้งต่อไปของคุณ และเพื่อนำเอาตรรกะของตัวหยุดการขาดทุน/ตัวปิดเทรดเอากำไรออกมาใช้", + "272179372": "โดยทั่วไป บล็อกนี้ถูกใช้เพื่อปรับพารามิเตอร์ของการเทรดครั้งต่อไปของคุณ และเพื่อนำเอาตรรกะของตัวหยุดการขาดทุน/ตัวปิดเทรดเอากำไรออกมาใช้", "273350342": "คัดลอกและวางโทเคนลงในแอป", "273728315": "ไม่ควรเป็น 0 หรือ ว่างเปล่า", "274268819": "ดัชนี Volatility 100", "275116637": "Deriv X", - "276770377": "บัญชี MT5 ใหม่ (เดี่ยวหรือหลายบัญชี) ภายใต้เขตอำนาจศาล {{to_account}} จะถูกสร้างขึ้นสำหรับการซื้อขายใหม่", + "276770377": "บัญชี MT5 ใหม่ (เดี่ยวหรือหลายบัญชี) ภายใต้เขตอำนาจศาล {{to_account}} จะถูกสร้างขึ้นสำหรับการเทรดใหม่", "277469417": "ระยะเวลาของการใช้ระบบการกันตัวเองต้องไม่เกินห้าปี", "278684544": "รับรายการย่อยจาก # จากสุดท้าย", "280021988": "ใช้ทางลัดเหล่านี้", - "281110034": "การเทรดหรือซื้อขายที่มีประสิทธิภาพด้วยระบบ D'Alembert นั้นจำเป็นต้องคำนึงถึงความก้าวหน้าของหุ้นและการจัดการความเสี่ยงอย่างรอบคอบ เทรดเดอร์สามารถทำให้แนวทางนี้เป็นอัตโนมัติโดยใช้ Deriv Bot ในการกำหนดเกณฑ์กำไรและขาดทุนเพื่อให้แน่ใจว่าการซื้อขายมีความสมดุลและอยู่ใต้การควบคุม อย่างไรก็ตาม มันเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่พวกเขายอมรับได้ ทดสอบกลยุทธ์ในบัญชีทดลอง และปรับรูปแบบการเทรดของตนเองให้มีความสอดคล้อง ก่อนที่จะเข้าสู่การซื้อขายด้วยเงินจริง กระบวนการเพิ่มประสิทธิภาพนี้ช่วยสร้างความสมดุลระหว่างกำไรและขาดทุนที่อาจเกิดขึ้นในขณะที่ช่วยจัดการความเสี่ยงอย่างรอบคอบ", + "281110034": "การเทรดหรือเทรดที่มีประสิทธิภาพด้วยระบบ D'Alembert นั้นจำเป็นต้องคำนึงถึงความก้าวหน้าของหุ้นและการจัดการความเสี่ยงอย่างรอบคอบ เทรดเดอร์สามารถทำให้แนวทางนี้เป็นอัตโนมัติโดยใช้ Deriv Bot ในการกำหนดเกณฑ์กำไรและขาดทุนเพื่อให้แน่ใจว่าการเทรดมีความสมดุลและอยู่ใต้การควบคุม อย่างไรก็ตาม มันเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่พวกเขายอมรับได้ ทดสอบกลยุทธ์ในบัญชีทดลอง และปรับรูปแบบการเทรดของตนเองให้มีความสอดคล้อง ก่อนที่จะเข้าสู่การเทรดด้วยเงินจริง กระบวนการเพิ่มประสิทธิภาพนี้ช่วยสร้างความสมดุลระหว่างกำไรและขาดทุนที่อาจเกิดขึ้นในขณะที่ช่วยจัดการความเสี่ยงอย่างรอบคอบ", "282319001": "ตรวจสอบรูปภาพของคุณ", "282564053": "ขั้นตอนต่อไปคือเราจำเป็นต้องใช้หลักฐานแสดงที่อยู่ของคุณ", "283830551": "ที่อยู่ของคุณไม่ตรงกับในโปรไฟล์ของคุณ", @@ -271,8 +271,8 @@ "284772879": "สัญญา", "284809500": "บัญชีทดลอง Financial", "287934290": "คุณแน่ใจหรือว่าต้องการยกเลิกธุรกรรมนี้?", - "291344459": "ตารางแสดงถึงหลักการนี้ในเซสชั่นที่สอง หลังจากการซื้อขายที่ส่งผลขาดทุนในรอบที่ 4 นั้นตามมาด้วยการเทรดที่สำเร็จในรอบที่ 5 เงินทุนทรัพย์จะเพิ่มขึ้นเป็น 2 USD ในรอบที่ 6 ซึ่งสิ่งนี้สอดคล้องกับกฎของกลยุทธ์ในการเพิ่มเงินทุนทรัพย์เพียงในกรณีที่การเทรดขาดทุนนั้นตามมาด้วยการเทรดที่ประสบความสำเร็จ", - "291744889": "<0>1. พารามิเตอร์การซื้อขาย:<0>", + "291344459": "ตารางแสดงถึงหลักการนี้ในเซสชั่นที่สอง หลังจากการเทรดที่ส่งผลขาดทุนในรอบที่ 4 นั้นตามมาด้วยการเทรดที่สำเร็จในรอบที่ 5 เงินทุนทรัพย์จะเพิ่มขึ้นเป็น 2 USD ในรอบที่ 6 ซึ่งสิ่งนี้สอดคล้องกับกฎของกลยุทธ์ในการเพิ่มเงินทุนทรัพย์เพียงในกรณีที่การเทรดขาดทุนนั้นตามมาด้วยการเทรดที่ประสบความสำเร็จ", + "291744889": "<0>1. พารามิเตอร์การเทรด:<0>", "291817757": "ไปที่ชุมชน Deriv ของเราและเรียนรู้เกี่ยวกับ APIs, API tokens, วิธีการใช้ Deriv API และอื่นๆ", "292526130": "การวิเคราะห์ค่าจุด Tick และแท่งเทียน", "292589175": "นี่จะแสดงเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA โดยใช้รายการแท่งเทียนสำหรับช่วงเวลาที่ระบุโดยเฉพาะเจาะจง", @@ -288,8 +288,8 @@ "310234308": "ให้ปิดตำแหน่งการค้าทั้งหมดของคุณ", "312142140": "บันทึกขีดจํากัดใหม่หรือไม่?", "312300092": "ตัดแต่งช่องว่างภายในสตริงหรือข้อความที่กำหนด", - "313741895": "บล็อกนี้จะส่งคืนค่า “จริง” หากว่าแท่งเทียนสุดท้ายเป็นสีดำ มันสามารถถูกวางที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกรูทพารามิเตอร์การซื้อขาย", - "315306603": "คุณมีบัญชีที่ไม่มีการกำหนดสกุลเงิน โปรดเลือกสกุลเงินเพื่อจะทำการซื้อขายด้วยบัญชีนี้", + "313741895": "บล็อกนี้จะส่งคืนค่า “จริง” หากว่าแท่งเทียนสุดท้ายเป็นสีดำ มันสามารถถูกวางที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกรูทพารามิเตอร์การเทรด", + "315306603": "คุณมีบัญชีที่ไม่มีการกำหนดสกุลเงิน โปรดเลือกสกุลเงินเพื่อจะทำการเทรดด้วยบัญชีนี้", "316694303": "แท่งเทียนเป็นสีดำหรือไม่", "318865860": "ปิด", "318984807": "บล็อกนี้จะทำซ้ำตามคำสั่งที่ได้รับจากภายใน และจะทำตามจำนวนครั้งที่ระบุ", @@ -304,6 +304,7 @@ "328539132": "ทำซ้ำตามจำนวนครั้งที่ระบุในคำสั่ง", "329353047": "Malta Financial Services Authority (MFSA) (ใบอนุญาตเลขที่ IS/70156)", "329404045": "<0>สลับไปยังบัญชีจริงของคุณ<1> เพื่อสร้างบัญชี {{platform}} {{account_title}}", + "330384187": "เปิดใช้งานการเทรดด้วยการโอนเงินครั้งแรกของคุณ", "333456603": "วงเงินที่จำกัดสำหรับการถอน", "333807745": "คลิกที่บล็อกที่คุณต้องการลบและกดปุ่ม ลบ บนแป้นพิมพ์ของคุณ", "334942497": "เวลาที่ซื้อ", @@ -314,7 +315,7 @@ "340807218": "ไม่พบคําอธิบาย", "342181776": "ยกเลิกธุรกรรม", "343873723": "บล็อกนี้จะใช้แสดงข้อความ โดยคุณสามารถกำหนดสีของข้อความและเลือกเสียงแจ้งเตือนจาก 6 รูปแบบเสียง", - "344418897": "การตั้งขีดจำกัดการซื้อขายและระบบการกันตนเองนั้นช่วยให้คุณควบคุมจำนวนเงินและเวลาที่ใช้ใน {{brand_website_name}} และเป็นการฝึก <0>การซื้อขายอย่างมีความรับผิดชอบ", + "344418897": "การตั้งขีดจำกัดการเทรดและระบบการกันตนเองนั้นช่วยให้คุณควบคุมจำนวนเงินและเวลาที่ใช้ใน {{brand_website_name}} และเป็นการฝึก <0>การเทรดอย่างมีความรับผิดชอบ", "345320063": "การประทับเวลาไม่ถูกต้อง", "345818851": "ขออภัย เกิดข้อผิดพลาดภายใน กดช่องทำเครื่องหมายด้านบนเพื่อลองอีกครั้ง", "347029309": "Forex: มาตรฐาน/ไมโคร", @@ -334,7 +335,7 @@ "359809970": "บล็อกนี้ทำให้คุณสามารถเลือกค่าของแท่งเทียนจากลิสต์รายการแท่งเทียนภายในช่วงเวลาที่เลือกได้ โดยคุณสามารถเลือกจากราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิด", "360224937": "ตรรกะ", "360773403": "ตัวสร้างบอท", - "362946954": "แพลตฟอร์มซื้อขายอัตโนมัติดั้งเดิมของเรา", + "362946954": "แพลตฟอร์มเทรดอัตโนมัติดั้งเดิมของเรา", "363576009": "ราคาสูง: ราคาสูงสุด", "363738790": "เบราว์เซอร์", "363990763": "ราคาขาย:", @@ -357,7 +358,7 @@ "380606668": "จุด Tick", "380694312": "จำนวนสูงสุดของการเทรดต่อเนื่อง", "381972464": "เอกสารของคุณหมดอายุแล้ว", - "384303768": "บล็อกนี้จะคืนค่าว่า “จริง” หากแท่งเทียนสุดท้ายเป็นสีดำ มันจะถูกวางไว้ที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกพื้นฐานเพื่อระบุพารามิเตอร์การซื้อขาย", + "384303768": "บล็อกนี้จะคืนค่าว่า “จริง” หากแท่งเทียนสุดท้ายเป็นสีดำ มันจะถูกวางไว้ที่ใดก็ได้บนผืนผ้าใบ เว้นแต่ภายในบล็อกพื้นฐานเพื่อระบุพารามิเตอร์การเทรด", "384707870": "การยืนยัน CRS", "386278304": "ติดตั้งเว็บแอป {{platform_name_trader}}", "386502387": "บอทไม่ทำงาน", @@ -367,7 +368,7 @@ "392582370": "Fall Equals", "393789743": "เฉพาะตัวอักษร ช่องว่าง มหัพภาค ยัติภังค์ เครื่องหมายอัญประกาศเดี่ยวเท่านั้น", "396418990": "ออฟไลน์", - "398816980": "เปิดใช้ {{platform_name_trader}} ในเวลาเพียงไม่กี่วินาทีในครั้งต่อไปที่คุณต้องการซื้อขาย", + "398816980": "เปิดใช้ {{platform_name_trader}} ในเวลาเพียงไม่กี่วินาทีในครั้งต่อไปที่คุณต้องการเทรด", "401339495": "ยืนยันที่อยู่", "401345454": "ไปที่แท็บบทช่วยสอนเพื่อทำเช่นนั้น", "403456289": "สูตรสำหรับเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA คือ", @@ -380,10 +381,10 @@ "418265501": "Demo Derived", "419485005": "สปอต", "419496000": "สัญญาของคุณจะถูกปิดอัตโนมัติเมื่อกำไรของคุณมากกว่าหรือเท่ากับจำนวนเงินนี้ ทั้บล็อกนี้สามารถใช้ได้เฉพาะกับประเภทการเทรด Multipliers", - "420072489": "ความถี่ในการซื้อขาย CFD", + "420072489": "ความถี่ในการเทรด CFD", "422055502": "จาก", "424101652": "คู่มือกลยุทธ์ด่วน >", - "424272085": "เราให้ความสำคัญอย่างจริงจังกับสุขภาวะทางการเงินของคุณและต้องการทำให้แน่ใจว่าคุณตระหนักอย่างเต็มที่ถึงความเสี่ยงต่างๆ ก่อนทำการซื้อขาย<0/><0/>", + "424272085": "เราให้ความสำคัญอย่างจริงจังกับสุขภาวะทางการเงินของคุณและต้องการทำให้แน่ใจว่าคุณตระหนักอย่างเต็มที่ถึงความเสี่ยงต่างๆ ก่อนทำการเทรด<0/><0/>", "424897068": "คุณเข้าใจหรือไม่ว่าคุณอาจสูญเสียเงินที่คุณใช้ในการเทรด 100%?", "426031496": "หยุด", "427134581": "ให้ลองใช้ไฟล์ประเภทอื่น", @@ -400,7 +401,7 @@ "436364528": "บัญชีของคุณจะถูกเปิดโดย {{legal_entity_name}} และจะอยู่ภายใต้กฎหมายของเซนต์วินเซนต์และเกรนาดีนส์", "436534334": "<0>เราได้ส่งอีเมล์ถึงคุณแล้ว", "437138731": "สร้างรหัสผ่าน {{platform}} ใหม่", - "437453244": "เลือกสกุลเงินดิจิทัลที่คุณต้องการ", + "437453244": "เลือกคริปโตเคอเรนซี่ที่คุณต้องการ", "437485293": "ประเภทไฟล์ที่ไม่รองรับ", "437904704": "ตำแหน่งการค้าที่เปิดได้สูงสุด", "438067535": "มากกว่า $500,000", @@ -413,8 +414,8 @@ "450983288": "การฝากเงินของคุณไม่สําเร็จเนื่องจากมีข้อผิดพลาดบนบล็อกเชน โปรดติดต่อผู้ให้บริการวอลเล็ทคริปโตของคุณสําหรับข้อมูลเพิ่มเติม", "451852761": "ดำเนินการต่อในโทรศัพท์ของคุณ", "452054360": "โดยคล้ายคลึงกับเครื่องมือชี้วัด RSI ตัวบล็อกนี้จะแสดงลิสต์รายการมูลค่าของแต่ละรายการในลิสต์รายการข้อมูลนำเข้า", - "452949978": "กลยุทธ์ 1-3-2-6 ถูกออกแบบมาเพื่อใช้ประโยชน์จากการเทรดที่ประสบความสำเร็จติดต่อกันและลดการสูญเสียในการเทรดที่ขาดทุนติดต่อกัน เหตุผลเบื้องหลังกลยุทธ์นี้อยู่ที่ความน่าจะเป็นทางสถิติ โดยมีการปรับขนาดเงินทุนทรัพย์ตามความน่าจะเป็นที่จะประสบความสำเร็จ โดยความเป็นไปได้ที่จะสำเร็จนั้นจะสูงขึ้นในการเทรดครั้งที่สองหลังจากการซื้อขายที่สำเร็จครั้งที่หนึ่ง ดังนั้นเงินทุนทรัพย์จึงปรับเป็น 3 หน่วยในการเทรดครั้งที่สอง ทั้งนี้ ในการเทรดครั้งที่สาม เงินทุนทรัพย์จะปรับเป็น 2 หน่วยเนื่องจากมีความน่าจะเป็นน้อยลงที่จะเทรดสำเร็จ แต่หากว่าการเทรดครั้งที่สามสำเร็จ กลยุทธ์จะจัดสรรกำไรก่อนหน้านี้ทั้งหมด (รวม 6 หน่วยของเงินทุนทรัพย์เริ่มต้น) ไปในการเทรดครั้งที่สี่โดยมุ่งจะเพิ่มผลกำไรที่อาจไปได้เป็นสองเท่า หากการเทรดครั้งที่สี่ให้ผลเชิงบวกอีก นั่นคือกลยุทธ์ช่วยให้ได้ผลกำไรรวม 12 หน่วย อย่างไรก็ตาม สิ่งสำคัญคือต้องใช้ความระมัดระวังเนื่องจากความเสี่ยงอาจเพิ่มขึ้นได้อย่างรวดเร็วด้วยกลยุทธ์นี้ และการขาดทุนใดๆ ในการเทรดครั้งที่สี่จะนำสู่การสูญกำไรที่ได้ก่อนหน้านี้ทั้งหมด", - "453175851": "บัญชี MT5 Financial STP ของคุณจะถูกเปิดผ่านทาง {{legal_entity_name}} โดยการซื้อขายทั้งหมดในบัญชีนี้จะอยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของหน่วยงานบริการทางการเงินลาบวนหรือ Labuan Financial Services Authority (LFSA) ทั้งนี้ บัญชีอื่นของคุณรวมถึงบัญชี Deriv ของคุณนั้นจะไม่ได้อยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ LFSA", + "452949978": "กลยุทธ์ 1-3-2-6 ถูกออกแบบมาเพื่อใช้ประโยชน์จากการเทรดที่ประสบความสำเร็จติดต่อกันและลดการสูญเสียในการเทรดที่ขาดทุนติดต่อกัน เหตุผลเบื้องหลังกลยุทธ์นี้อยู่ที่ความน่าจะเป็นทางสถิติ โดยมีการปรับขนาดเงินทุนทรัพย์ตามความน่าจะเป็นที่จะประสบความสำเร็จ โดยความเป็นไปได้ที่จะสำเร็จนั้นจะสูงขึ้นในการเทรดครั้งที่สองหลังจากการเทรดที่สำเร็จครั้งที่หนึ่ง ดังนั้นเงินทุนทรัพย์จึงปรับเป็น 3 หน่วยในการเทรดครั้งที่สอง ทั้งนี้ ในการเทรดครั้งที่สาม เงินทุนทรัพย์จะปรับเป็น 2 หน่วยเนื่องจากมีความน่าจะเป็นน้อยลงที่จะเทรดสำเร็จ แต่หากว่าการเทรดครั้งที่สามสำเร็จ กลยุทธ์จะจัดสรรกำไรก่อนหน้านี้ทั้งหมด (รวม 6 หน่วยของเงินทุนทรัพย์เริ่มต้น) ไปในการเทรดครั้งที่สี่โดยมุ่งจะเพิ่มผลกำไรที่อาจไปได้เป็นสองเท่า หากการเทรดครั้งที่สี่ให้ผลเชิงบวกอีก นั่นคือกลยุทธ์ช่วยให้ได้ผลกำไรรวม 12 หน่วย อย่างไรก็ตาม สิ่งสำคัญคือต้องใช้ความระมัดระวังเนื่องจากความเสี่ยงอาจเพิ่มขึ้นได้อย่างรวดเร็วด้วยกลยุทธ์นี้ และการขาดทุนใดๆ ในการเทรดครั้งที่สี่จะนำสู่การสูญกำไรที่ได้ก่อนหน้านี้ทั้งหมด", + "453175851": "บัญชี MT5 Financial STP ของคุณจะถูกเปิดผ่านทาง {{legal_entity_name}} โดยการเทรดทั้งหมดในบัญชีนี้จะอยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของหน่วยงานบริการทางการเงินลาบวนหรือ Labuan Financial Services Authority (LFSA) ทั้งนี้ บัญชีอื่นของคุณรวมถึงบัญชี Deriv ของคุณนั้นจะไม่ได้อยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ LFSA", "454196938": "หลักเกณฑ์:", "456746157": "ให้สิทธิ์การเข้าถึงกล้องของคุณจากการตั้งค่าเบราว์เซอร์ของคุณ", "457020083": "การยืนยันตัวตนของคุณจะใช้เวลานานกว่านั้นหากเราไม่สามารถอ่านมันได้", @@ -429,8 +430,8 @@ "465993338": "กลยุทธ์ Oscar's Grind", "466424460": "กลยุทธ์ Oscar’s Grind", "466837068": "ใช่ เพิ่มขีดจำกัดของฉัน", - "467839232": "ฉันเทรดสัญญาการซื้อขายส่วนต่างของ Forex และตราสารทางการเงินที่ซับซ้อนอื่นๆ อย่างสม่ำเสมอบนแพลตฟอร์มอื่นๆ", - "471402292": "บอทของคุณใช้ประเภทการซื้อขายเดียวสำหรับแต่ละรอบ", + "467839232": "ฉันเทรดสัญญาการเทรดส่วนต่างของ Forex และตราสารทางการเงินที่ซับซ้อนอื่นๆ อย่างสม่ำเสมอบนแพลตฟอร์มอื่นๆ", + "471402292": "บอทของคุณใช้ประเภทการเทรดเดียวสำหรับแต่ละรอบ", "473154195": "การตั้งค่า", "474306498": "เราเสียใจที่เห็นคุณจากไป บัญชีของคุณนั้นถูกปิดแล้ว", "475492878": "ลองดัชนีสังเคราะห์", @@ -447,7 +448,7 @@ "487239607": "แปลงค่า จริง หรือ เท็จ ที่กำหนดให้มาเป็นค่าตรงข้าม", "488150742": "ส่งอีเมล์อีกครั้ง", "489768502": "เปลี่ยนรหัสผ่านของผู้ลงทุน", - "490053735": "หากคุณเลือกคุณสมบัตินี้ การซื้อขายของคุณจะถูกปิดโดยอัตโนมัติที่ราคาสินทรัพย์ที่ใกล้ที่สุดที่มีอยู่ เมื่อการขาดทุนของคุณมากถึงหรือเกินกว่าจำนวนหยุดการขาดทุน การขาดทุนของคุณอาจมากกว่าจำนวนเงินที่คุณป้อน ขึ้นอยู่กับราคาตลาด ณ เวลาปิดสัญญา", + "490053735": "หากคุณเลือกคุณสมบัตินี้ การเทรดของคุณจะถูกปิดโดยอัตโนมัติที่ราคาสินทรัพย์ที่ใกล้ที่สุดที่มีอยู่ เมื่อการขาดทุนของคุณมากถึงหรือเกินกว่าจำนวนหยุดการขาดทุน การขาดทุนของคุณอาจมากกว่าจำนวนเงินที่คุณป้อน ขึ้นอยู่กับราคาตลาด ณ เวลาปิดสัญญา", "491603904": "เบราว์เซอร์ที่ไม่รองรับ", "492198410": "ตรวจสอบให้แน่ใจว่าทุกอย่างชัดเจน", "492566838": "หมายเลขประจำตัวผู้เสียภาษีอากร", @@ -493,16 +494,16 @@ "542038694": "เฉพาะตัวอักษร ตัวเลข เว้นวรรค เส้นใต้ และยัติภังค์เท่านั้นที่ได้รับอนุญาตสำหรับ {{label}}", "542305026": "คุณต้องส่งหลักฐานยืนยันตัวตนของคุณอีกด้วย", "543413346": "คุณไม่มีตำแหน่งการค้าที่เปิดไว้สำหรับสินทรัพย์นี้ หากต้องการดูตำแหน่งการค้าอื่นๆ ที่เปิดอยู่ให้คลิกไปที่รายงาน", - "547029855": "หากคุณเลือกคุณสมบัตินี้ คุณสามารถยกเลิกการซื้อขายของคุณได้ภายในกรอบเวลาที่เลือกไว้ หากราคาสินทรัพย์เคลื่อนไหวไปในทางตรงข้าม คุณจะได้รับเงินทุนทรัพย์คืนโดยไม่มีกำไร/ขาดทุน เราเรียกเก็บค่าธรรมเนียมเล็กน้อยสำหรับสิ่งนี้ ตัวปิดเทรดเอากำไร และ ตัวหยุดการขาดทุนจะถูกปิดใช้งานเมื่อมีการยกเลิกข้อตกลง", + "547029855": "หากคุณเลือกคุณสมบัตินี้ คุณสามารถยกเลิกการเทรดของคุณได้ภายในกรอบเวลาที่เลือกไว้ หากราคาสินทรัพย์เคลื่อนไหวไปในทางตรงข้าม คุณจะได้รับเงินทุนทรัพย์คืนโดยไม่มีกำไร/ขาดทุน เราเรียกเก็บค่าธรรมเนียมเล็กน้อยสำหรับสิ่งนี้ ตัวปิดเทรดเอากำไร และ ตัวหยุดการขาดทุนจะถูกปิดใช้งานเมื่อมีการยกเลิกข้อตกลง", "549479175": "Deriv Multipliers", "549799607": "ไปที่แชทสด", - "551569133": "เรียนรู้เพิ่มเติมเกี่ยวกับขีดจำกัดการซื้อขาย", + "551569133": "เรียนรู้เพิ่มเติมเกี่ยวกับขีดจำกัดการเทรด", "554135844": "แก้ไข", "554410233": "นี่คือรหัสผ่านทั่วไป 10 อันดับแรก", - "555351771": "หลังจากกำหนดพารามิเตอร์การซื้อขายและตัวเลือกการเทรดต่างๆแล้ว คุณอาจต้องการสั่งให้บอทของคุณทำการซื้อสัญญาเมื่อตรงตามเงื่อนไขเฉพาะที่ตั้งเอาไว้ และคุณสามารถใช้บล็อกเงื่อนไขและบล๊อกตัวบ่งชี้มาช่วยบอทของคุณในการตัดสินใจเพื่อให้คุณทำเช่นนั้นได้", + "555351771": "หลังจากกำหนดพารามิเตอร์การเทรดและตัวเลือกการเทรดต่างๆแล้ว คุณอาจต้องการสั่งให้บอทของคุณทำการซื้อสัญญาเมื่อตรงตามเงื่อนไขเฉพาะที่ตั้งเอาไว้ และคุณสามารถใช้บล็อกเงื่อนไขและบล๊อกตัวบ่งชี้มาช่วยบอทของคุณในการตัดสินใจเพื่อให้คุณทำเช่นนั้นได้", "555881991": "สลิปเลขประจำตัวประชาชน", "558866810": "เรียกใช้บอทของคุณ", - "559224320": "เครื่องมือ \"ลากแล้ววาง\" แบบคลาสสิกของเราในการสร้างบอทซื้อขายมาพร้อมแผนภูมิการเทรดแบบป๊อปอัปสำหรับผู้ใช้ขั้นสูง", + "559224320": "เครื่องมือ \"ลากแล้ววาง\" แบบคลาสสิกของเราในการสร้างบอทเทรดมาพร้อมแผนภูมิการเทรดแบบป๊อปอัปสำหรับผู้ใช้ขั้นสูง", "560759471": "คุณจะเห็นรายละเอียดเหล่านี้เมื่อสัญญาเริ่มต้นขึ้น", "561982839": "เปลี่ยนสกุลเงินของคุณ", "562599414": "บล็อกนี้ส่งคืนค่าเป็นราคาซื้อสำหรับประเภทการเทรดที่เลือกไว้ บล็อกนี้สามารถใช้ได้เฉพาะในรูทบล็อก \"เงื่อนไขการซื้อ\"", @@ -518,7 +519,7 @@ "571921777": "ระดับการคุ้มครองเงินทุน", "572576218": "ภาษา", "573173477": "แท่งเทียน {{ input_candle }} เป็นสีดำหรือไม่?", - "575668969": "3. สำหรับการซื้อขายที่นำสู่กำไร เงินทุนทรัพย์ในการเทรดครั้งถัดไปจะเพิ่มขึ้น 2 USD โดย Deriv Bot จะยังคงเพิ่ม 2 USD สำหรับทุกการเทรดที่ประสบความสำเร็จ ดู A1", + "575668969": "3. สำหรับการเทรดที่นำสู่กำไร เงินทุนทรัพย์ในการเทรดครั้งถัดไปจะเพิ่มขึ้น 2 USD โดย Deriv Bot จะยังคงเพิ่ม 2 USD สำหรับทุกการเทรดที่ประสบความสำเร็จ ดู A1", "575702000": "โปรดจำไว้ว่า ภาพเซลฟี่ ภาพบ้าน หรือ ภาพที่ไม่เกี่ยวข้องต่างๆ จะถูกปฏิเสธ", "575968081": "สร้างบัญชี เลือกวิธีการชำระเงินสำหรับทำการฝากเงิน", "576355707": "โปรดเลือกประเทศและสัญชาติของคุณ:", @@ -544,7 +545,7 @@ "595136687": "บันทึกกลยุทธ์", "597089493": "นี่คือที่ๆ คุณสามารถตัดสินใจจะขายสัญญาก่อนที่มันจะหมดอายุได้ ทั้งนี้ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น", "597481571": "ข้อความปฏิเสธความรับผิดชอบ", - "597707115": "โปรดเล่าประสบการณ์การซื้อขายของคุณ", + "597707115": "โปรดเล่าประสบการณ์การเทรดของคุณ", "599469202": "{{secondPast}} วินาทีที่ผ่านมา", "602278674": "ยืนยันตัวตน", "603849445": "ราคาใช้สิทธิ", @@ -581,10 +582,9 @@ "632897893": "หากข้อใดข้อหนึ่งข้างต้นเกี่ยวข้องกับคุณ ให้เลือก <0>ใช่ มิฉะนั้นให้เลือก <0>ไม่", "634219491": "คุณยังไม่ได้ระบุหมายเลขประจำตัวผู้เสียภาษีของคุณ ข้อมูลนี้มีความจำเป็นเนื่องจากข้อกำหนดทางกฎหมายและระเบียบข้อบังคับ โปรดไปที่ <0>รายละเอียดส่วนบุคคล ในการตั้งค่าบัญชีของคุณ และกรอกหมายเลขประจำตัวผู้เสียภาษีล่าสุดของคุณ", "634274250": "การเทรดแต่ละครั้งใช้เวลานานแค่ไหนจึงจะหมดอายุ", - "636219153": "ในการเริ่มเทรด <0/>คุณต้องโอนเงินจากบัญชี Deriv ของคุณไปยังบัญชีนี้", "636219628": "<0>c หากไร้โอกาสในการหาข้อตกลงยุติการพิพาท ข้อร้องเรียนนั้นจะถูกส่งไปยังขั้นตอนการพิจารณาเพื่อให้คณะกรรมการ DRC เข้าจัดการต่อไป", "636427296": "ต้องการความช่วยเหลือเกี่ยวกับข้อมูลภาษีหรือไม่? แจ้งให้เราทราบผ่าน <0>แชทสด", - "636579615": "จำนวนหน่วยที่จะเพิ่มในการซื้อขายครั้งต่อไปหลังจากการซื้อขายที่ขาดทุน ทั้งนี้ หนึ่งหน่วยเทียบเท่ากับจำนวนเงินทุนทรัพย์เริ่มต้น", + "636579615": "จำนวนหน่วยที่จะเพิ่มในการเทรดครั้งต่อไปหลังจากการเทรดที่ขาดทุน ทั้งนี้ หนึ่งหน่วยเทียบเท่ากับจำนวนเงินทุนทรัพย์เริ่มต้น", "639382772": "โปรดอัปโหลดประเภทไฟล์ที่มีการรองรับ", "640249298": "ปกติ", "640596349": "คุณยังไม่ได้รับการแจ้งเตือนใดๆ", @@ -595,13 +595,13 @@ "642546661": "อัปโหลดด้านหลังใบขับขี่จากคอมพิวเตอร์ของคุณ", "644150241": "จำนวนสัญญาที่คุณทำกำไรได้มาตั้งแต่การล้างสถิติครั้งล่าสุดของคุณ", "645902266": "EUR/NZD", - "646773081": "เกณฑ์การทำกำไร: บอทจะหยุดการซื้อขายหากการขาดทุนทั้งหมดของคุณนั้นเกินจำนวนนี้", + "646773081": "เกณฑ์การทำกำไร: บอทจะหยุดการเทรดหากการขาดทุนทั้งหมดของคุณนั้นเกินจำนวนนี้", "647039329": "โปรดส่งเอกสารหลักฐานยืนยันที่อยู่ของคุณ", "647745382": "ลิสต์รายการข้อมูลที่นำเข้า {{ input_list }}", "648035589": "แพลตฟอร์ม CFD อื่นๆ", "649317411": "จากพื้นฐานข้อมูลที่สัมพันธ์กับความรู้และประสบการณ์ของคุณ เราได้พิจารณาแล้วว่า การลงทุนที่มีอยู่ในเว็บไซต์นี้ไม่เหมาะสมกับคุณ<0/><1/>", "649923867": "เพิ่มเครื่องหมายให้กับตัวเลขเพื่อสร้างส่วนชดเชยเส้นระดับราคาเป้าหมาย (เลิกใช้แล้ว)", - "650836587": "บทความนี้สำรวจกลยุทธ์ Martingale ที่รวมอยู่ใน Deriv Bot ซึ่งเป็นบอทการซื้อขายอเนกประสงค์ที่ออกแบบมาเพื่อเทรดสินทรัพย์ต่างๆ เช่น Forex สินค้าโภคภัณฑ์ และ ดัชนี Derived โดยเราจะเจาะลึกพารามิเตอร์หลักต่างๆ ของกลยุทธ์นี้ รวมถึงการประยุกต์ใช้ และให้ข้อมูลสำคัญสำหรับเทรดเดอร์ที่ต้องการใช้บอทได้อย่างมีประสิทธิภาพ", + "650836587": "บทความนี้สำรวจกลยุทธ์ Martingale ที่รวมอยู่ใน Deriv Bot ซึ่งเป็นบอทการเทรดอเนกประสงค์ที่ออกแบบมาเพื่อเทรดสินทรัพย์ต่างๆ เช่น Forex สินค้าโภคภัณฑ์ และ ดัชนี Derived โดยเราจะเจาะลึกพารามิเตอร์หลักต่างๆ ของกลยุทธ์นี้ รวมถึงการประยุกต์ใช้ และให้ข้อมูลสำคัญสำหรับเทรดเดอร์ที่ต้องการใช้บอทได้อย่างมีประสิทธิภาพ", "651284052": "Low Tick", "651684094": "การแจ้งเตือน", "652298946": "วันเกิด", @@ -610,13 +610,13 @@ "654924603": "กลยุทธ์ Martingale", "655937299": "เราจะอัพเดทขีดจำกัดของคุณ คลิก <0>ตกลง เพื่อรับทราบว่า คุณต้องรับผิดชอบต่อการกระทำของคุณอย่างเต็มที่และเราไม่รับผิดชอบต่อการเสพติดหรือการสูญเสียใดๆ", "656893085": "ประทับเวลา", - "657325150": "บล็อกนี้ใช้เพื่อกำหนดตัวเลือกการเทรดภายในรูทบล็อกสำหรับพารามิเตอร์การซื้อขาย โดยตัวเลือกบางอย่างสามารถใช้ได้กับการซื้อขายบางประเภทเท่านั้น ทั้งนี้ พารามิเตอร์เช่น ระยะเวลาและเงินทุนทรัพย์นั้นพบได้โดยปกติในประเภทการซื้อขายส่วนใหญ่ ส่วนการคาดการณ์มักจะใช้กับประเภทการซื้อขายเช่น Digitsในขณะที่ส่วนชดเชยเส้นระดับราคาเป้าหมายหรือ barrier จะใช้กับประเภทการซื้อขายที่เกี่ยวกับเส้น barrier เช่นดูราคาว่า Touch/No Touch หรือ Ends In/Out เป็นต้น", + "657325150": "บล็อกนี้ใช้เพื่อกำหนดตัวเลือกการเทรดภายในรูทบล็อกสำหรับพารามิเตอร์การเทรด โดยตัวเลือกบางอย่างสามารถใช้ได้กับการเทรดบางประเภทเท่านั้น ทั้งนี้ พารามิเตอร์เช่น ระยะเวลาและเงินทุนทรัพย์นั้นพบได้โดยปกติในประเภทการเทรดส่วนใหญ่ ส่วนการคาดการณ์มักจะใช้กับประเภทการเทรดเช่น Digitsในขณะที่ส่วนชดเชยเส้นระดับราคาเป้าหมายหรือ barrier จะใช้กับประเภทการเทรดที่เกี่ยวกับเส้น barrier เช่นดูราคาว่า Touch/No Touch หรือ Ends In/Out เป็นต้น", "659482342": "โปรดจําไว้ว่า มันเป็นความรับผิดชอบของคุณในการให้คําตอบที่ถูกต้องและเป็นปัจจุบัน โดยคุณสามารถเข้าไปอัพเดทรายละเอียดส่วนบุคคลของคุณได้ตลอดเวลาที่ปุ่มการตั้งค่าบัญชีของคุณ", "660481941": "ในการที่คุณจะเข้าถึงแอปมือถือของคุณและแอปที่พัฒนาโดยบุคคลภายนอกได้นั้น คุณจะต้องสร้างรหัสโทเคน API เสียก่อน", "660991534": "เสร็จสิ้น", "661759508": "จากพื้นฐานข้อมูลที่ให้มาซึ่งเกี่ยวข้องกับความรู้และประสบการณ์ของคุณ เราถือว่าการลงทุนที่มีผ่านทางเว็บไซต์นี้ไม่เหมาะสมสำหรับคุณ.<0/><0/>", - "662953503": "สัญญาของคุณจะถูกปิดเมื่อถึงระดับ <0>ตัวหยุดการซื้อขายอัตโนมัติ", - "664779910": "3. หากการซื้อขายครั้งแรกส่งผลให้ได้กำไร เงินทุนทรัพย์สำหรับการเทรดครั้งถัดไปก็จะไม่ลดลงแต่ยังคงอยู่ที่จำนวนทุนทรัพย์เริ่มต้น กลยุทธ์นี้จะมีการซื้อขายขั้นต่ำสุดที่เงินทุนทรัพย์เริ่มต้น 1 USD โปรดดูที่ A1", + "662953503": "สัญญาของคุณจะถูกปิดเมื่อถึงระดับ <0>ตัวหยุดการเทรดอัตโนมัติ", + "664779910": "3. หากการเทรดครั้งแรกส่งผลให้ได้กำไร เงินทุนทรัพย์สำหรับการเทรดครั้งถัดไปก็จะไม่ลดลงแต่ยังคงอยู่ที่จำนวนทุนทรัพย์เริ่มต้น กลยุทธ์นี้จะมีการเทรดขั้นต่ำสุดที่เงินทุนทรัพย์เริ่มต้น 1 USD โปรดดูที่ A1", "665089217": "โปรดส่ง <0>หลักฐานระบุตัวตน ของคุณเพื่อยืนยันความถูกต้องของบัญชีและเข้าถึงแคชเชียร์ของคุณ", "665777772": "XLM/USD", "665872465": "จากตัวอย่างด้านล่าง ราคาเปิดได้ถูกเลือกแล้วและก็ถูกกำหนดให้กับตัวแปรที่เรียกว่า \"op\"", @@ -642,11 +642,11 @@ "687212287": "โปรดระบุจำนวนในช่อง", "688510664": "คุณมีระบบยืนยันตัวตนสองขั้นตอนหรือ 2FA ในสถานะ {{two_fa_status}} อยู่บนอุปกรณ์นี้ ดังนั้นคุณจะถูกให้ออกจากระบบบัญชีของคุณจากบนอุปกรณ์อื่น (ถ้ามี) กรุณาใช้รหัสผ่านและรหัส 2FA เพื่อกลับเข้าสู่ระบบอีกครั้ง", "689137215": "ราคาซื้อ", - "691956534": "<0>คุณได้เพิ่มบัญชี {{currency}} <0> โปรดทำการฝากเงินเพื่อเริ่มทำการซื้อขาย ", + "691956534": "<0>คุณได้เพิ่มบัญชี {{currency}} <0> โปรดทำการฝากเงินเพื่อเริ่มทำการเทรด ", "692354762": "กรุณากรอกข้อมูล {{document_name}}ของคุณ {{example_format}}", "693396140": "การยกเลิกดีลข้อตกลง (หมดอายุ)", "693933036": "สำรวจกลยุทธ์ Oscar’s Grind ใน Deriv Bot", - "694035561": "การซื้อขาย ตราสารสิทธิ Multipliers", + "694035561": "การเทรด ตราสารสิทธิ Multipliers", "696157141": "จุด Low", "696735942": "ป้อนหมายเลขประจำตัวประชาชนของคุณ (NIN)", "696870196": "เวลาเปิด: การประทับเวลาเปิด", @@ -663,11 +663,11 @@ "705262734": "Wallet ของคุณพร้อมใช้งานแล้ว", "705299518": "ขั้นตอนต่อไปคือ โปรดอัปโหลดหน้าหนังสือเดินทางของคุณที่มีรูปถ่ายของคุณอยู่", "705697927": "2. ตั้งค่าหน่วยที่คุณต้องการ ในตัวอย่างนี้ มันคือ 2 หน่วยหรือ 2 USD", - "705821926": "เรียนรู้เกี่ยวกับประเภทการซื้อขายนี้", + "705821926": "เรียนรู้เกี่ยวกับประเภทการเทรดนี้", "706448499": "เราจะส่งลิงก์นิรภัยเพื่อยืนยันคำขอของคุณ แตะที่ลิงก์เพื่อยืนยันว่าต้องการลบ Passkey วิธีนี้จะช่วยปกป้องบัญชีของคุณจากคำขอที่ไม่ได้รับอนุญาต", - "706727320": "ความถี่ในการซื้อขายตราสารสิทธิไบนารี", + "706727320": "ความถี่ในการเทรดตราสารสิทธิไบนารี", "706755289": "บล็อกนี้ดำเนินการเกี่ยวกับฟังก์ชันตรีโกณมิติ", - "706960383": "เราจะเสนอซื้อสัญญาของคุณในราคานี้หากคุณเลือกที่จะขายมันก่อนสัญญาหมดอายุ ซึ่งนี่ก็ขึ้นอยู่กับปัจจัยหลายประการ เช่น ราคาสปอตหรือราคาซื้อขายทันทีในปัจจุบัน ระยะเวลา เป็นต้น อย่างไรก็ตาม เราจะไม่เสนอมูลค่าของสัญญาหากระยะเวลาที่เหลืออยู่ต่ำกว่า 60 วินาที", + "706960383": "เราจะเสนอซื้อสัญญาของคุณในราคานี้หากคุณเลือกที่จะขายมันก่อนสัญญาหมดอายุ ซึ่งนี่ก็ขึ้นอยู่กับปัจจัยหลายประการ เช่น ราคาสปอตหรือราคาเทรดทันทีในปัจจุบัน ระยะเวลา เป็นต้น อย่างไรก็ตาม เราจะไม่เสนอมูลค่าของสัญญาหากระยะเวลาที่เหลืออยู่ต่ำกว่า 60 วินาที", "707189572": "ที่อยู่อีเมล์ของคุณมีการเปลี่ยนแปลง<0/>ตอนนี้ เข้าสู่ระบบด้วยที่อยู่อีเมล์ใหม่ของคุณ", "707662672": "{{unblock_date}} ที่ {{unblock_time}}", "708055868": "หมายเลขใบขับขี่", @@ -688,7 +688,7 @@ "723045653": "คุณจะเข้าสู่ระบบบัญชี Deriv ของคุณด้วยที่อยู่อีเมล์นี้", "723961296": "จัดการรหัสผ่าน", "724526379": "เรียนรู้เพิ่มเติมจากบทช่วยสอนของเรา", - "728042840": "โปรดยืนยันที่อยู่อาศัยของคุณเพื่อทำการซื้อขายกับเราต่อไป", + "728042840": "โปรดยืนยันที่อยู่อาศัยของคุณเพื่อทำการเทรดกับเราต่อไป", "728824018": "Spanish Index", "729251105": "ช่วง: {{min}} - {{max}} {{duration_unit_text}} ", "729651741": "เลือกรูปภาพ", @@ -720,9 +720,9 @@ "756152377": "เส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA ให้น้ำหนักแต่ละค่าในชุดข้อมูลว่าสำคัญเท่ากันทั้งหมด", "758003269": "ทำลิสต์รายการจากข้อความ", "760528514": "โปรดทราบว่า การเปลี่ยนค่าของ \"i\" จะไม่เปลี่ยนแปลงค่าของรายการตัวต้นฉบับในลิสต์", - "761576760": "ฝากเงินเข้าบัญชีของคุณเพื่อเริ่มทำการซื้อขาย", + "761576760": "ฝากเงินเข้าบัญชีของคุณเพื่อเริ่มทำการเทรด", "762926186": "กลยุทธ์ด่วนคือกลยุทธ์สำเร็จรูปพร้อมใช้ได้เลยใน Deriv Bot ซึ่งจะมีให้คุณเลือก 3 กลยุทธ์ที่ดังนี้: มาติงเกล (Martingale) ดาล็องแบร์ (D'Alembert) และออสก้าร์ กรินด์ (Oscar's Grind)", - "764366329": "วงเงินในการซื้อขาย", + "764366329": "วงเงินในการเทรด", "766317539": "ภาษา", "770171141": "ไปที่ {{hostname}}", "772520934": "คุณสามารถขายสัญญาได้จนถึง 24 ชั่วโมงก่อนเวลาหมดอายุ ถ้าคุณขาย เราจะจ่ายไปตาม <0>มูลค่าสัญญา ให้คุณ", @@ -730,7 +730,7 @@ "773309981": "Oil/USD", "773336410": "Tether เป็นแพลตฟอร์มที่เปิดใช้งานบล็อกเชน โดยมันถูกออกแบบมาเพื่ออำนวยความสะดวกในการใช้สกุลเงินตรารัฐบาลในรูปแบบดิจิทัล", "775679302": "{{pending_withdrawals}} กำลังรอการถอนเงิน", - "775706054": "คุณขายบอทการซื้อขายหรือไม่?", + "775706054": "คุณขายบอทการเทรดหรือไม่?", "776085955": "กลยุทธ์", "776432808": "เลือกประเทศที่คุณอาศัยอยู่ในปัจจุบัน", "778172770": "Deriv CFD", @@ -744,8 +744,8 @@ "788005234": "NA", "792164271": "นี่คือเวลาที่สัญญาของคุณจะหมดอายุโดยอ้างอิงตามระยะเวลาหรือเวลาสิ้นสุดที่คุณได้เลือกไว้", "792622364": "การป้องกันยอดคงเหลือติดลบ", - "793526589": "หากต้องการร้องเรียนการให้บริการของเรา โปรดส่งอีเมล์ไปที่ <0>complaints@deriv.com และแจ้งรายละเอียดข้อร้องเรียนของคุณ โปรดส่งภาพแคปหน้าจอที่เกี่ยวข้องของการซื้อขายหรือระบบให้เราเพื่อให้เราเข้าใจได้ดียิ่งขึ้น", - "793531921": "บริษัทของเราเป็นหนึ่งในบริษัทการซื้อขายออนไลน์ที่เก่าแก่และมีชื่อเสียงที่สุดในโลก เรามุ่งมั่นที่จะปฏิบัติต่อลูกค้าของเราอย่างยุติธรรมและให้การบริการที่ดีเยี่ยม <0/><1/>โปรดให้ข้อเสนอแนะเรื่องการปรับปรุงการให้บริการของเราให้ดียิ่งขึ้น ขอคุณจงมั่นใจว่าเราจะรับฟังและให้ความสำคัญแก่คุณพร้อมกับปฏิบัติต่อคุณอย่างเป็นธรรมตลอดเวลา", + "793526589": "หากต้องการร้องเรียนการให้บริการของเรา โปรดส่งอีเมล์ไปที่ <0>complaints@deriv.com และแจ้งรายละเอียดข้อร้องเรียนของคุณ โปรดส่งภาพแคปหน้าจอที่เกี่ยวข้องของการเทรดหรือระบบให้เราเพื่อให้เราเข้าใจได้ดียิ่งขึ้น", + "793531921": "บริษัทของเราเป็นหนึ่งในบริษัทการเทรดออนไลน์ที่เก่าแก่และมีชื่อเสียงที่สุดในโลก เรามุ่งมั่นที่จะปฏิบัติต่อลูกค้าของเราอย่างยุติธรรมและให้การบริการที่ดีเยี่ยม <0/><1/>โปรดให้ข้อเสนอแนะเรื่องการปรับปรุงการให้บริการของเราให้ดียิ่งขึ้น ขอคุณจงมั่นใจว่าเราจะรับฟังและให้ความสำคัญแก่คุณพร้อมกับปฏิบัติต่อคุณอย่างเป็นธรรมตลอดเวลา", "794682658": "คัดลอกลิงก์ไปยังโทรศัพท์ของคุณ", "795859446": "บันทึกรหัสผ่าน", "797007873": "ทำตามขั้นตอนต่อไปนี้เพื่อกู้คืนการเข้าถึงกล้อง:", @@ -789,7 +789,7 @@ "836097457": "ฉันสนใจในการเทรดแต่ฉันมีประสบการณ์น้อยมาก", "837063385": "โปรดอย่าส่งสกุลเงินอื่นๆ ไปยังที่อยู่นี้", "837066896": "เอกสารของคุณกำลังอยู่ระหว่างการพิจารณา โปรดตรวจสอบอีกครั้งใน 1-3 วัน", - "839158849": "4. หากการซื้อขายครั้งที่สองจบลงด้วยการขาดทุน Deriv Bot จะเพิ่มเงินทุนทรัพย์ของคุณโดยอัตโนมัติสำหรับการซื้อขายครั้งถัดไปขึ้นอีก 2 USD ทั้งนี้ Deriv Bot จะยังคงเพิ่ม 2 USD เข้าไปในจำนวนเงินทุนทรัพย์รอบก่อนหน้าหลังจากทุกการเทรดที่ขาดทุน โปรดดูที่ A2", + "839158849": "4. หากการเทรดครั้งที่สองจบลงด้วยการขาดทุน Deriv Bot จะเพิ่มเงินทุนทรัพย์ของคุณโดยอัตโนมัติสำหรับการเทรดครั้งถัดไปขึ้นอีก 2 USD ทั้งนี้ Deriv Bot จะยังคงเพิ่ม 2 USD เข้าไปในจำนวนเงินทุนทรัพย์รอบก่อนหน้าหลังจากทุกการเทรดที่ขาดทุน โปรดดูที่ A2", "839805709": "เราต้องได้ภาพถ่ายที่ดีกว่านี้ของคุณเพื่อการยืนยันตัวตนที่ราบรื่น", "841434703": "ปิดการใช้งาน stack", "841543189": "ดูธุรกรรมบนบล็อกเชน", @@ -809,7 +809,7 @@ "857363137": "ดัชนี Volatility 300 (1s)", "857445204": "ปัจจุบัน Deriv รองรับการถอนเหรียญโทเคน Tether eUSDT ไปยังวอลเล็ทของ Ethereum แล้วทั้งนี้ เพื่อให้แน่ใจว่าการทำธุรกรรมนั้นประสบความสำเร็จ ขอให้คุณป้อนที่อยู่ของวอลเล็ทที่เข้ากันได้กับเหรียญโทเคนที่คุณต้องการถอน <0>เรียนรู้เพิ่มเติม", "857986403": "ทําอะไรสักอย่าง", - "858663703": "สำหรับการซื้อขายใหม่ โปรดโอนเงินของคุณไปยังบัญชี <0>{{platform}} {{eligible_account_to_migrate}} อันใหม่", + "858663703": "สำหรับการเทรดใหม่ โปรดโอนเงินของคุณไปยังบัญชี <0>{{platform}} {{eligible_account_to_migrate}} อันใหม่", "860319618": "การท่องเที่ยว", "862283602": "หมายเลขโทรศัพท์*", "863023016": "ตัวอย่างเช่น หากเทรดเดอร์มีเกณฑ์ขาดทุน (B) ตั้งไว้ที่ 100 USD โดยมีเงินทุนทรัพย์เริ่มต้น (s) ที่ 1 USD และเพิ่มขึ้น 2 หน่วย (f) การคำนวณจะเป็นดังนี้:", @@ -838,7 +838,7 @@ "879014472": "ถึงขีดจํานวนสูงสุดของเลขทศนิยมแล้ว", "879647892": "คุณสามารถขายสัญญาได้จนถึง 60 วินาทีก่อนเวลาหมดอายุ ถ้าคุณขาย เราจะจ่ายไปตาม <0>มูลค่าสัญญา ให้คุณ", "881963105": "(XAUUSD, XAGUSD)", - "882423592": "จำนวนเงินทุนทรัพย์ที่คุณลงไปในการซื้อขายครั้งแรก โปรดทราบว่านี่คือจำนวนเงินทุนทรัพย์ขั้นต่ำ", + "882423592": "จำนวนเงินทุนทรัพย์ที่คุณลงไปในการเทรดครั้งแรก โปรดทราบว่านี่คือจำนวนเงินทุนทรัพย์ขั้นต่ำ", "885065431": "รับบัญชี Deriv", "888274063": "เมือง", "888924866": "เราไม่ยอมรับการป้อนข้อมูลต่อไปนี้สำหรับ:", @@ -922,7 +922,7 @@ "977929335": "ไปที่การตั้งค่าบัญชีของฉัน", "980050614": "อัพเดทตอนนี้", "981138557": "เปลี่ยนเส้นทาง", - "981568830": "คุณได้เลือกที่จะกันตัวเองออกจากการซื้อขายบนเว็บไซต์ของเราจนถึง {{exclude_until}} หากคุณไม่สามารถที่จะทำการซื้อขายหรือฝากเงินได้หลังจากช่วงระยะเวลาการกันตัวเองสิ้นสุดลงแล้ว โปรดติดต่อเราผ่าน <0>แชทสด", + "981568830": "คุณได้เลือกที่จะกันตัวเองออกจากการเทรดบนเว็บไซต์ของเราจนถึง {{exclude_until}} หากคุณไม่สามารถที่จะทำการเทรดหรือฝากเงินได้หลังจากช่วงระยะเวลาการกันตัวเองสิ้นสุดลงแล้ว โปรดติดต่อเราผ่าน <0>แชทสด", "981965437": "สแกนคิวอาร์โค้ด​ด้านล่างด้วยแอปที่ใช้ 2FA ของคุณ โดยเราขอแนะนำให้ใช้ <0>Authy หรือ <1>Google Authenticator", "982146443": "WhatsApp", "982402892": "บรรทัดแรกของที่อยู่", @@ -932,13 +932,13 @@ "987053672": "คุณสามารถดำเนินการตำแหน่งการค้าที่ได้เปิดเอาไว้ต่อได้ในบัญชี <0>{{platform}} {{existing_account}} ปัจจุบันของคุณ", "987224688": "คุณได้ทำการเทรดกับตราสารทางการเงินอื่นๆ กี่ครั้งในช่วง 12 เดือนที่ผ่านมา", "988064913": "4. กลับมาที่ Deriv Bot และเพิ่มบล็อกส่งข้อความเตือนทางเทเลแกรมไปยังพื้นที่ทำงาน วางโทเคน API เทเลแกรมและรหัสไอดีแชทเข้าไปในช่องบล็อกตามลําดับ", - "988361781": "คุณยังไม่มีกิจกรรมการซื้อขาย", + "988361781": "คุณยังไม่มีกิจกรรมการเทรด", "988934465": "เมื่อได้รับการแจ้งเตือน คุณต้องเปิดใช้งานการเข้าถึงกล้องเพื่อดําเนินการต่อ", "989840364": "คุณอายุต่ำกว่าเกณฑ์ตามกฏหมาย", "990739582": "170+", "992294492": "รหัสไปรษณีย์ของคุณไม่ถูกต้อง", "992677950": "กำลังออกจากบนอุปกรณ์อื่น", - "993827052": "การเลือกเขตอำนาจรับผิดชอบนี้จะทำให้คุณมีบัญชี STP Financial ทั้งนี้การซื้อขายของคุณจะเข้าสู่ตลาดโดยตรงและมีค่าสเปรดที่แน่นขึ้น", + "993827052": "การเลือกเขตอำนาจรับผิดชอบนี้จะทำให้คุณมีบัญชี STP Financial ทั้งนี้การเทรดของคุณจะเข้าสู่ตลาดโดยตรงและมีค่าสเปรดที่แน่นขึ้น", "995563717": "ไม่ใช่ {{ boolean }}", "997276809": "ฉันยืนยันว่าชื่อและวันเดือนปีเกิดด้านบนตรงกับเอกสารระบุตัวตนที่ฉันเลือกไว้", "997311089": "เปลี่ยนรหัสผ่านของฉัน", @@ -947,10 +947,10 @@ "1002989598": "iOS: พวงกุญแจ iCloud", "1003876411": "ควรขึ้นต้นด้วยตัวอักษรหรือตัวเลข และอาจมียัติภังค์ มหัพภาค และเครื่องหมายทับ", "1004127734": "ส่งอีเมล์", - "1006069082": "วัตถุประสงค์ของกลยุทธ์ Martingale คือการใช้ประโยชน์จากการซื้อขายที่ประสบความสำเร็จติดต่อกันและเพิ่มผลกำไรที่อาจเกิดขึ้น โดยกลยุทธ์นี้มีประโยชน์เฉพาะในกรณีที่มีการซื้อขายที่ประสบความสำเร็จติดต่อกัน ดังนั้นมันจึงเป็นสิ่งสำคัญที่จะต้องตั้งค่าขีดจำกัดเงินทุนทรัพย์สูงสุดเอาไว้ก่อนเพื่อที่จะรักษาผลกำไรที่อาจเกิดขึ้นจากการซื้อขายที่ประสบความสำเร็จติดต่อกันในระยะหนึ่ง มิฉะนั้นคุณอาจสูญเสียผลกำไรทั้งหมดที่คุณได้สั่งสมมารวมถึงเงินทุนทรัพย์เริ่มต้นของคุณด้วย ตัวอย่างเช่น หากเป้าหมายของคุณคือการเพิ่มผลกำไรสูงสุดภายในการเทรด 2 ครั้งที่สำเร็จติดต่อกัน คุณก็ตั้งค่าขีดจำกัดเงินทุนทรัพย์สูงสุดที่ 2 USD เนื่องจากเงินทุนทรัพย์เริ่มต้นของคุณคือ 1 USDในทำนองเดียวกันหากเป้าหมายของคุณคือการเพิ่มผลกำไรสูงสุดภายในการเทรด 3 ครั้งที่สำเร็จติดต่อกัน คุณก็ตั้งค่าขีดจำกัดเงินทุนทรัพย์สูงสุดที่ 4 USD เนื่องจากเงินทุนทรัพย์เริ่มต้นของคุณคือ 1 USD", + "1006069082": "วัตถุประสงค์ของกลยุทธ์ Martingale คือการใช้ประโยชน์จากการเทรดที่ประสบความสำเร็จติดต่อกันและเพิ่มผลกำไรที่อาจเกิดขึ้น โดยกลยุทธ์นี้มีประโยชน์เฉพาะในกรณีที่มีการเทรดที่ประสบความสำเร็จติดต่อกัน ดังนั้นมันจึงเป็นสิ่งสำคัญที่จะต้องตั้งค่าขีดจำกัดเงินทุนทรัพย์สูงสุดเอาไว้ก่อนเพื่อที่จะรักษาผลกำไรที่อาจเกิดขึ้นจากการเทรดที่ประสบความสำเร็จติดต่อกันในระยะหนึ่ง มิฉะนั้นคุณอาจสูญเสียผลกำไรทั้งหมดที่คุณได้สั่งสมมารวมถึงเงินทุนทรัพย์เริ่มต้นของคุณด้วย ตัวอย่างเช่น หากเป้าหมายของคุณคือการเพิ่มผลกำไรสูงสุดภายในการเทรด 2 ครั้งที่สำเร็จติดต่อกัน คุณก็ตั้งค่าขีดจำกัดเงินทุนทรัพย์สูงสุดที่ 2 USD เนื่องจากเงินทุนทรัพย์เริ่มต้นของคุณคือ 1 USDในทำนองเดียวกันหากเป้าหมายของคุณคือการเพิ่มผลกำไรสูงสุดภายในการเทรด 3 ครั้งที่สำเร็จติดต่อกัน คุณก็ตั้งค่าขีดจำกัดเงินทุนทรัพย์สูงสุดที่ 4 USD เนื่องจากเงินทุนทรัพย์เริ่มต้นของคุณคือ 1 USD", "1006458411": "ข้อผิดพลาด", "1006664890": "เงียบ", - "1008151470": "หน่วย: จำนวนหน่วยที่ถูกนำมาเติมในกรณีที่การซื้อขายประสบความสำเร็จ หรือจำนวนหน่วยที่ถูกลบออกไปในกรณีที่การซื้อขายนำสู่การขาดทุน ตัวอย่างเช่น หากหน่วยตั้งไว้ที่ 2 เงินทุนทรัพย์จะเพิ่มขึ้นหรือลดลงสองเท่าของเงินทุนทรัพย์เริ่มต้นที่ 1 USD ซึ่งหมายความว่า มันจะเปลี่ยนไปเป็น 2 USD", + "1008151470": "หน่วย: จำนวนหน่วยที่ถูกนำมาเติมในกรณีที่การเทรดประสบความสำเร็จ หรือจำนวนหน่วยที่ถูกลบออกไปในกรณีที่การเทรดนำสู่การขาดทุน ตัวอย่างเช่น หากหน่วยตั้งไว้ที่ 2 เงินทุนทรัพย์จะเพิ่มขึ้นหรือลดลงสองเท่าของเงินทุนทรัพย์เริ่มต้นที่ 1 USD ซึ่งหมายความว่า มันจะเปลี่ยนไปเป็น 2 USD", "1009032439": "ทุกเวลา", "1010198306": "บล็อกนี้สร้างลิสต์รายการที่มีสตริงและตัวเลข", "1010337648": "เราไม่สามารถตรวจสอบยืนยันหลักฐานการเป็นเจ้าของของคุณได้", @@ -987,10 +987,10 @@ "1036867749": "ระยะเวลา เงินทุนทรัพย์ การคาดการณ์ และ/หรือ เส้นระดับราคาเป้าหมาย (เดี่ยวหรือหลายเส้น) ที่ต้องการสำหรับสัญญานั้นสามารถกำหนดได้ที่นี่", "1038575777": "เปลี่ยนรหัสผ่าน", "1039428638": "กฎระเบียบของสหภาพยุโรปหรือ EU", - "1039476188": "ขนาดที่ใช้คูณเงินทุนทรัพย์หลังจากการเทรดที่ขาดทุนสำหรับการซื้อขายครั้งต่อไป", + "1039476188": "ขนาดที่ใช้คูณเงินทุนทรัพย์หลังจากการเทรดที่ขาดทุนสำหรับการเทรดครั้งต่อไป", "1039755542": "ใช้คำไม่กี่คำ หลีกเลี่ยงคำวลีทั่วไป", "1040472990": "1. ไปที่ ตัวสร้างบอท", - "1040677897": "คุณต้องส่งหลักฐานยืนยันที่อยู่ด้วยเพื่อดำเนินการซื้อขายต่อ", + "1040677897": "คุณต้องส่งหลักฐานยืนยันที่อยู่ด้วยเพื่อดำเนินการเทรดต่อ", "1041001318": "บล็อกนี้จะดำเนินการตามปฏิบัติการดังต่อไปนี้จากลิสต์รายการที่ให้มา: แสดงผลรวม ค่าต่ำสุด ค่าสูงสุด ค่าเฉลี่ย ค่ามัธยฐาน โหมด แอนตี้โหมด ค่าเบี่ยงเบนมาตรฐาน และรายการสุ่ม", "1041620447": "หากคุณไม่สามารถสแกนคิวอาร์โค้ด​ได้ คุณสามารถป้อนรหัสนี้โดยตรงแทนได้:", "1042659819": "คุณมีบัญชีที่ต้องดำเนินการ", @@ -1013,12 +1013,12 @@ "1053159279": "ระดับการศึกษา", "1053556481": "เมื่อคุณส่งคำร้องเรียน เราจะส่งอีเมล์ตอบกลับไปที่คุณเพื่อยืนยันว่าเราได้รับคำร้องเรียนนั้นแล้ว", "1055313820": "ไม่พบเอกสาร", - "1056381071": "กลับไปที่การซื้อขาย", + "1056381071": "กลับไปที่การเทรด", "1056821534": "คุณแน่ใจหรือไม่?", "1057216772": "ข้อความ {{ input_text }} ว่าง", - "1057519018": "4. หากการซื้อขายจบลงด้วยการทำกำไร เงินทุนทรัพย์สำหรับการซื้อขายครั้งถัดไปจะถูกรีเซ็ตเป็นจำนวนเงินทุนทรัพย์เริ่มต้นที่ 1 USD", + "1057519018": "4. หากการเทรดจบลงด้วยการทำกำไร เงินทุนทรัพย์สำหรับการเทรดครั้งถัดไปจะถูกรีเซ็ตเป็นจำนวนเงินทุนทรัพย์เริ่มต้นที่ 1 USD", "1057749183": "ระบบยืนยันตัวตนสองขั้นตอน (2FA)", - "1057904606": "แนวคิดของกลยุทธ์ดาล็องแบร์ (D'Alembert) นั้นกล่าวกันว่ามีความคล้ายกับกลยุทธ์มาติงเกล (Martingale) ซึ่งบอกให้คุณเพิ่มขนาดสัญญาของคุณหลังจากที่ขาดทุน โดยในส่วนของกลยุทธ์ดาล็องแบร์นั้นคุณจะลดขนาดสัญญาของคุณหลังจากการซื้อขายที่ประสบความสำเร็จด้วย", + "1057904606": "แนวคิดของกลยุทธ์ดาล็องแบร์ (D'Alembert) นั้นกล่าวกันว่ามีความคล้ายกับกลยุทธ์มาติงเกล (Martingale) ซึ่งบอกให้คุณเพิ่มขนาดสัญญาของคุณหลังจากที่ขาดทุน โดยในส่วนของกลยุทธ์ดาล็องแบร์นั้นคุณจะลดขนาดสัญญาของคุณหลังจากการเทรดที่ประสบความสำเร็จด้วย", "1058804653": "เวลาหมดอายุ", "1058905535": "บทช่วยสอน", "1060231263": "เมื่อใดที่คุณจำเป็นต้องจ่ายเงินประกันหรือมาร์จิ้นเริ่มต้น?", @@ -1032,7 +1032,7 @@ "1066235879": "ในการที่จะสามารถทำการโอนเงินได้ คุณจะต้องสร้างบัญชีที่สอง", "1066459293": "4.3 การยอมรับข้อร้องเรียนของคุณ", "1069347258": "ลิงก์การยืนยันที่คุณใช้นั้นไม่ถูกต้องหรือหมดอายุ โปรดร้องขออันใหม่", - "1070323991": "6. หากมีการเทรดที่ประสบความสำเร็จติดต่อกัน เงินทุนทรัพย์จะเป็นไปตามลำดับของการปรับตั้งแต่ 1 ถึง 3 จากนั้นเป็น 2 และ 6 หน่วยจากจำนวนเงินทุนทรัพย์เริ่มต้น หลังจากการซื้อขายที่ประสบความสำเร็จติดต่อกัน 4 ครั้งจะเสร็จสิ้นรอบหนึ่งรอบ จากนั้นกลยุทธ์จะทำซ้ำอีกรอบหนึ่ง หากการซื้อขายใดๆ นำสู่การขาดทุน เงินทุนทรัพย์ของคุณก็จะรีเซ็ตกลับเป็นจำนวนเงินทุนทรัพย์เริ่มต้นสำหรับการซื้อขายครั้งต่อไป", + "1070323991": "6. หากมีการเทรดที่ประสบความสำเร็จติดต่อกัน เงินทุนทรัพย์จะเป็นไปตามลำดับของการปรับตั้งแต่ 1 ถึง 3 จากนั้นเป็น 2 และ 6 หน่วยจากจำนวนเงินทุนทรัพย์เริ่มต้น หลังจากการเทรดที่ประสบความสำเร็จติดต่อกัน 4 ครั้งจะเสร็จสิ้นรอบหนึ่งรอบ จากนั้นกลยุทธ์จะทำซ้ำอีกรอบหนึ่ง หากการเทรดใดๆ นำสู่การขาดทุน เงินทุนทรัพย์ของคุณก็จะรีเซ็ตกลับเป็นจำนวนเงินทุนทรัพย์เริ่มต้นสำหรับการเทรดครั้งต่อไป", "1070624871": "ตรวจสอบสถานะของการยืนยันเอกสารแสดงที่อยู่", "1073261747": "การตรวจสอบยืนยัน", "1073611269": "สำเนาเอกสารประจำตัวของคุณ (เช่น บัตรประจำตัว หนังสือเดินทาง ใบขับขี่)", @@ -1040,8 +1040,8 @@ "1076006913": "กำไร/ขาดทุนในสัญญา {{item_count}} ครั้งล่าสุด", "1077515534": "ถึงวันที่", "1078189922": "คุณสามารถทำการฝากเงินครั้งใหม่ได้เมื่อการยืนยันบัญชีของคุณเสร็จสมบูรณ์", - "1078221772": "เลเวเรจช่วยป้องกันไม่ให้คุณเปิดตำแหน่งซื้อขายขนาดใหญ่", - "1078303105": "ตัวยุติการซื้อขายอัตโนมัติ", + "1078221772": "เลเวเรจช่วยป้องกันไม่ให้คุณเปิดตำแหน่งเทรดขนาดใหญ่", + "1078303105": "ตัวยุติการเทรดอัตโนมัติ", "1080068516": "การดำเนินการ", "1080990424": "ยืนยัน", "1082158368": "*ยอดบัญชีเงินสดคงเหลือขั้นสูงสุด", @@ -1080,7 +1080,7 @@ "1114679006": "คุณสร้างบอทของคุณสำเร็จโดยใช้กลยุทธ์ที่เรียบง่าย", "1117281935": "เงื่อนไขการขาย (ไม่บังคับ)", "1117863275": "ความมั่นคงปลอดภัย", - "1118294625": "คุณได้เลือกที่จะกันตัวเองออกจากการซื้อขายบนเว็บไซต์ของเราจนถึง {{exclusion_end}} หากคุณไม่สามารถทำการซื้อขายหรือฝากเงินได้หลังจากช่วงระยะเวลาการกันตัวเอง โปรดติดต่อเราผ่านแชทสด", + "1118294625": "คุณได้เลือกที่จะกันตัวเองออกจากการเทรดบนเว็บไซต์ของเราจนถึง {{exclusion_end}} หากคุณไม่สามารถทำการเทรดหรือฝากเงินได้หลังจากช่วงระยะเวลาการกันตัวเอง โปรดติดต่อเราผ่านแชทสด", "1119887091": "การตรวจสอบยืนยัน", "1119986999": "หลักฐานยืนยันที่อยู่ของคุณถูกนำส่งเรียบร้อยแล้ว", "1120985361": "ข้อตกลงและเงื่อนไขล่าสุด", @@ -1122,18 +1122,18 @@ "1163836811": "อสังหาริมทรัพย์", "1164773983": "ตัวปิดเทรดเอากำไร และ/หรือ ตัวหยุดการขาดทุนจะไม่มีให้ใช้งานในขณะที่การยกเลิกดีลข้อตกลงกำลังมีผลอยู่", "1166023941": "รหัสผ่านใหม่", - "1166128807": "เลือกบัญชีใดบัญชีหนึ่งของคุณหรือเพิ่มบัญชีสกุลเงินดิจิทัลอันใหม่", + "1166128807": "เลือกบัญชีใดบัญชีหนึ่งของคุณหรือเพิ่มบัญชีคริปโตเคอเรนซี่อันใหม่", "1166377304": "มูลค่าเพิ่ม", "1168029733": "ได้รับเงินผลตอบแทนก็ต่อเมื่อจุดออกมีค่าเท่ากับจุดเข้า", "1169201692": "สร้างรหัสผ่าน {{platform}}", "1170228717": "อยู่ใน {{platform_name_trader}}", "1171765024": "ขั้นตอนที่ 3", - "1171961126": "พารามิเตอร์การซื้อขาย", + "1171961126": "พารามิเตอร์การเทรด", "1172230903": "• เกณฑ์ของตัวหยุดการขาดทุน: ใช้ตัวแปรนี้เพื่อจัดเก็บขีดจำกัดการขาดทุนของคุณ โดยคุณจะกำหนดจำนวนเงินเท่าใดก็ได้ตามต้องการ บอทของคุณจะหยุดเมื่อคุณขาดทุนถึงหรือเกินจำนวนนี้", "1172524677": "CFD ทดลอง", "1173957529": "ไปที่ 'การตั้งค่าบัญชี' บน Deriv", "1174542625": "- ดูคุณสมบัติรหัสไอดีแชทจากผลตอบรับแล้วคัดลอกค่าของคุณสมบัตินั้น", - "1174689133": "3. ตั้งค่าพารามิเตอร์การซื้อขายของคุณและกด เรียกใช้", + "1174689133": "3. ตั้งค่าพารามิเตอร์การเทรดของคุณและกด เรียกใช้", "1174748431": "ช่องทางชำระเงิน", "1175183064": "วานูอาตู", "1177396776": "หากคุณเลือก \"Asian Fall\" คุณจะได้รับเงินผลตอบแทนต่อเมื่อมูลค่าของจุด Tick สุดท้ายนั้นต่ำกว่าค่าเฉลี่ยของจุด Tick ทั้งหมดในช่วงเวลาสัญญา", @@ -1160,9 +1160,8 @@ "1199281499": "ลิสต์รายการตัวเลขหลักสุดท้าย", "1201533528": "สัญญาที่ทำกำไร", "1201773643": "ตัวเลข", - "1202494002": "รับข้อมูลแบบเรียลไทม์ เครื่องมือชั้นสูงสำหรับการสร้างกราฟแผนภูมิ และมุมมองที่ปรับแต่งได้", "1203297580": "บล็อกนี้ส่งข้อความไปยังช่องแอป Telegram", - "1203380736": "กลยุทธ์ D'Alembert มีความเสี่ยงน้อยกว่า Martingale แต่คุณยังสามารถกำหนดได้ว่า เงินทุนของคุณจะอยู่ได้นานแค่ไหนด้วยกลยุทธ์นี้ก่อนจะเข้าทำการซื้อขาย เพียงคุณใช้สูตรนี้", + "1203380736": "กลยุทธ์ D'Alembert มีความเสี่ยงน้อยกว่า Martingale แต่คุณยังสามารถกำหนดได้ว่า เงินทุนของคุณจะอยู่ได้นานแค่ไหนด้วยกลยุทธ์นี้ก่อนจะเข้าทำการเทรด เพียงคุณใช้สูตรนี้", "1204223111": "จากตัวอย่างนี้ ราคาเปิดจากลิสต์รายการของแท่งเทียนนั้นถูกกำหนดให้กับตัวแปรที่เรียกว่า \"candle_list\"", "1204459171": "บัญชี <0>{{platform}} {{type_1}} <1/>และ <0>{{type_2}} {{from_account}} ที่มีอยู่ของคุณจะยังคงเข้าถึงได้", "1206227936": "วิธีการปกปิดข้อมูลบัตรของคุณ", @@ -1182,7 +1181,7 @@ "1222544232": "เราได้ส่งอีเมล์ถึงคุณแล้ว", "1225874865": "การปรับเปลี่ยนเงินทุนทรัพย์: กำไรเป้าหมายของเซสชั่น (1 USD) - กำไรปัจจุบันของเซสชั่น (0 USD) = 1 USD", "1227074958": "เศษส่วนแบบสุ่ม", - "1227132397": "4. สำหรับการซื้อขายที่นำสู่การขาดทุนก็จะมีผลลัพธ์สองประการ หากมันเป็นการเทรดด้วยจำนวนเงินทุนทรัพย์เริ่มต้น การซื้อขายครั้งต่อไปจะยังคงใช้จำนวนเท่าเดิมตามที่กลยุทธ์นั้นจะซื้อขายขั้นต่ำสุดคือที่จำนวนเงินทุนทรัพย์เริ่มต้น ดูที่ A2 หากมันเป็นการเทรดด้วยจำนวนเงินที่สูงกว่านั้น เงินทุนทรัพย์ในการซื้อขายครั้งต่อไปจะลดลง 2 USD ดูที่ A3", + "1227132397": "4. สำหรับการเทรดที่นำสู่การขาดทุนก็จะมีผลลัพธ์สองประการ หากมันเป็นการเทรดด้วยจำนวนเงินทุนทรัพย์เริ่มต้น การเทรดครั้งต่อไปจะยังคงใช้จำนวนเท่าเดิมตามที่กลยุทธ์นั้นจะเทรดขั้นต่ำสุดคือที่จำนวนเงินทุนทรัพย์เริ่มต้น ดูที่ A2 หากมันเป็นการเทรดด้วยจำนวนเงินที่สูงกว่านั้น เงินทุนทรัพย์ในการเทรดครั้งต่อไปจะลดลง 2 USD ดูที่ A3", "1227240509": "พื้นที่ปรับแต่ง", "1228534821": "ตัวแทนการชําระเงินในประเทศของคุณนั้นอาจจะไม่รองรับค่าเงินบางสกุล", "1229883366": "เลขประจำตัวผู้เสียภาษี", @@ -1209,7 +1208,7 @@ "1243287470": "สถานะการทำธุรกรรม", "1246207976": "ป้อนรหัสพิสูจน์ตัวตนเพื่อยืนยันเข้ารับบริการที่สร้างขึ้นโดยแอป 2FA ของคุณ", "1246880072": "เลือกประเทศที่ออกเอกสาร", - "1247280835": "แคชเชียร์สกุลเงินดิจิทัลของเรานั้นหยุดให้บริการชั่วคราวเนื่องจากมีการบำรุงรักษาระบบ คุณสามารถทำการฝากและถอนเงินคริปโตเคอเรนซี่ได้ในเวลาไม่กี่นาทีเมื่อการบำรุงรักษาเสร็จสิ้น", + "1247280835": "แคชเชียร์คริปโตเคอเรนซี่ของเรานั้นหยุดให้บริการชั่วคราวเนื่องจากมีการบำรุงรักษาระบบ คุณสามารถทำการฝากและถอนเงินคริปโตเคอเรนซี่ได้ในเวลาไม่กี่นาทีเมื่อการบำรุงรักษาเสร็จสิ้น", "1248018350": "แหล่งที่มาของรายได้", "1248940117": "<0>a การตัดสินใจของ DRC นั้นมีผลผูกพันกับเรา แต่การตัดสินใจของ DRC จะมีผลผูกพันกับคุณก็ต่อเมื่อคุณยอมรับเท่านั้น", "1250113042": "อุปกรณ์นี้ไม่รองรับ Passkey", @@ -1242,12 +1241,12 @@ "1281045211": "เรียงลําดับรายการในลิสต์รายการที่กําหนด ตามมูลค่าตัวเลขหรือตัวอักษรทั้งในลําดับจากน้อยไปหามากหรือจากมากไปหาน้อย", "1281290230": "เลือก", "1282951921": "Only Downs", - "1284522768": "หากเลือก \"ขาดทุน\" ระบบจะส่งคืนค่าว่า \"จริง\" หากการซื้อขายครั้งสุดท้ายของคุณไม่สำเร็จ ถ้าไม่อย่างนั้นระบบจะส่งคืนสตริงที่ว่างเปล่า", + "1284522768": "หากเลือก \"ขาดทุน\" ระบบจะส่งคืนค่าว่า \"จริง\" หากการเทรดครั้งสุดท้ายของคุณไม่สำเร็จ ถ้าไม่อย่างนั้นระบบจะส่งคืนสตริงที่ว่างเปล่า", "1286094280": "ถอนเงิน", "1286507651": "ปิดหน้าจอการยืนยันตัวตน", "1288965214": "หนังสือเดินทาง", "1289146554": "องค์กร British Virgin Islands Financial Services Commission", - "1289650867": "กลยุทธ์ Oscar’s Grind ได้รับการออกแบบมาเพื่อให้ได้รับผลกำไรที่พอสมควรแต่มีความคงที่ในแต่ละเซสชั่นของการซื้อขายกลยุทธ์นี้แบ่งการเทรดออกเป็นเซสชั่นและมีหลักการสามประการ", + "1289650867": "กลยุทธ์ Oscar’s Grind ได้รับการออกแบบมาเพื่อให้ได้รับผลกำไรที่พอสมควรแต่มีความคงที่ในแต่ละเซสชั่นของการเทรดกลยุทธ์นี้แบ่งการเทรดออกเป็นเซสชั่นและมีหลักการสามประการ", "1290525720": "ตัวอย่าง: ", "1291997417": "สัญญาจะหมดอายุในเวลา 23:59:59 GMT ของวันหมดอายุที่คุณได้เลือกไว้", "1292188546": "ตั้งรหัสผ่านนักลงทุน Deriv MT5 ใหม่", @@ -1272,7 +1271,7 @@ "1310483610": "ผลลัพธ์สำหรับ \"{{ search_term }}\"", "1311680770": "เงินผลตอบแทน", "1313167179": "โปรดเข้าสู่ระบบ", - "1313302450": "บอทจะหยุดทำการซื้อขายหากการขาดทุนทั้งหมดของคุณเกินจำนวนนี้", + "1313302450": "บอทจะหยุดทำการเทรดหากการขาดทุนทั้งหมดของคุณเกินจำนวนนี้", "1314572331": "เอกสารของคุณไม่ผ่านการตรวจสอบยืนยันของเรา", "1316216284": "คุณสามารถใช้รหัสผ่านนี้สําหรับบัญชี {{platform}} ของคุณทั้งหมด", "1319217849": "เช็คโทรศัพท์มือถือของคุณ", @@ -1301,10 +1300,10 @@ "1337864666": "ภาพถ่ายของเอกสารของคุณ", "1338496204": "รหัสอ้างอิง", "1339613797": "หน่วยงานกำกับดูแล/การระงับข้อพิพาทภายนอก", - "1340286510": "บอทได้หยุดทำงาน แต่การซื้อขายของคุณอาจจะยังคงทำงานอยู่ คุณสามารถตรวจสอบได้ในหน้ารายงาน", + "1340286510": "บอทได้หยุดทำงาน แต่การเทรดของคุณอาจจะยังคงทำงานอยู่ คุณสามารถตรวจสอบได้ในหน้ารายงาน", "1341840346": "ดูในบันทึก", "1341921544": "บัญชีการเทรดและเงินทุน", - "1344696151": "Forex หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ สกุลเงินดิจิทัล และดัชนีสังเคราะห์", + "1344696151": "Forex หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ คริปโตเคอเรนซี่ และดัชนีสังเคราะห์", "1346038489": "ควรมีค่าน้อยกว่า 70", "1346204508": "ตัวปิดเทรดเอากำไร", "1346339408": "ผู้จัดการ", @@ -1333,7 +1332,7 @@ "1364879837": "การตรวจสอบยืนยันนั้นผ่านแล้ว แต่ไม่มีข้อมูลส่วนตัวที่จะนำมาเปรียบเทียบได้", "1364958515": "หุ้น", "1366244749": "วงเงิน", - "1367488817": "4. เริ่มเงื่อนไขการซื้อขายใหม่อีกครั้ง", + "1367488817": "4. เริ่มเงื่อนไขการเทรดใหม่อีกครั้ง", "1367990698": "ดัชนี Volatility 10", "1370647009": "เพลิดเพลินไปกับขีดจำกัดรายวันที่สูงขึ้น", "1371193412": "ยกเลิก", @@ -1354,7 +1353,7 @@ "1387503299": "เข้าสู่ระบบ", "1388770399": "ต้องใช้หลักฐานการยืนยันตัวตน", "1389197139": "เกิดข้อผิดพลาดในการนำเข้า", - "1390792283": "พารามิเตอร์การซื้อขาย", + "1390792283": "พารามิเตอร์การเทรด", "1391174838": "เงินผลตอบแทนที่อาจได้:", "1392985917": "อันนี้คล้ายกับรหัสผ่านที่ใช้กันทั่วไป", "1393559748": "วันที่/เวลาไม่ถูกต้อง: {{ datetime_string }}", @@ -1375,7 +1374,7 @@ "1408844944": "คลิกที่ไอคอนเครื่องหมายบวกเพื่อขยายการทำงานของบล็อกนี้", "1411373212": "รหัสผ่านที่คาดเดายากประกอบไปด้วยอักขระอย่างน้อย 8 ตัว รวมตัวพิมพ์ใหญ่และตัวพิมพ์เล็ก ตัวเลข และสัญลักษณ์ต่างๆ", "1412405902": "ดูหมายเหตุสำคัญ", - "1412535872": "คุณสามารถตรวจสอบผลลัพธ์ของการซื้อขายครั้งล่าสุดด้วยบล็อกนี้ ซึ่งมันจะสามารถถูกนำวางไว้ได้ในบล็อกรูท \"เริ่มเงื่อนไขการซื้อขายใหม่\" เท่านั้น", + "1412535872": "คุณสามารถตรวจสอบผลลัพธ์ของการเทรดครั้งล่าสุดด้วยบล็อกนี้ ซึ่งมันจะสามารถถูกนำวางไว้ได้ในบล็อกรูท \"เริ่มเงื่อนไขการเทรดใหม่\" เท่านั้น", "1413047745": "กำหนดค่าที่ให้มาให้กับตัวแปร", "1413359359": "ทำการโอนครั้งใหม่", "1414205271": "เลขเฉพาะ", @@ -1388,7 +1387,7 @@ "1417907460": "ไม่มีปัญหา! Passkey ของคุณยังใช้งานได้อยู่", "1417914636": "บัญชีผู้ใช้งาน", "1418115525": "บล็อกนี้จะทำซ้ำตามคำสั่งตราบใดที่เงื่อนไขที่กำหนดเป็นจริง", - "1419330165": "Forex หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ สกุลเงินดิจิทัล ETF และดัชนีสังเคราะห์", + "1419330165": "Forex หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ คริปโตเคอเรนซี่ ETF และดัชนีสังเคราะห์", "1421046084": "ตั้งค่าบัญชีของคุณ", "1421749665": "ค่าเฉลี่ย Simple Moving Average (SMA)", "1422060302": "บล็อกนี้จะแทนที่รายการอันจำเพาะจากในลิสต์รายการด้วยรายการอื่นที่ได้รับมา แล้วมันยังสามารถแทรกรายการอันใหม่เข้าไปในลิสต์ ณ ตำแหน่งเฉพาะที่ระบุได้ด้วย", @@ -1400,8 +1399,8 @@ "1424779296": "หากคุณเพิ่งใช้บอทแต่กลับมองไม่เห็นพวกมันในลิสต์รายการนี้ นั่นอาจเป็นเพราะคุณ:", "1428657171": "คุณสามารถจะทำการฝากเงินได้เท่านั้น โปรดติดต่อเราผ่าน <0>แชทสด เพื่อขอข้อมูลเพิ่มเติม", "1430221139": "ยืนยันตอนนี้เลย", - "1430396558": "5. เริ่มซื้อขายใหม่เมื่อเกิดข้อผิดพลาด", - "1430632931": "หากต้องการซื้อขาย โปรดยืนยันว่าคุณเป็นใครและคุณอยู่ที่ไหน", + "1430396558": "5. เริ่มเทรดใหม่เมื่อเกิดข้อผิดพลาด", + "1430632931": "หากต้องการเทรด โปรดยืนยันว่าคุณเป็นใครและคุณอยู่ที่ไหน", "1433367863": "ขออภัย เกิดข้อผิดพลาดขณะกำลังดำเนินการตามคำขอของคุณ", "1433468641": "เรานำเสนอบริการของเราในทุกประเทศ ยกเว้นที่ ที่ระบุไว้ในข้อกำหนดและเงื่อนไขของเรา", "1434382099": "แสดงหน้าต่างโต้ตอบที่มีข้อความ", @@ -1435,7 +1434,7 @@ "1461323093": "แสดงข้อความในคอนโซลแผงควบคุมของนักพัฒนาซอฟต์แวร์", "1462238858": "ในการซื้อสัญญา \"High-to-Close\" คุณจะทำเงินตอบแทนในจำนวนที่เท่ากับการเอามูลค่า Multiplier มาคูณกับมูลค่าความแตกต่างระหว่างค่าสูงและค่าปิดของช่วงระยะเวลาของสัญญา", "1464190305": "บล็อกนี้จะถ่ายโอนการควบคุมกลับไปที่บล็อกเงื่อนไขการซื้อ เพื่อทำให้คุณสามารถซื้อสัญญาอื่นได้โดยไม่ต้องหยุดหรือรีสตาร์ทการทำงานบอทของคุณด้วยตัวเอง", - "1464253511": "คุณมีบัญชีสำหรับสกุลเงินดิจิทัลแต่ละสกุลที่มีอยู่แล้วใน {{deriv}}", + "1464253511": "คุณมีบัญชีสำหรับคริปโตเคอเรนซี่แต่ละสกุลที่มีอยู่แล้วใน {{deriv}}", "1465084972": "คุณมีประสบการณ์มากแค่ไหนกับตราสารทางการเงินอื่นๆ", "1465919899": "เลือกวันที่สิ้นสุด", "1466430429": "ควรอยู่ระหว่าง {{min_value}} และ {{max_value}}", @@ -1458,14 +1457,14 @@ "1473369747": "ดัชนีสังเคราะห์เท่านั้น", "1475513172": "ขนาด", "1476301886": "ในความคล้ายคลึงกันกับเส้นค่าเฉลี่ยเคลื่อนที่แบบปกติหรือ SMA บล็อกนี้จะแสดงให้คุณเห็นเส้น SMA ทั้งหมดซึ่งประกอบด้วยลิสต์รายการของมูลค่าต่างๆ ทั้งหมดจากในช่วงเวลาที่กำหนด", - "1478030986": "สร้างหรือลบโทเคน API สำหรับการซื้อขายและการถอนเงิน", + "1478030986": "สร้างหรือลบโทเคน API สำหรับการเทรดและการถอนเงิน", "1480915523": "ข้าม", "1484336612": "บล็อกนี้ใช้เพื่อยกเลิกหรือดำเนินการวนรอบต่อไป โดยบล๊อกนี้สามารถวางไว้ที่ใดก็ได้ภายในบล็อกลูป", "1487086154": "เอกสารของคุณถูกส่งเรียบร้อยแล้ว", "1488548367": "อัปโหลดอีกครั้ง", "1490509675": "บัญชีตราสารสิทธิ", "1491392301": "<0>ถูกขายสำหรับ: {{sold_for}}", - "1492686447": "บัญชี MT5 Financial STP ของคุณจะถูกเปิดผ่านบริษัท Deriv (FX) Ltd โดยการซื้อขายทั้งหมดในบัญชีนี้จะอยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของหน่วยงานบริการทางการเงินลาบวนหรือ Labuan Financial Services Authority (LFSA) ทั้งนี้ บัญชีอื่นๆ ของคุณรวมถึงบัญชี Deriv ของคุณนั้นไม่ได้อยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ LFSA", + "1492686447": "บัญชี MT5 Financial STP ของคุณจะถูกเปิดผ่านบริษัท Deriv (FX) Ltd โดยการเทรดทั้งหมดในบัญชีนี้จะอยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของหน่วยงานบริการทางการเงินลาบวนหรือ Labuan Financial Services Authority (LFSA) ทั้งนี้ บัญชีอื่นๆ ของคุณรวมถึงบัญชี Deriv ของคุณนั้นไม่ได้อยู่ภายใต้ข้อบังคับและหลักเกณฑ์ของ LFSA", "1493673429": "เปลี่ยนอีเมล์", "1493866481": "เรียกใช้ Deriv X บนเบราว์เซอร์ของคุณ", "1496810530": "GBP/AUD", @@ -1506,7 +1505,7 @@ "1537711064": "คุณต้องทำการยืนยันตัวตนอย่างรวดเร็วก่อนที่คุณจะสามารถเข้าถึงแคชเชียร์ได้ โปรดไปที่การตั้งค่าบัญชีของคุณเพื่อส่งหลักฐานยืนยันตัวตน", "1540585098": "ปฏิเสธ", "1541508606": "กำลังมองหา CFD อยู่ใช่ไหม? ไปที่ Trader's Hub", - "1541770236": "กลยุทธ์ 1-3-2-6 มีจุดมุ่งหมายเพื่อเพิ่มผลกำไรที่อาจเกิดขึ้นได้อย่างสูงสุดในการเทรดที่ประสบความสำเร็จติดต่อกันสี่ครั้ง โดยหนึ่งหน่วยเท่ากับจำนวนเงินทุนทรัพย์เริ่มต้น ซึ่งเงินทุนทรัพย์จะถูกปรับจาก 1 หน่วยเป็น 3 หน่วยหลังการเทรดที่สำเร็จครั้งแรก จากนั้นก็ปรับเป็น 2 หน่วยหลังการเทรดที่สำเร็จครั้งที่สอง และปรับเป็น 6 หน่วยหลังการเทรดที่สำเร็จครั้งที่สาม เงินทุนทรัพย์ในการเทรดครั้งต่อไปจะถูกรีเซ็ตเป็นจำนวนเงินทุนทรัพย์เริ่มต้นหากมีการเทรดที่ขาดทุนหรือวงจรการซื้อขายสิ้นสุด", + "1541770236": "กลยุทธ์ 1-3-2-6 มีจุดมุ่งหมายเพื่อเพิ่มผลกำไรที่อาจเกิดขึ้นได้อย่างสูงสุดในการเทรดที่ประสบความสำเร็จติดต่อกันสี่ครั้ง โดยหนึ่งหน่วยเท่ากับจำนวนเงินทุนทรัพย์เริ่มต้น ซึ่งเงินทุนทรัพย์จะถูกปรับจาก 1 หน่วยเป็น 3 หน่วยหลังการเทรดที่สำเร็จครั้งแรก จากนั้นก็ปรับเป็น 2 หน่วยหลังการเทรดที่สำเร็จครั้งที่สอง และปรับเป็น 6 หน่วยหลังการเทรดที่สำเร็จครั้งที่สาม เงินทุนทรัพย์ในการเทรดครั้งต่อไปจะถูกรีเซ็ตเป็นจำนวนเงินทุนทรัพย์เริ่มต้นหากมีการเทรดที่ขาดทุนหรือวงจรการเทรดสิ้นสุด", "1541969455": "ทั้งคู่", "1542742708": "สินทรัพย์สังเคราะห์ Forex หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ และคริปโตเคอเรนซี่", "1544642951": "หากคุณเลือก \"Only Ups\" คุณจะได้รับเงินผลตอบแทนก็ต่อเมื่อช่วงค่า Tick ที่อยู่ติดๆ กันขยับสูงขึ้นอย่างต่อเนื่องหลังจากจุดเข้า แต่คุณจะไม่ได้รับเงินผลตอบแทนหากว่าค่า Tick อันหนึ่งอันใดมีค่าลดลงจากหรือเท่ากับค่า Tick ตัวก่อนหน้านั้น", @@ -1514,13 +1513,13 @@ "1549098835": "ยอดถอนเงินทั้งหมด", "1549645155": "Passkey ของคุณถูกลบเรียบร้อยแล้ว และเพื่อเลี่ยงการแจ้งเตือนให้ลงชื่อเข้าใช้ ให้ลบ Passkey ออกจากพวงกุญแจ iCloud ของคุณ ", "1551172020": "ตะกร้า AUD", - "1551689907": "เสริมประสบการณ์การเทรดหรือซื้อขายของคุณด้วยการอัพเกรดบัญชี <0/><1>{{platform}} {{type}} {{from_account}} ของคุณ", + "1551689907": "เสริมประสบการณ์การเทรดหรือเทรดของคุณด้วยการอัพเกรดบัญชี <0/><1>{{platform}} {{type}} {{from_account}} ของคุณ", "1555345325": "คู่มือการใช้งาน", "1556391770": "คุณไม่อาจทำการถอนเงินได้เพราะเอกสารของคุณยังอยู่ระหว่างการตรวจสอบ เราจะแจ้งให้คุณทราบทางอีเมล์ภายใน 3 วันเมื่อการยืนยันของคุณได้รับการอนุมัติ", "1557426040": "Demo Derived SVG", "1557682012": "การตั้งค่าบัญชี", "1558972889": "กำหนด {{ variable }} เป็นค่าเฉลี่ย Simple Moving Average {{ dummy }}", - "1559220089": "แพลตฟอร์มการซื้อขายตราสารสิทธิและ Multipliers", + "1559220089": "แพลตฟอร์มการเทรดตราสารสิทธิและ Multipliers", "1560302445": "คัดลอก", "1562374116": "นักศึกษา", "1566037033": "ซื้อ: {{longcode}} (ID: {{transaction_id}})", @@ -1546,7 +1545,7 @@ "1589148299": "เริ่ม", "1589640950": "ไม่มีการเสนอขายใหม่ของสัญญานี้", "1589702653": "หลักฐานแสดงที่อยู่", - "1589863913": "นี่คือพารามิเตอร์การซื้อขายที่ใช้สำหรับกลยุทธ์ D'Alembert ใน Deriv Bot", + "1589863913": "นี่คือพารามิเตอร์การเทรดที่ใช้สำหรับกลยุทธ์ D'Alembert ใน Deriv Bot", "1590400723": "สินทรัพย์รวมในบัญชีทั้งหมดของคุณ", "1591933071": "ส่งเอกสารอีกครั้ง", "1593010588": "Login now", @@ -1560,10 +1559,10 @@ "1599743312": "ตัวอย่างกลยุทธ์ Reverse Martingale", "1602894348": "สร้างรหัสผ่าน", "1604916224": "ค่าสัมบูรณ์", - "1605222432": "ฉันไม่มีความรู้และประสบการณ์ในการซื้อขายเลย", + "1605222432": "ฉันไม่มีความรู้และประสบการณ์ในการเทรดเลย", "1605292429": "ยอดรวมขาดทุนสูงสุด", "1612105450": "รับสตริงย่อย", - "1612638396": "ยกเลิกการซื้อขายของคุณได้ตลอดเวลาภายในกรอบเวลาที่กำหนด", + "1612638396": "ยกเลิกการเทรดของคุณได้ตลอดเวลาภายในกรอบเวลาที่กำหนด", "1615897837": "ช่วงเวลาสัญญาณ EMA {{ input_number }}", "1618652381": "ตัวอย่างเช่น หากเทรดเดอร์มีเกณฑ์การขาดทุน (B) ตั้งไว้ที่ 1000 USD โดยมีเงินทุนทรัพย์เริ่มต้น (s) ที่ 1 USD และตัวคูณ Martingale (m) คือ 2 การคำนวณจะเป็นดังนี้", "1619070150": "คุณกำลังถูกเปลี่ยนเส้นทางไปยังเว็บไซต์ภายนอก", @@ -1571,20 +1570,20 @@ "1620346110": "กำหนดสกุลเงิน", "1621024661": "เหรียญดิจิทัล Tether TRC20 (tUSDT) นั้นเป็นเวอร์ชันหนึ่งของเหรียญโทเคน Tether ที่ถูกสร้างขึ้นบนแพลตฟอร์มเครือข่าย Tron", "1622662457": "จากวันที่", - "1622944161": "ตอนนี้ ไปที่บล็อก <0>เริ่มต้นเงื่อนไขการซื้อขายใหม่", + "1622944161": "ตอนนี้ ไปที่บล็อก <0>เริ่มต้นเงื่อนไขการเทรดใหม่", "1623706874": "ใช้บล็อกนี้เมื่อคุณต้องการใช้ Multipliers เป็นประเภทการค้าของคุณ", - "1628981793": "ฉันสามารถซื้อขายคริปโตเคอเรนซี่บน Deriv Bot ได้หรือไม่?", + "1628981793": "ฉันสามารถเทรดคริปโตเคอเรนซี่บน Deriv Bot ได้หรือไม่?", "1630417358": "โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลของคุณเพื่อเปิดใช้งานการถอนเงิน", "1631281562": "ตะกร้า GBP", "1633661992": "จุด Tick {{current_tick}}/{{tick_count}}", - "1634016345": "2. หากการเทรดประสบความสำเร็จ กลยุทธ์นี้จะปรับเงินทุนทรัพย์ของคุณเป็น 3 หน่วยจากจำนวนเงินทุนทรัพย์เริ่มต้นโดยอัตโนมัติสำหรับการซื้อขายครั้งต่อไป ซึ่งในกรณีนี้การปรับเงินทุนทรัพย์คือ 3 หน่วยและเงินทุนทรัพย์เริ่มต้นคือ 1 USD ดังนั้นการซื้อขายครั้งต่อไปจะเริ่มต้นที่ 3 USD", + "1634016345": "2. หากการเทรดประสบความสำเร็จ กลยุทธ์นี้จะปรับเงินทุนทรัพย์ของคุณเป็น 3 หน่วยจากจำนวนเงินทุนทรัพย์เริ่มต้นโดยอัตโนมัติสำหรับการเทรดครั้งต่อไป ซึ่งในกรณีนี้การปรับเงินทุนทรัพย์คือ 3 หน่วยและเงินทุนทรัพย์เริ่มต้นคือ 1 USD ดังนั้นการเทรดครั้งต่อไปจะเริ่มต้นที่ 3 USD", "1634903642": "ภาพเซลฟี่เฉพาะใบหน้าของคุณเท่านั้น", "1634969163": "เปลี่ยนสกุลเงิน", "1635266650": "ดูเหมือนว่าชื่อของคุณในเอกสารไม่เหมือนกับในโปรไฟล์ Deriv ของคุณ โปรดอัพเดทชื่อของคุณในหน้า <0>รายละเอียดส่วนบุคคล เพื่อแก้ไขปัญหานี้", "1635628424": "ซองจดหมายที่มีชื่อและที่อยู่ของคุณ", "1636605481": "การตั้งค่าแพลตฟอร์ม", "1636782601": "Multipliers", - "1638321777": "ยอดเงินคงเหลือในบัญชีทดลองของคุณอยู่ในระดับต่ำ โปรดตั้งค่ายอดเงินของคุณใหม่เพื่อทำการซื้อขายได้ต่อจากในบัญชีทดลองของคุณ", + "1638321777": "ยอดเงินคงเหลือในบัญชีทดลองของคุณอยู่ในระดับต่ำ โปรดตั้งค่ายอดเงินของคุณใหม่เพื่อทำการเทรดได้ต่อจากในบัญชีทดลองของคุณ", "1639262461": "คําขอถอนเงินที่รอดําเนินการ:", "1639304182": "โปรดคลิกที่ลิงก์ในอีเมล์เพื่อรีเซ็ตรหัสผ่านของคุณ", "1641395634": "ลิสต์รายการตัวเลขหลักสุดท้าย", @@ -1638,14 +1637,14 @@ "1686800117": "{{error_msg}}", "1689103988": "วินาทีตั้งแต่จุดมาตรฐานเวลา Epoch", "1689258195": "เราไม่สามารถตรวจสอบยืนยันที่อยู่ของคุณด้วยรายละเอียดที่คุณให้ไว้ได้ กรุณาตรวจสอบและส่งข้อมูลอีกครั้งหรือเลือกประเภทเอกสารอื่น", - "1690746575": "เสริมประสบการณ์การเทรดหรือซื้อขายของคุณด้วยการอัพเกรดบัญชี <0>{{platform}} {{type_1}} <1/>และ <0>{{type_2}} {{from_account}} ของคุณ", - "1691335819": "โปรดยืนยันตัวตนของคุณเพื่อทำการซื้อขายกับเราต่อไป", + "1690746575": "เสริมประสบการณ์การเทรดหรือเทรดของคุณด้วยการอัพเกรดบัญชี <0>{{platform}} {{type_1}} <1/>และ <0>{{type_2}} {{from_account}} ของคุณ", + "1691335819": "โปรดยืนยันตัวตนของคุณเพื่อทำการเทรดกับเราต่อไป", "1691536201": "หากคุณเลือกระยะเวลาตามจำนวนจุด Tick คุณจะไม่สามารถยกเลิกสัญญาของคุณได้ก่อนจุดสิ้นสุด", "1691765860": "- การปฏิเสธ", "1692912479": "Deriv MT5, Deriv X", "1693614409": "เวลาเริ่มต้น", "1694517345": "ป้อนที่อยู่อีเมล์ใหม่", - "1696190747": "การซื้อขายโดยธรรมชาติแล้วจะเกี่ยวข้องกับความเสี่ยง และกำไรที่จะได้จริงๆ นั้นก็อาจผันผวนไปตามปัจจัยต่างๆ รวมถึงความผันผวนของตลาดและตัวแปรอื่นๆ ที่ไม่คาดฝัน ดังนั้นจึงต้องใช้ความระมัดระวังและต้องทำการศึกษาอย่างละเอียดก่อนที่จะเข้ามามีส่วนร่วมในกิจกรรมการเทรดหรือซื้อขายใดๆ", + "1696190747": "การเทรดโดยธรรมชาติแล้วจะเกี่ยวข้องกับความเสี่ยง และกำไรที่จะได้จริงๆ นั้นก็อาจผันผวนไปตามปัจจัยต่างๆ รวมถึงความผันผวนของตลาดและตัวแปรอื่นๆ ที่ไม่คาดฝัน ดังนั้นจึงต้องใช้ความระมัดระวังและต้องทำการศึกษาอย่างละเอียดก่อนที่จะเข้ามามีส่วนร่วมในกิจกรรมการเทรดหรือเทรดใดๆ", "1698624570": "2. กด ตกลง เพื่อยืนยัน", "1699606318": "คุณได้อัปโหลดเอกสารมากจนถึงขีดจำกัดแล้ว", "1700233813": "ไม่อนุญาตให้โอนจาก {{selected_value}} โปรดเลือกบัญชีอื่นจากเมนูด้านล่าง", @@ -1656,18 +1655,18 @@ "1704656659": "คุณมีประสบการณ์ในการเทรด CFD มากแค่ไหน", "1708413635": "สำหรับบัญชี {{currency_name}} ({{currency}}) ของคุณ", "1709859601": "เวลาจุดออก", - "1711013665": "ปริมาณการซื้อขายที่คาดการณ์เอาไว้ของบัญชี", + "1711013665": "ปริมาณการเทรดที่คาดการณ์เอาไว้ของบัญชี", "1711016273": "<0>การดำเนินการนี้อาจใช้เวลานานถึง 2 นาที ในช่วงระว่างนี้ บริการบางอย่างอาจไม่สามารถใช้งานได้", "1711676335": "รากที่สอง", "1711929663": "เงินของคุณถูกโอนแล้ว", "1712357617": "ที่อยู่อีเมล์ไม่ถูกต้อง", - "1713633297": "3. หากการซื้อขายครั้งที่สองประสบความสำเร็จเช่นกัน เงินทุนทรัพย์ของคุณจะปรับเป็น 2 USD หรือ 2 หน่วยของจำนวนเริ่มต้นสำหรับการซื้อขายครั้งต่อไป", + "1713633297": "3. หากการเทรดครั้งที่สองประสบความสำเร็จเช่นกัน เงินทุนทรัพย์ของคุณจะปรับเป็น 2 USD หรือ 2 หน่วยของจำนวนเริ่มต้นสำหรับการเทรดครั้งต่อไป", "1714255392": "หากต้องการเปิดใช้งานการถอนเงิน โปรดทำการประเมินทางการเงินของคุณให้เสร็จสมบูรณ์", "1715011380": "ดัชนี Jump 25", "1715630945": "ส่งคืนค่ายอดกำไรรวมทั้งหมดในรูปแบบสตริง", "1715680813": "สัญญาของคุณจะหมดอายุในเวลา 23:59:59 GMT +0 ในวันหมดอายุที่คุณเลือกไว้", "1717023554": "ส่งเอกสารต่างๆอีกครั้ง", - "1720451994": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} แล้วแต่ว่าจำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างบัญชีเงินตรารัฐบาล Deriv และบัญชีสกุลเงินดิจิทัล Deriv", + "1720451994": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} แล้วแต่ว่าจำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างบัญชีเงินตรารัฐบาล Deriv และบัญชีคริปโตเคอเรนซี่ Deriv", "1720968545": "อัปโหลดหนังสือเดินทางหน้าที่มีรูปภาพจากคอมพิวเตอร์ของคุณ", "1722056905": "เอกสารที่คุณยื่นไม่ได้รับการรองรับสําหรับประเทศของคุณ โปรดยื่นเอกสารที่ได้รับการรองรับสําหรับประเทศของคุณ", "1722888575": "{{mt5_migration_error}}", @@ -1706,7 +1705,7 @@ "1747674345": "โปรดใช้ `. 'เป็นตัวคั่นทศนิยมสำหรับตัวเลขเศษส่วน", "1747682136": "สัญญาถูกยกเลิก", "1748754976": "เรียกใช้", - "1753082252": "บทความนี้สำรวจกลยุทธ์ที่รวมอยู่ใน Deriv Bot ซึ่งเป็นบอทการซื้อขายอเนกประสงค์ที่ออกแบบมาเพื่อเทรดสินทรัพย์ต่างๆ เช่น Forex สินค้าโภคภัณฑ์ และ ดัชนี Derived โดยเราจะเจาะลึกพารามิเตอร์หลักต่างๆ ของกลยุทธ์นี้ รวมถึงการประยุกต์ใช้ และให้ข้อมูลสำคัญสำหรับเทรดเดอร์ที่ต้องการใช้บอทได้อย่างมีประสิทธิภาพ", + "1753082252": "บทความนี้สำรวจกลยุทธ์ที่รวมอยู่ใน Deriv Bot ซึ่งเป็นบอทการเทรดอเนกประสงค์ที่ออกแบบมาเพื่อเทรดสินทรัพย์ต่างๆ เช่น Forex สินค้าโภคภัณฑ์ และ ดัชนี Derived โดยเราจะเจาะลึกพารามิเตอร์หลักต่างๆ ของกลยุทธ์นี้ รวมถึงการประยุกต์ใช้ และให้ข้อมูลสำคัญสำหรับเทรดเดอร์ที่ต้องการใช้บอทได้อย่างมีประสิทธิภาพ", "1753183432": "เราดำเนินการเรื่องร้องเรียนทั้งหมดอย่างจริงจังและมุ่งมั่นที่จะแก้ไขปัญหาให้เร็วที่สุดเท่าที่จะเป็นไปได้ ถ้าหากว่าคุณไม่พอใจกับบริการของเราในด้านใด โปรดแจ้งให้เราทราบโดยการส่งคำร้องเรียนโดยปฏิบัติตามคำแนะนำด้านล่างนี้:", "1753226544": "ลบ", "1753975551": "อัปโหลดหนังสือเดินทางหน้าที่มีรูปถ่าย", @@ -1715,7 +1714,7 @@ "1758386013": "จงระวังอย่าให้ถูกลวงไปที่หน้าเพจ “Deriv” อันปลอม!", "1761038852": "ดำเนินการต่อด้วยการให้หลักฐานยืนยันที่อยู่และหลักฐานยืนยันตัวตน", "1761254001": "ตัวเลข", - "1761762171": "เริ่มการซื้อขายใหม่ เนื่องจากเกิดข้อผิดพลาด (บอทละเว้นการซื้อขายที่ไม่สำเร็จ): {{ checkbox }}", + "1761762171": "เริ่มการเทรดใหม่ เนื่องจากเกิดข้อผิดพลาด (บอทละเว้นการเทรดที่ไม่สำเร็จ): {{ checkbox }}", "1762707297": "หมายเลขโทรศัพท์", "1763123662": "อัปโหลดสลิป NIMC ของคุณ", "1766212789": "การบำรุงรักษาเซิร์ฟเวอร์เริ่มต้นที่ 06:00 GMT ทุกวันอาทิตย์ และอาจใช้เวลาถึง 2 ชั่วโมงจึงจะเสร็จสิ้น คุณอาจประสบกับการบริการที่หยุดชะงักในช่วงเวลานี้", @@ -1723,7 +1722,7 @@ "1768293340": "มูลค่าสัญญา", "1768861315": "นาที", "1768918213": "อนุญาตให้ใช้เฉพาะตัวอักษร ช่องว่าง ยัติภังค์ มหัพภาค และเครื่องหมายอัญประกาศเดี่ยวเท่านั้น", - "1769068935": "เลือกการแลกเปลี่ยนใด ๆ เหล่านี้เพื่อซื้อสกุลเงินดิจิทัล:", + "1769068935": "เลือกการแลกเปลี่ยนใด ๆ เหล่านี้เพื่อซื้อคริปโตเคอเรนซี่:", "1770041368": "สัมผัสประสบการณ์การเข้าสู่ระบบที่ปลอดภัยขึ้น", "1771037549": "เพิ่มบัญชี Deriv จริง", "1771592738": "บล็อกเงื่อนไข", @@ -1740,7 +1739,7 @@ "1782395995": "คาดการณ์ตัวเลขหลักสุดท้าย", "1782690282": "เมนูบล็อก", "1782703044": "ลงชื่อสมัครเข้าใช้งาน", - "1783526986": "ฉันจะสร้างบอทการซื้อขายได้อย่างไร?", + "1783526986": "ฉันจะสร้างบอทการเทรดได้อย่างไร?", "1783740125": "อัปโหลดรูปเซลฟี่ของคุณ", "1785298924": "สูตร D’Alembert 1", "1786644593": "รูปแบบไฟล์ที่รองรับ: JPEG, JPG, PNG, PDF, และ GIF เท่านั้น", @@ -1759,7 +1758,7 @@ "1801093206": "รับลิสต์รายการแท่งเทียน", "1801270786": "พร้อมที่จะทำให้กลยุทธ์การเทรดของคุณเป็นแบบอัตโนมัติโดยไม่ต้องเขียนโค้ดใดๆ แล้วหรือยัง? คุณมาถูกที่แล้ว", "1801927731": "บัญชี {{platform_name_dxtrade}}", - "1803338729": "เลือกประเภทสัญญาที่คุณต้องการซื้อขาย ตัวอย่างเช่น การซื้อขายแบบ ขึ้น/ลง ซึ่งคุณสามารถเลือกได้จากสามตัวเลือกคือ ขึ้น หรือ ลง หรือ ทั้งคู่ ทั้งนี้ ประเภทสัญญาที่ถูกเลือกจะกำหนดตัวเลือกที่จะมีมาให้สำหรับบล็อกการซื้อ", + "1803338729": "เลือกประเภทสัญญาที่คุณต้องการเทรด ตัวอย่างเช่น การเทรดแบบ ขึ้น/ลง ซึ่งคุณสามารถเลือกได้จากสามตัวเลือกคือ ขึ้น หรือ ลง หรือ ทั้งคู่ ทั้งนี้ ประเภทสัญญาที่ถูกเลือกจะกำหนดตัวเลือกที่จะมีมาให้สำหรับบล็อกการซื้อ", "1804620701": "การหมดอายุ", "1804789128": "ค่าจุด Tick {{display_value}} จุด", "1806017862": "จำนวนจุด Tick สูงสุด", @@ -1800,7 +1799,7 @@ "1842266423": "กลับ", "1843336754": "เลือกเอกสาร", "1843658716": "หากคุณเลือก \"Only Downs\" คุณจะได้เงินผลตอบแทนก็ต่อเมื่อช่วงค่า Tick ที่ติดๆ กันลดลงอย่างต่อเนื่องหลังจากจุดเข้า แต่จะไม่ได้รับเงินหากว่าค่า Tick ใดในช่วงนั้นมีค่าสูงขึ้นหรือเท่ากับค่า Tick ตัวก่อนหน้า", - "1845598565": "รอบหรือเซสชั่นที่สองจะสิ้นสุดเมื่อบรรลุเป้าหมายทำกำไรที่อาจเกิดขึ้นหนึ่งหน่วยต่อรอบซึ่งเท่ากับ 1 USD หากว่าการซื้อขายดำเนินต่อไป รอบใหม่ก็จะเริ่มขึ้นอีกครั้ง", + "1845598565": "รอบหรือเซสชั่นที่สองจะสิ้นสุดเมื่อบรรลุเป้าหมายทำกำไรที่อาจเกิดขึ้นหนึ่งหน่วยต่อรอบซึ่งเท่ากับ 1 USD หากว่าการเทรดดำเนินต่อไป รอบใหม่ก็จะเริ่มขึ้นอีกครั้ง", "1845892898": "(ขั้นต่ำ: {{min_stake}} - สูงสุด: {{max_payout}})", "1846266243": "ฟีเจอร์นี้ไม่สามารถใช้ได้กับบัญชีทดลอง", "1846587187": "คุณยังไม่ได้เลือกประเทศที่พำนักอาศัยของคุณ", @@ -1831,8 +1830,8 @@ "1869486036": "คุณจะได้รับ <0>เงินผลตอบแทน ที่ <0>จุดหมดเวลา หากว่าราคาสปอตนั้นไม่เคยแตะหรือฝ่าทะเลุ <0>เส้นระดับราคาเป้าหมาย ตลอดช่วงเวลาสัญญา แต่หากว่าแตะหรือฝ่าเส้น สัญญาของคุณก็จะถูกยกเลิกก่อนกำหนด", "1869787212": "Even", "1870933427": "สกุลเงินคริปโต", - "1871196637": "เป็นจริง หากผลลัพธ์ของการซื้อขายล่าสุดตรงกับที่เลือกไว้", - "1871377550": "คุณมีบอทการซื้อขายที่สร้างไว้ล่วงหน้าแล้วมาให้บน Deriv Bot หรือไม่?", + "1871196637": "เป็นจริง หากผลลัพธ์ของการเทรดล่าสุดตรงกับที่เลือกไว้", + "1871377550": "คุณมีบอทการเทรดที่สร้างไว้ล่วงหน้าแล้วมาให้บน Deriv Bot หรือไม่?", "1871664426": "บันทึก", "1873376454": "นี่คือระดับราคาที่คุณเลือกไว้ หากข้ามเส้นระดับราคานี้ไปสัญญาของคุณจะถูกยกเลิก", "1874481756": "ใช้บล็อกนี้เพื่อซื้อสัญญาอันจำเพาะที่คุณต้องการ โดยคุณสามารถจะเพิ่มบล็อกการซื้อได้หลายอัน รวมถึงบล็อกที่มีเงื่อนไขต่างๆ เพื่อที่คุณจะกําหนดเงื่อนไขการซื้อของคุณได้ บล็อกนี้จะใช้ได้จากภายในบล็อกเงื่อนไขการซื้อเท่านั้น", @@ -1856,7 +1855,7 @@ "1881018702": "ชั่วโมง", "1881380263": "สินทรัพย์รวมในบัญชีทั้งหมดของคุณ", "1881587673": "เงินทุนทรัพย์ทั้งหมดนับตั้งแต่ที่คุณล้างสถิติครั้งล่าสุด", - "1882825238": "เริ่มเงื่อนไขการซื้อขายใหม่", + "1882825238": "เริ่มเงื่อนไขการเทรดใหม่", "1883531976": "เสมียน", "1885708031": "#", "1887257727": "R คือจำนวนรอบที่เทรดเดอร์สามารถทำการเทรดได้โดยอิงตามเกณฑ์การขาดทุนที่ระบุไว้", @@ -1870,10 +1869,10 @@ "1899898605": "ขนาดสูงสุด: 8MB", "1902547203": "แอปพลิเคชั่น macOS MetaTrader 5", "1903437648": "ตรวจพบภาพเบลอ", - "1904665809": "กลยุทธ์ Reverse Martingale ในการซื้อขายอาจให้กำไรอย่างมีนัยสำคัญแต่มันก็มาพร้อมกับความเสี่ยงอย่างสำคัญเช่นกัน ในการใช้กลยุทธ์ที่คุณเลือก Deriv Bot จะให้บริการซื้อขายอัตโนมัติพร้อมมาตรการจัดการความเสี่ยงต่างๆ เช่น การตั้งค่าทุนทรัพย์เริ่มต้น ขนาดของทุนทรัพย์ วงเงินทุนทรัพย์สูงสุด เกณฑ์การทำกำไรและเกณฑ์การขาดทุน จึงเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่รับได้ ฝึกฝนการเทรดด้วยบัญชีทดลอง และทำความเข้าใจในกลยุทธ์ก่อนที่จะเข้าซื้อขายด้วยเงินจริง", + "1904665809": "กลยุทธ์ Reverse Martingale ในการเทรดอาจให้กำไรอย่างมีนัยสำคัญแต่มันก็มาพร้อมกับความเสี่ยงอย่างสำคัญเช่นกัน ในการใช้กลยุทธ์ที่คุณเลือก Deriv Bot จะให้บริการเทรดอัตโนมัติพร้อมมาตรการจัดการความเสี่ยงต่างๆ เช่น การตั้งค่าทุนทรัพย์เริ่มต้น ขนาดของทุนทรัพย์ วงเงินทุนทรัพย์สูงสุด เกณฑ์การทำกำไรและเกณฑ์การขาดทุน จึงเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่รับได้ ฝึกฝนการเทรดด้วยบัญชีทดลอง และทำความเข้าใจในกลยุทธ์ก่อนที่จะเข้าเทรดด้วยเงินจริง", "1905032541": "ตอนนี้เราพร้อมจะยืนยันตัวตนของคุณแล้ว", "1905589481": "หากคุณต้องการเปลี่ยนสกุลเงินในบัญชีของคุณ โปรดติดต่อเราทาง <0>แชทสด", - "1906213000": "ระบบของเราจะทำให้การซื้อขายโดย Deriv Bot ทั้งหมดที่กำลังดำเนินอยู่นั้นเสร็จสิ้นไป และ Deriv Bot จะไม่ทำการซื้อขายใหม่", + "1906213000": "ระบบของเราจะทำให้การเทรดโดย Deriv Bot ทั้งหมดที่กำลังดำเนินอยู่นั้นเสร็จสิ้นไป และ Deriv Bot จะไม่ทำการเทรดใหม่", "1906639368": "หากนี่เป็นครั้งแรกที่คุณพยายามสร้างรหัสผ่านหรือคุณลืมรหัสผ่านของคุณ โปรดตั้งรหัสผ่านใหม่", "1907423697": "ทำรายได้เพิ่มเติมไปกับ Deriv API", "1908023954": "ขออภัย มีความผิดพลาดเกิดขึ้นขณะที่ประมวลผลคำขอของคุณ", @@ -1927,7 +1926,7 @@ "1959678342": "Highs & Lows", "1960240336": "อักษรตัวแรก", "1964165648": "ขาดการเชื่อมต่อ", - "1965916759": "การซื้อขายตราสารสิทธิแบบ Asians นั้นตัดสินโดยเปรียบเทียบค่า Tick ตัวสุดท้ายกับจุดค่าเฉลี่ยในช่วงเวลาสัญญา", + "1965916759": "การเทรดตราสารสิทธิแบบ Asians นั้นตัดสินโดยเปรียบเทียบค่า Tick ตัวสุดท้ายกับจุดค่าเฉลี่ยในช่วงเวลาสัญญา", "1966023998": "เปิดใช้งาน 2FA", "1966281100": "คอนโซลแผงควบคุม {{ message_type }} ค่า: {{ input_message }}", "1968025770": "เงินบิทคอยน์", @@ -1937,7 +1936,7 @@ "1971898712": "เพิ่มหรือจัดการบัญชี", "1973536221": "คุณยังไม่มีตำแหน่งการค้าที่เปิดไว้", "1973910243": "จัดการบัญชีของคุณ", - "1974273865": "ขอบเขตนี้จะทำให้แอปของบริษัทอื่นสามารถดูกิจกรรมต่างๆในบัญชีของคุณรวมถึงการตั้งค่า ขีดจำกัด งบดุล ประวัติการซื้อขาย และอื่นๆ", + "1974273865": "ขอบเขตนี้จะทำให้แอปของบริษัทอื่นสามารถดูกิจกรรมต่างๆในบัญชีของคุณรวมถึงการตั้งค่า ขีดจำกัด งบดุล ประวัติการเทรด และอื่นๆ", "1974903951": "หากคุณกด ใช่ ข้อมูลที่คุณป้อนจะสูญหาย", "1977724653": "บัญชีนี้นำเสนอ CFD สำหรับตราสารทางการเงิน", "1978218112": "แอป Google Authenticator", @@ -1954,8 +1953,8 @@ "1984700244": "ขอการป้อนข้อมูล", "1984742793": "การอัปโหลดเอกสาร", "1985366224": "ในแต่ละวัน คุณโอนเงินได้สูงสุดจำนวน {{ allowed_internal }} รายการสำหรับการโอนระหว่างบัญชี Deriv ของคุณเอง และโอนได้สูงสุดจำนวน {{ allowed_mt5 }} รายการระหว่างบัญชี Deriv และบัญชี {{platform_name_mt5}} ของคุณ", - "1985637974": "บล็อกต่างๆ ใดๆ ที่วางในบล็อกนี้จะถูกดำเนินการในทุกจุด Tick ดังนั้นหากช่วงเวลาเริ่มต้นของแท่งเทียนถูกตั้งเป็น 1 นาทีในบล็อกรูทพารามิเตอร์การซื้อขาย คำสั่งในบล็อกนี้ก็จะถูกดำเนินการทุกหนึ่งนาที โปรดวางบล็อกนี้ไว้นอกบล็อกรูทใดๆ", - "1986322868": "เมื่อการขาดทุนของคุณถึงหรือเกินจำนวนนี้ การซื้อขายของคุณจะถูกปิดโดยอัตโนมัติ", + "1985637974": "บล็อกต่างๆ ใดๆ ที่วางในบล็อกนี้จะถูกดำเนินการในทุกจุด Tick ดังนั้นหากช่วงเวลาเริ่มต้นของแท่งเทียนถูกตั้งเป็น 1 นาทีในบล็อกรูทพารามิเตอร์การเทรด คำสั่งในบล็อกนี้ก็จะถูกดำเนินการทุกหนึ่งนาที โปรดวางบล็อกนี้ไว้นอกบล็อกรูทใดๆ", + "1986322868": "เมื่อการขาดทุนของคุณถึงหรือเกินจำนวนนี้ การเทรดของคุณจะถูกปิดโดยอัตโนมัติ", "1986498784": "BTC/LTC", "1987080350": "ทดลอง", "1987447369": "แคชเชียร์ของคุณถูกล็อค", @@ -1972,13 +1971,13 @@ "1995023783": "บรรทัดแรกของที่อยู่*", "1996767628": "โปรดยืนยันข้อมูลภาษีของคุณ", "1997138507": "หากค่า Tick ตัวสุดท้ายเท่ากับค่าเฉลี่ย คุณจะไม่ได้รับเงินผลตอบแทน", - "1997313835": "เงินทุนทรัพย์ของคุณจะยังเติบโตต่อไปตราบที่ราคาสปอตปัจจุบันยังอยู่ใน <0>ช่วง ที่กำหนดไว้โดยเฉพาะจาก <0>ราคาสปอตอันก่อนหน้า มิฉะนั้นคุณจะสูญเงินทุนทรัพย์ของคุณและการซื้อขายนี้จะถูกยกเลิก", + "1997313835": "เงินทุนทรัพย์ของคุณจะยังเติบโตต่อไปตราบที่ราคาสปอตปัจจุบันยังอยู่ใน <0>ช่วง ที่กำหนดไว้โดยเฉพาะจาก <0>ราคาสปอตอันก่อนหน้า มิฉะนั้นคุณจะสูญเงินทุนทรัพย์ของคุณและการเทรดนี้จะถูกยกเลิก", "1999213036": "การรักษาความปลอดภัยที่เพิ่มขึ้นอยู่แค่เพียงคุณแตะปุ่มเดียว", "1999346412": "เพื่อการยืนยันที่รวดเร็วยิ่งขึ้น ให้ป้อนที่อยู่เดียวกับในเอกสารหลักฐานยืนยันที่อยู่ของคุณ (ดูหัวข้อด้านล่าง)", "2001222130": "ให้เช็คดูในโฟลเดอร์สแปมหรือโฟลเดอร์เมล์ขยะของคุณ หากไม่มีอยู่ในนั้นก็ให้ลองส่งอีเมล์อีกครั้ง", "2001361785": "1. เริ่มต้นด้วยเงินทุนทรัพย์เริ่มต้น สมมติว่าเป็น 1 USD", "2004052487": "การประมาณถึงอายุการใช้งานของการเทรดของคุณ", - "2007028410": "ตลาด ประเภทการซื้อขาย ประเภทสัญญา", + "2007028410": "ตลาด ประเภทการเทรด ประเภทสัญญา", "2010759971": "อัปโหลดสําเร็จ", "2010866561": "ส่งคืนยอดรวมกำไร/ขาดทุนทั้งหมด", "2011609940": "โปรดป้อนหมายเลขที่มากกว่า 0", @@ -1990,10 +1989,10 @@ "2019596693": "เอกสารนั้นถูกปฏิเสธโดยผู้ให้บริการ", "2020545256": "ปิดบัญชีของคุณหรือไม่?", "2021037737": "โปรดอัพเดทรายละเอียดของคุณเพื่อดำเนินการต่อ", - "2021161151": "ดูวิดีโอนี้ เพื่อเรียนรู้วิธีสร้างบอทซื้อขายบน Deriv Bot นอกจากนี้ ลองดูบล็อกโพสต์นี้ ซึ่งเกี่ยวกับการสร้างบอทซื้อขาย", - "2023546580": "บัญชีของคุณจะพร้อมสำหรับทำการซื้อขายเมื่อการยืนยันบัญชีของคุณเสร็จสมบูรณ์", + "2021161151": "ดูวิดีโอนี้ เพื่อเรียนรู้วิธีสร้างบอทเทรดบน Deriv Bot นอกจากนี้ ลองดูบล็อกโพสต์นี้ ซึ่งเกี่ยวกับการสร้างบอทเทรด", + "2023546580": "บัญชีของคุณจะพร้อมสำหรับทำการเทรดเมื่อการยืนยันบัญชีของคุณเสร็จสมบูรณ์", "2023659183": "นักศึกษา", - "2023762268": "ฉันชอบเว็บไซต์การซื้อขายอื่นมากกว่า", + "2023762268": "ฉันชอบเว็บไซต์การเทรดอื่นมากกว่า", "2025339348": "ย้ายออกจากแสงที่ส่องมาตรงๆ — ไม่ให้มีแสงจ้า", "2027441253": "ทำไมเราจึงเก็บรวบรวมสิ่งนี้?", "2027625329": "แถวลำดับเส้นค่าเฉลี่ย Simple Moving Array (SMAA)", @@ -2005,7 +2004,7 @@ "2030045667": "ข้อความ", "2033648953": "บล็อกนี้ให้ค่าแท่งเทียนที่ระบุเฉพาะสำหรับช่วงเวลาที่เลือกไว้", "2034803607": "คุณต้องมีอายุ 18 ปีขึ้นไป", - "2035258293": "เริ่มซื้อขายกับเรา", + "2035258293": "เริ่มเทรดกับเรา", "2035925727": "จัดเรียง {{ sort_type }} {{ sort_direction }} {{ input_list }}", "2036578466": "ควรเป็น {{value}}", "2037665157": "ขยายบล็อคทั้งหมด", @@ -2039,7 +2038,7 @@ "2066978677": "เวลา {{formatted_opening_time}} (GMT) ใน {{opening_day}},<0 /> {{opening_date}}", "2067903936": "ใบขับขี่", "2070002739": "ไม่ยอมรับ", - "2070345146": "เมื่อเปิดการซื้อขาย CFD ที่มีการใช้เลเวอเรจ", + "2070345146": "เมื่อเปิดการเทรด CFD ที่มีการใช้เลเวอเรจ", "2070518923": "นำเข้าบอทของคุณหรือแตะที่ปุ่มกลยุทธ์ด่วนเพื่อเลือกจากเทมเพลตบอทที่พร้อมใช้งาน", "2070752475": "ข้อมูลเกี่ยวกับกฎระเบียบ", "2070858497": "เอกสารของคุณดูเหมือนจะเป็นภาพแคปหน้าจอ", @@ -2048,7 +2047,7 @@ "2074235904": "โปรดระบุนามสกุล", "2074497711": "การแจ้งเตือนทาง Telegram ไม่สามารถถูกนำส่งได้", "2074713563": "4.2 การยื่นข้อร้องเรียน", - "2079925695": "หน่วย: จำนวนหน่วยที่ถูกนำมาเติมในกรณีที่การซื้อขายส่งผลให้เกิดการขาดทุน หรือจำนวนหน่วยที่ถูกลบออกไปในกรณีที่การซื้อขายส่งผลให้เกิดกำไร ตัวอย่างเช่น หากหน่วยตั้งไว้ที่ 2 เงินทุนทรัพย์จะเพิ่มขึ้นหรือลดลงสองเท่าของเงินทุนทรัพย์เริ่มต้นที่ 1 USD ซึ่งหมายความว่า มันจะเปลี่ยนไปเป็น 2 USD", + "2079925695": "หน่วย: จำนวนหน่วยที่ถูกนำมาเติมในกรณีที่การเทรดส่งผลให้เกิดการขาดทุน หรือจำนวนหน่วยที่ถูกลบออกไปในกรณีที่การเทรดส่งผลให้เกิดกำไร ตัวอย่างเช่น หากหน่วยตั้งไว้ที่ 2 เงินทุนทรัพย์จะเพิ่มขึ้นหรือลดลงสองเท่าของเงินทุนทรัพย์เริ่มต้นที่ 1 USD ซึ่งหมายความว่า มันจะเปลี่ยนไปเป็น 2 USD", "2080553498": "3. รับ chat ID โดยใช้ Telegram REST API (อ่านเพิ่มเติมได้ที่: https://core.telegram.org/bots/api#getupdates)", "2080829530": "ขายสำหรับ: {{sold_for}}", "2081622549": "ต้องเป็นตัวเลขที่มากกว่า {{ min }}", @@ -2074,7 +2073,7 @@ "2097932389": "อัปโหลดภาพแคปหน้าจอ 2 ภาพจากหน้าแสดงรายละเอียดข้อมูลส่วนบุคคลและหน้าบัญชีผ่าน <0>https://app.astropay.com/profile", "2099488590": "การเปลี่ยนแปลงในการเข้าสู่ระบบ Deriv MT5 ของคุณ", "2100713124": "บัญชี", - "2100912278": "4. หากการซื้อขายจบลงด้วยการขาดทุน เงินทุนทรัพย์สำหรับการซื้อขายครั้งถัดไปจะถูกรีเซ็ตเป็นจำนวนเงินทุนทรัพย์เริ่มต้นที่ 1 USD", + "2100912278": "4. หากการเทรดจบลงด้วยการขาดทุน เงินทุนทรัพย์สำหรับการเทรดครั้งถัดไปจะถูกรีเซ็ตเป็นจำนวนเงินทุนทรัพย์เริ่มต้นที่ 1 USD", "2101972779": "นี่เป็นกรณีเดียวกันกับตัวอย่างข้างต้นที่ใช้ลิสต์รายการ Tick", "2102572780": "ความยาวของรหัสหลักจะต้องเป็น 6 ตัวอักษร", "2104115663": "การเข้าระบบครั้งล่าสุด", @@ -2082,13 +2081,13 @@ "2104397115": "โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลของคุณเพื่อเปิดใช้งานการฝากและถอนเงิน", "2107381257": "การบำรุงรักษาระบบแคชเชียร์ตามกำหนดการล่วงหน้า", "2107882050": "ด้านหลังของเอกสารของคุณหายไป โปรดยื่นเอกสารการยืนยันตัวตนของคุณทั้งสองด้าน", - "2110365168": "จำนวนการซื้อขายได้ถึงขีดจำกัดสูงสุดแล้ว", + "2110365168": "จำนวนการเทรดได้ถึงขีดจำกัดสูงสุดแล้ว", "2111015970": "บล็อกนี้จะช่วยคุณตรวจสอบว่า สัญญาของคุณสามารถถูกนำไปขายได้หรือไม่ หากว่าขายได้ระบบจะส่งคืนค่า “ จริง” หรือไม่อย่างนั้นก็จะส่งคืนค่าเป็นสตริงว่าง", "2111528352": "สร้างตัวแปร", "2112119013": "ถ่ายภาพเซลฟี่แสดงใบหน้าของคุณ", "2112175277": "โดยมีตัวคั่น", "2113321581": "เพิ่มบัญชีเกม Deriv", - "2114766645": "การซื้อขายบางประเภทไม่อาจใช้งานได้สำหรับ {{symbol}}", + "2114766645": "การเทรดบางประเภทไม่อาจใช้งานได้สำหรับ {{symbol}}", "2115223095": "ขาดทุน", "2117165122": "1. สร้างบอทเทเลแกรมและรับโทเคน API เทเลแกรมของคุณ อ่านเพิ่มเติมเกี่ยวกับวิธีการสร้างบอทในเทเลแกรมได้ที่นี่: https://core.telegram.org/bots#6-botfather", "2117489390": "อัพเดทอัตโนมัติภายใน {{ remaining }} วินาที", @@ -2103,7 +2102,7 @@ "2133075559": "นี่หมายความว่าหลังจากที่เทรดขาดทุนติดต่อกัน 10 รอบ เทรดเดอร์รายนี้จะเสีย 100 USD นี่ถึงเกณฑ์การขาดทุนซึ่งตั้งไว้ที่ 100 USD จึงทำให้บอทหยุดทำงาน", "2133451414": "ระยะเวลา", "2133470627": "บล็อกนี้คืนค่าเป็นเงินผลตอบแทนประมาณการสำหรับประเภทการเทรดที่เลือกไว้ และสามารถใช้ได้เฉพาะในรูทบล็อก \"เงื่อนไขการซื้อ\"", - "2135563258": "ความถี่ของการซื้อขาย Forex", + "2135563258": "ความถี่ของการเทรด Forex", "2136246996": "ภาพเซลฟี่ถูกอัปโหลดแล้ว", "2136480755": "รายละเอียดบางอย่างในเอกสารของคุณดูเหมือนจะไม่ถูกต้อง ขาดหายไป หรือไม่ชัดเจน", "2137901996": "สิ่งนี้จะล้างข้อมูลทั้งหมดในบทสรุป การทำธุรกรรม และแผงบันทึกรายวัน ตัวนับทั้งหมดจะถูกรีเซ็ตเป็นศูนย์", @@ -2118,7 +2117,7 @@ "2145995536": "สร้างบัญชีใหม่", "2146336100": "ในข้อความ %1 ได้รับ %2", "2146698770": "เคล็ดลับมือโปร: คุณยังคลิกและลากบล็อกที่ต้องการออกมาได้", - "2146892766": "ประสบการณ์การซื้อขายไบนารีออปชัน", + "2146892766": "ประสบการณ์การเทรดไบนารีออปชัน", "2147244655": "ฉันจะนำเข้าบอทเทรดของฉันเองลงใน Deriv Bot ได้อย่างไร?", "-931052769": "ส่งการตรวจสอบยืนยัน", "-1004605898": "เคล็ดลับ", @@ -2246,7 +2245,7 @@ "-2010628430": "CFD และตราสารทางการเงินอื่นๆ มีความเสี่ยงสูงที่จะสูญเสียเงินอย่างรวดเร็วเนื่องจากเลเวอเรจคุณควรพิจารณาว่าคุณเข้าใจวิธีการทำงานของ CFD และตราสารทางการเงินอื่นๆ หรือไม่และคุณจะรับความเสี่ยงสูงในการสูญเสียเงินของคุณได้หรือไม่<0/><0/> เพื่อดำเนินการต่อ คุณต้องยืนยันว่าคุณเข้าใจว่าเงินทุนของคุณมีความเสี่ยง", "-863770104": "โปรดทราบว่า ในการที่คุณคลิก 'ตกลง' คุณอาจกำลังเผชิญกับความเสี่ยง คุณอาจไม่มีความรู้หรือประสบการณ์ในการประเมินหรือลดความเสี่ยงเหล่านี้อย่างเหมาะสม ซึ่งความเสี่ยงดังกล่าวอาจมีนัยสำคัญและรวมถึงความเสี่ยงในการสูญเสียเงินทั้งหมดที่คุณลงทุน", "-684271315": "OK", - "-1292808093": "ประสบการณ์การซื้อขาย", + "-1292808093": "ประสบการณ์การเทรด", "-153346659": "อัปโหลดรูปเซลฟี่ของคุณ", "-602131304": "หมายเลขหนังสือเดินทาง", "-1051213440": "โปรดอัปโหลดด้านหน้าและด้านหลังของบัตรประจำตัวประชาชนของคุณ", @@ -2348,7 +2347,7 @@ "-1781293089": "จำนวนขั้นสูงสุดของยอดรวมเงินผลตอบแทนในตำแหน่งที่เปิดอยู่", "-1412690135": "*ข้อจำกัดใดๆในการตั้งค่าระบบการกันตนเองของคุณจะมาแทนที่ขีดจำกัดเริ่มต้นเหล่านี้", "-1598751496": "แสดงถึงจำนวนสูงที่สุดของสัญญาที่คุณอาจจะซื้อได้ในวันทำการเทรดใดๆ", - "-173346300": "มูลค่าการซื้อขายสูงสุดรายวัน", + "-173346300": "มูลค่าการเทรดสูงสุดรายวัน", "-138380129": "ยอดการถอนเงินทั้งหมดที่ได้อนุญาตแล้ว", "-854023608": "หากต้องการเพิ่มขีดจำกัด โปรดยืนยันตัวตนของคุณ", "-1500958859": "ยืนยัน", @@ -2373,7 +2372,7 @@ "-1661284324": "แสดงโทเคนนี้", "-1076138910": "ซื้อ-ขาย", "-1666909852": "การชำระเงิน", - "-488597603": "ข้อมูลการซื้อขาย", + "-488597603": "ข้อมูลการเทรด", "-605778668": "ไม่เคย", "-1628008897": "โทเคน", "-1238499897": "ใช้ครั้งสุดท้าย", @@ -2381,7 +2380,7 @@ "-1803339710": "สูงสุด {{MAX_TOKEN}} อักขระ", "-408613988": "เลือกขอบเขตตามการเข้าถึงที่คุณต้องการ", "-5605257": "ขอบเขตนี้จะอนุญาตให้แอปของบุคคลที่สามทำการถอนไปยังตัวแทนชำระเงินและทำการโอนเงินระหว่างบัญชีให้กับคุณ", - "-1373485333": "ขอบเขตนี้จะอนุญาตให้แอปของบุคคลที่สามสามารถดูประวัติการซื้อขายของคุณได้", + "-1373485333": "ขอบเขตนี้จะอนุญาตให้แอปของบุคคลที่สามสามารถดูประวัติการเทรดของคุณได้", "-758221415": "ขอบเขตนี้จะอนุญาตให้แอปของบริษัทอื่นสามารถเปิดบัญชีให้กับคุณพร้อมทั้งจัดการการตั้งค่าและการใช้โทเคนของคุณ และอื่นๆ ได้ ", "-807767876": "หมายเหตุ:", "-1117963487": "ตั้งชื่อโทเคนของคุณและคลิกที่ 'สร้าง' เพื่อสร้างโทเคนของคุณ", @@ -2409,12 +2408,12 @@ "-2137450250": "คุณมีการเปลี่ยนแปลงที่ไม่ได้บันทึก คุณแน่ใจหรือไม่ว่าคุณต้องการยกเลิกการเปลี่ยนแปลงและออกจากหน้านี้", "-1067082004": "ออกจากการตั้งค่า", "-1982432743": "ดูเหมือนว่าที่อยู่ในเอกสารของคุณไม่ตรงกับที่อยู่ในโปรไฟล์ Deriv ของคุณ โปรดอัพเดทรายละเอียดส่วนตัวของคุณตอนนี้ด้วยที่อยู่ที่ถูกต้อง", - "-1451334536": "ดำเนินการซื้อขายต่อ", + "-1451334536": "ดำเนินการเทรดต่อ", "-251603364": "เอกสารหลักฐานยืนยันที่อยู่ของคุณหมดอายุแล้ว <0/>โปรดส่งอีกครั้ง", "-1425489838": "ไม่จําเป็นต้องใช้หลักฐานยืนยันที่อยู่", "-1008641170": "ในขณะนี้บัญชีของคุณยังไม่จําเป็นต้องยืนยันที่อยู่ เราจะแจ้งให้คุณทราบในอนาคตหากจำเป็นต้องมีการยืนยันที่อยู่", "-60204971": "เราไม่สามารถตรวจสอบยืนยันหลักฐานที่อยู่ของคุณได้", - "-1944264183": "เพื่อดำเนินการซื้อขายต่อ คุณต้องส่งหลักฐานยืนยันตัวตน", + "-1944264183": "เพื่อดำเนินการเทรดต่อ คุณต้องส่งหลักฐานยืนยันตัวตน", "-1088324715": "เราจะตรวจสอบเอกสารของคุณและแจ้งให้ทราบถึงสถานะของเอกสารภายใน 1-3 วันทำการ", "-329713179": "ตกลง", "-2145244263": "ข้อมูลช่องนี้ต้องระบุ ไม่อาจทิ้งให้ว่างได้", @@ -2464,13 +2463,13 @@ "-507633532": "รหัสผ่านของคุณต้องมีอักขระระหว่าง 8-16 ตัวซึ่งรวมถึงอักษรตัวพิมพ์ใหญ่และตัวพิมพ์เล็ก และตัวเลขอย่างน้อยหนึ่งตัว และอักขระพิเศษเช่น ( _ @ ? ! / # )", "-1597186502": "รีเซ็ตรหัสผ่าน {{platform}}", "-638756912": "ขีดทับตัวเลขหลักที่ 7 ถึง 12 ของหมายเลขบัตรที่แสดงอยู่ด้านหน้าบัตรเดบิต/เครดิตของคุณ⁤", - "-996691262": "เราได้แนะนำขีดจำกัดเหล่านี้มาก็เพื่อส่งเสริม <0>การซื้อขายอย่างมีความรับผิดชอบ โดยขีดจำกัดเหล่านี้เป็นตัวเลือกและคุณสามารถปรับเปลี่ยนได้ตลอดเวลา", - "-2079276011": "ขีดจำกัดเหล่านี้ใช้ได้กับการซื้อขาย Multipliers ของคุณเท่านั้น ตัวอย่างเช่น <0>การขาดทุนรวมสูงสุด ซึ่งหมายถึงการขาดทุนจากการซื้อขายทั้งหมดของคุณบนแพลตฟอร์มการซื้อขาย Multipliers", + "-996691262": "เราได้แนะนำขีดจำกัดเหล่านี้มาก็เพื่อส่งเสริม <0>การเทรดอย่างมีความรับผิดชอบ โดยขีดจำกัดเหล่านี้เป็นตัวเลือกและคุณสามารถปรับเปลี่ยนได้ตลอดเวลา", + "-2079276011": "ขีดจำกัดเหล่านี้ใช้ได้กับการเทรด Multipliers ของคุณเท่านั้น ตัวอย่างเช่น <0>การขาดทุนรวมสูงสุด ซึ่งหมายถึงการขาดทุนจากการเทรดทั้งหมดของคุณบนแพลตฟอร์มการเทรด Multipliers", "-2116570030": "หากคุณต้องการปรับขีดจำกัดของคุณ โปรด <0>ติดต่อเราผ่านแชทสด แล้วเราจะปรับเปลี่ยนให้ภายใน 24 ชั่วโมง", - "-1389915983": "คุณตัดสินใจว่าจะซื้อขายหรือเทรดเท่าไหร่และนานแค่ไหนคุณสามารถหยุดพักจากการเทรดได้ทุกเมื่อตามต้องการโดยช่วงเวลานั้นอาจอยู่ระหว่าง 6 สัปดาห์ถึง 5 ปี และเมื่อสิ้นสุดระยะเวลานั้น คุณอาจขยายเวลาพักต่อไปอีกหรือเข้าใช้งานไปทำการเทรดต่อได้ หากคุณไม่ต้องการตั้งขีดจำกัดที่เฉพาะเจาะจงก็ให้เว้นว่างช่องนี้เอาไว้", - "-1031814119": "เกี่ยวกับขีดจำกัดการซื้อขายและการกันตนเอง", - "-183468698": "วงเงินการซื้อขายและการกันตนเอง", - "-1088698009": "ขีดจำกัดของระบบการกันตนเองจะช่วยให้คุณสามารถควบคุมจำนวนเงินและเวลาที่คุณใช้ในการซื้อขายบนแพลตฟอร์ม {{platform_name_trader}}, {{platform_name_dbot}},{{platform_name_smarttrader}}, และ {{platform_name_bbot}} ของ Deriv ได้ ทั้งนี้ ขีดจำกัดที่คุณกำหนดไว้ที่นี่จะช่วยให้คุณได้ทำ <0>การซื้อขายอย่างรับผิดชอบ", + "-1389915983": "คุณตัดสินใจว่าจะเทรดหรือเทรดเท่าไหร่และนานแค่ไหนคุณสามารถหยุดพักจากการเทรดได้ทุกเมื่อตามต้องการโดยช่วงเวลานั้นอาจอยู่ระหว่าง 6 สัปดาห์ถึง 5 ปี และเมื่อสิ้นสุดระยะเวลานั้น คุณอาจขยายเวลาพักต่อไปอีกหรือเข้าใช้งานไปทำการเทรดต่อได้ หากคุณไม่ต้องการตั้งขีดจำกัดที่เฉพาะเจาะจงก็ให้เว้นว่างช่องนี้เอาไว้", + "-1031814119": "เกี่ยวกับขีดจำกัดการเทรดและการกันตนเอง", + "-183468698": "วงเงินการเทรดและการกันตนเอง", + "-1088698009": "ขีดจำกัดของระบบการกันตนเองจะช่วยให้คุณสามารถควบคุมจำนวนเงินและเวลาที่คุณใช้ในการเทรดบนแพลตฟอร์ม {{platform_name_trader}}, {{platform_name_dbot}},{{platform_name_smarttrader}}, และ {{platform_name_bbot}} ของ Deriv ได้ ทั้งนี้ ขีดจำกัดที่คุณกำหนดไว้ที่นี่จะช่วยให้คุณได้ทำ <0>การเทรดอย่างรับผิดชอบ", "-933963283": "ไม่ โปรดตรวจสอบขีดจำกัดของฉัน", "-1759860126": "ใช่ พาฉันออกจากระบบทันที", "-572347855": "{{value}} นาที", @@ -2496,7 +2495,7 @@ "-1101737402": "โปรดระบุเลือก*", "-975118358": "บัญชีของคุณจะเปิดขึ้นกับ {{legal_entity_name}} ซึ่งถูกควบคุมดูแลโดยองค์กร Malta Financial Services Authority (MFSA) และจะอยู่ภายใต้กฎหมายของมอลตา", "-2073934245": "บริการซื้อขายทางการเงินที่นำเสนอในเว็บไซต์นี้เหมาะเฉพาะสำหรับลูกค้าที่ยอมรับความเป็นไปได้ของการขาดทุนเงินทั้งหมดที่พวกเขาลงทุนไปและผู้ที่มีความเข้าใจและมีประสบการณ์เกี่ยวกับความเสี่ยงที่เกี่ยวข้องกับการซื้อสัญญาทางการเงินเท่านั้น การทำธุรกรรมในสัญญาทางการเงินมีความเสี่ยงสูง หากสัญญาที่คุณซื้อหมดอายุคุณก็จะสูญเสียเงินลงทุนทั้งหมดซึ่งรวมถึงค่าธรรมเนียมของสัญญาดังกล่าวด้วย", - "-1035494182": "คุณรับทราบว่า เราจะเปิดบัญชีให้คุณและอนุญาตให้คุณฝากเงินในระหว่างขั้นตอนการยอมรับลูกค้า โดยจะอยู่ภายใต้ดุลยพินิจของบริษัท กฎระเบียบที่เกี่ยวข้อง และขึ้นอยู่กับการตรวจสอบภายในที่กำลังนำปฏิบัติ อย่างไรก็ตาม คุณจะไม่สามารถซื้อขาย ถอนเงิน หรือฝากเงินเพิ่มเติมได้ จนกว่าการยืนยันบัญชีของคุณจะเสร็จสิ้น หากคุณไม่ให้เอกสารที่เกี่ยวข้องภายใน 30 วัน เราจะคืนเงินจำนวนเงินที่ฝากเข้ามานั้นโดยชำระผ่านวิธีการชำระเงินเดียวกับที่คุณใช้ฝาก", + "-1035494182": "คุณรับทราบว่า เราจะเปิดบัญชีให้คุณและอนุญาตให้คุณฝากเงินในระหว่างขั้นตอนการยอมรับลูกค้า โดยจะอยู่ภายใต้ดุลยพินิจของบริษัท กฎระเบียบที่เกี่ยวข้อง และขึ้นอยู่กับการตรวจสอบภายในที่กำลังนำปฏิบัติ อย่างไรก็ตาม คุณจะไม่สามารถเทรด ถอนเงิน หรือฝากเงินเพิ่มเติมได้ จนกว่าการยืนยันบัญชีของคุณจะเสร็จสิ้น หากคุณไม่ให้เอกสารที่เกี่ยวข้องภายใน 30 วัน เราจะคืนเงินจำนวนเงินที่ฝากเข้ามานั้นโดยชำระผ่านวิธีการชำระเงินเดียวกับที่คุณใช้ฝาก", "-1125193491": "เพิ่มบัญชี", "-2068229627": "ฉันไม่ใช่บุคคลที่มีสถานภาพทางการเมืองหรือ PEP และฉันไม่ได้เป็น PEP ในช่วง 12 เดือนที่ผ่านมา", "-1209644365": "ฉันยืนยันว่าคำขอของฉันเพื่อเปิดบัญชีกับ Deriv Investments (Europe) Ltd ทำขึ้นโดยความคิดริเริ่มของฉันเอง", @@ -2531,7 +2530,7 @@ "-1576856758": "มีบัญชีที่มีรายละเอียดเหล่านี้อยู่แล้ว โปรดตรวจสอบให้แน่ใจว่ารายละเอียดที่คุณป้อนนั้นถูกต้อง เนื่องจากอนุญาตให้มีบัญชีจริงเพียงบัญชีเดียวต่อลูกค้าหนึ่งราย หากนี่เป็นข้อผิดพลาด โปรดติดต่อเราผ่านทาง <0>แชทสด", "-1792723131": "เพื่อหลีกเลี่ยงความล่าช้า โปรดป้อน<0>วันเดือนปีเกิด ของคุณให้ตรงตามที่ปรากฏใน {{document_name}} ของคุณทุกประการ", "-1629894615": "ฉันมีเรื่องสําคัญทางด้านการเงินอื่นๆ", - "-844051272": "ฉันต้องการหยุดตัวเองจากการซื้อขาย", + "-844051272": "ฉันต้องการหยุดตัวเองจากการเทรด", "-1113965495": "ฉันไม่สนใจทำการเทรดอีกต่อไป", "-1224285232": "การบริการลูกค้าไม่เป็นที่น่าพอใจ", "-1231402474": "แอปที่เชื่อมต่อนั้นคือแอปพลิเคชั่นที่ได้รับอนุญาตให้เชื่อมโยงกับบัญชีของคุณผ่านโทเคน API หรือกระบวนการอนุมัติให้สิทธิ์ OAuth พวกมันจึงสามารถดำเนินการในนามของคุณได้ภายในข้อ จำกัดที่คุณตั้งค่าเอาไว้", @@ -2547,7 +2546,7 @@ "-537552700": "สัญญาเช่าบ้าน: ข้อตกลงที่ถูกต้องและเป็นปัจจุบัน", "-506510414": "วันที่และเวลา", "-1708927037": "หมายเลขประจำเครื่องคอมพิวเตอร์", - "-870902742": "คุณมีความรู้และประสบการณ์เกี่ยวกับการซื้อขายออนไลน์มากน้อยเพียงใด", + "-870902742": "คุณมีความรู้และประสบการณ์เกี่ยวกับการเทรดออนไลน์มากน้อยเพียงใด", "-1929477717": "ฉันมีวุฒิการศึกษา ประกาศนียบัตรวิชาชีพ และ/หรือประสบการณ์การทำงานที่เกี่ยวข้องกับบริการทางการเงิน", "-1540148863": "ฉันได้เข้าร่วมการสัมนา ฝึกอบรม และ/หรือเวิร์กซ็อปที่เกี่ยวข้องกับการเทรด", "-922751756": "น้อยกว่า 1 ปี", @@ -2559,8 +2558,8 @@ "-1636427115": "เลเวเรจช่วยลดความเสี่ยง", "-800221491": "เลเวเรจรับประกันผลกำไร", "-811839563": "เลเวเรจช่วยให้คุณเปิดตำแหน่งการค้าขนาดใหญ่โดยใช้เพียงเศษเสี้ยวของมูลค่าการเทรดแท้จริง ซึ่งนี่ก็อาจส่งผลให้เกิดผลกำไรที่เพิ่มพูนหรือการขาดทุนที่เพิ่มขึ้น", - "-1185193552": "ปิดการซื้อขายของคุณโดยอัตโนมัติเมื่อการขาดทุนนั้นเท่ากับหรือมากกว่าจำนวนที่กำหนด ตราบใดที่มีสภาพคล่องในตลาดเพียงพอ", - "-1046354": "ปิดการซื้อขายของคุณโดยอัตโนมัติเมื่อผลกำไรนั้นเท่ากับหรือมากกว่าจำนวนที่กำหนด ตราบใดที่มีสภาพคล่องในตลาดเพียงพอ", + "-1185193552": "ปิดการเทรดของคุณโดยอัตโนมัติเมื่อการขาดทุนนั้นเท่ากับหรือมากกว่าจำนวนที่กำหนด ตราบใดที่มีสภาพคล่องในตลาดเพียงพอ", + "-1046354": "ปิดการเทรดของคุณโดยอัตโนมัติเมื่อผลกำไรนั้นเท่ากับหรือมากกว่าจำนวนที่กำหนด ตราบใดที่มีสภาพคล่องในตลาดเพียงพอ", "-1842858448": "ทำผลกำไรที่รับประกันจากการเทรดของคุณ", "-860053164": "เมื่อทำการเทรด Multipliers", "-1250327770": "เมื่อซื้อหุ้นต่างๆ ของบริษัท", @@ -2574,11 +2573,11 @@ "-254792921": "คุณสามารถฝากเงินได้เท่านั้นในขณะนี้ หากต้องการเปิดใช้งานการถอนเงิน กรุณากรอกการประเมินทางการเงินของคุณให้เสร็จสมบูรณ์", "-1437017790": "ข้อมูลทางการเงิน", "-70342544": "เรามีหน้าที่ตามกฎหมายที่จะต้องขอข้อมูลทางการเงินของคุณ", - "-39038029": "ประสบการณ์การซื้อขาย", - "-601903492": "ประสบการณ์การซื้อขาย Forex", - "-1012699451": "ประสบการณ์การซื้อขาย CFD", - "-1894668798": "ประสบการณ์ซื้อขายตราสารทางการเงินอื่นๆ", - "-1026468600": "ความถี่ในการซื้อขายตราสารทางการเงินอื่นๆ", + "-39038029": "ประสบการณ์การเทรด", + "-601903492": "ประสบการณ์การเทรด Forex", + "-1012699451": "ประสบการณ์การเทรด CFD", + "-1894668798": "ประสบการณ์เทรดตราสารทางการเงินอื่นๆ", + "-1026468600": "ความถี่ในการเทรดตราสารทางการเงินอื่นๆ", "-1743024217": "เลือกภาษา", "-136976514": "ประเทศที่พำนัก*", "-1124948631": "ลูกค้าที่มีความเชี่ยวชาญ", @@ -2586,7 +2585,7 @@ "-1463348492": "ฉันต้องการได้รับการปฏิบัติเสมือนเป็นลูกค้าที่มีความเชี่ยวชาญคนหนึ่ง", "-1958764604": "การตั้งค่าอีเมล์", "-2068064150": "รับข้อมูลเกี่ยวกับผลิตภัณฑ์ การบริการ และกิจกรรมของ Deriv", - "-1558679249": "โปรดตรวจสอบให้แน่ใจว่าข้อมูลของคุณถูกต้อง เพราะอาจส่งผลต่อประสบการณ์การซื้อขายของคุณ", + "-1558679249": "โปรดตรวจสอบให้แน่ใจว่าข้อมูลของคุณถูกต้อง เพราะอาจส่งผลต่อประสบการณ์การเทรดของคุณ", "-1822545742": "อีเธอร์คลาสสิก", "-1334641066": "ไลท์คอยน์", "-1214036543": "ดอลลาร์สหรัฐ", @@ -2600,7 +2599,7 @@ "-484540402": "เกิดข้อผิดพลาด", "-1911549768": "บัญชี MT5 ที่ไม่สามารถเข้าถึงได้", "-1869355019": "จําเป็นต้องดําเนินการ", - "-1030102424": "คุณจะไม่สามารถซื้อขายบน Deriv ได้", + "-1030102424": "คุณจะไม่สามารถเทรดบน Deriv ได้", "-448385353": "คุณจะไม่สามารถทำธุรกรรมได้", "-1058447223": "ก่อนที่จะปิดบัญชีของคุณ:", "-912764166": "ให้ถอนเงินของคุณออกไป", @@ -2608,7 +2607,7 @@ "-2061895474": "การปิดบัญชีของคุณจะทำให้คุณออกจากระบบโดยอัตโนมัติ เราจะลบข้อมูลส่วนบุคคลของคุณทันทีที่การปฏิบัติตามภาระผูกพันทางกฎหมายของเราได้เสร็จสิ้นแล้ว", "-203298452": "ปิดบัญชี", "-937707753": "ย้อนกลับไป", - "-771109503": "ใช้ API ที่ทรงพลัง ยืดหยุ่น และฟรี ของเราในการสร้างแพลตฟอร์มการเทรดหรือซื้อขายที่กำหนดตั้งค่าได้เอง เพื่อตัวคุณเองหรือเพื่อธุรกิจของคุณ", + "-771109503": "ใช้ API ที่ทรงพลัง ยืดหยุ่น และฟรี ของเราในการสร้างแพลตฟอร์มการเทรดหรือเทรดที่กำหนดตั้งค่าได้เอง เพื่อตัวคุณเองหรือเพื่อธุรกิจของคุณ", "-1815044949": "ขณะนี้ คุณไม่มีแอปจากบุคคลภายนอกที่ได้รับอนุญาตให้เชื่อมโยงกับบัญชีของคุณ", "-1699100421": "แอปที่เชื่อมต่อคืออะไร?", "-536187647": "ยืนยันการยกเลิกการเข้าถึง?", @@ -2667,8 +2666,8 @@ "-2021135479": "ข้อมูลในช่องนี้ต้องระบุ", "-1002044401": "เลือกเอกสารของคุณ*", "-1272489896": "กรุณากรอกข้อมูลช่องนี้ให้ครบถ้วน", - "-1107320163": "ทําการซื้อขายของคุณให้เป็นอัตโนมัติ โดยไม่จําเป็นต้องเขียนชุดคำสั่งเอง", - "-829643221": "แพลตฟอร์มการซื้อขาย Multipliers", + "-1107320163": "ทําการเทรดของคุณให้เป็นอัตโนมัติ โดยไม่จําเป็นต้องเขียนชุดคำสั่งเอง", + "-829643221": "แพลตฟอร์มการเทรด Multipliers", "-2115275974": "CFD", "-1585707873": "คณะกรรมการการเงิน", "-199154602": "คณะกรรมการบริการทางการเงินวานูอาตู", @@ -2697,7 +2696,7 @@ "-1057002564": "<0>ขณะนี้เราไม่สามารถอัพเกรดคุณไปใช้ Wallet ได้และเรากำลังพยายามแก้ไขปัญหานี้โดยเร็วที่สุดเท่าที่จะทำได้ กรุณา <1>ลองอีกครั้ง<0>", "-1424352390": "<0>Wallets<1> — วิธีการแสนชาญฉลาดเพื่อจัดการเงินทุนของคุณ", "-280236366": "เปิดใช้งานตอนนี้", - "-699372497": "ทำการซื้อขายด้วยเลเวอเรจและสเปรดที่แคบเพื่อผลตอบแทนที่ดีขึ้นจากการเทรดที่สำเร็จ <0>เรียนรู้เพิ่มเติม", + "-699372497": "ทำการเทรดด้วยเลเวอเรจและสเปรดที่แคบเพื่อผลตอบแทนที่ดีขึ้นจากการเทรดที่สำเร็จ <0>เรียนรู้เพิ่มเติม", "-982095728": "รับ", "-1790089996": "ใหม่!", "-2134770229": "สินทรัพย์ทั้งหมดในบัญชีทดลองของ Deriv App และ Deriv MT5 CFD ของคุณ", @@ -2711,23 +2710,23 @@ "-710685402": "ไม่มีตำแหน่งใหม่", "-1445744852": "คุณไม่สามารถเปิดตำแหน่งใหม่ด้วยบัญชี {{from_account}} ของคุณได้อีกต่อไป กรุณาใช้บัญชี {{to_account}} ของคุณเพื่อเปิดตำแหน่งใหม่", "-1699909965": "หรือ ", - "-2127865736": "บัญชี {{from_account}} ของคุณจะถูกจัดเก็บถาวรหลังจากไม่มีการใช้งาน 30 วัน คุณยังสามารถเข้าถึงประวัติการซื้อขายของคุณได้จนกว่าบัญชีจะถูกจัดเก็บถาวร", - "-417529381": "บัญชีซื้อขายปัจจุบันของคุณ", + "-2127865736": "บัญชี {{from_account}} ของคุณจะถูกจัดเก็บถาวรหลังจากไม่มีการใช้งาน 30 วัน คุณยังสามารถเข้าถึงประวัติการเทรดของคุณได้จนกว่าบัญชีจะถูกจัดเก็บถาวร", + "-417529381": "บัญชีเทรดปัจจุบันของคุณ", "-1543281897": "โอนเงินทันทีระหว่าง Wallet ต่างๆ และบัญชีเทรดต่างๆ", "-1415400918": "รองรับหลายสกุลเงิน", "-1712363879": "ทำไมต้องใช้ Wallet", - "-348452343": "สถานะการซื้อขายที่เปิดไว้ของคุณนั้นจะไม่ได้รับผลกระทบในขณะที่เรากำลังตั้งค่า Wallet ต่างๆ ของคุณ", + "-348452343": "สถานะการเทรดที่เปิดไว้ของคุณนั้นจะไม่ได้รับผลกระทบในขณะที่เรากำลังตั้งค่า Wallet ต่างๆ ของคุณ", "-2055865877": "กฎระเบียบสำหรับพื้นที่นอกสหภาพยุโรป", "-643108528": "กฎระเบียบสำหรับพื้นที่นอกและในสหภาพยุโรป", "-1002556560": "เราไม่สามารถอัปเกรด Wallet ให้เสร็จสิ้นได้ โปรดลองอีกครั้งในภายหลังหรือติดต่อเราผ่านการแชทสด", "-2051096382": "รับเงินผลตอบแทนหลายแบบผ่านการคาดการณ์อย่างถูกต้องถึงการเคลื่อนไหวของตลาดไปกับ <0>ตราสารสิทธิ หรือได้ประโยชน์จากข้อดีของสัญญาส่วนต่าง CFD โดยไม่เสี่ยงเกินไปกว่าเงินทุนทรัพย์เริ่มต้นของคุณไปกับ <1>Multipliers", "-1638358352": "รับประโยชน์จากสัญญาส่วนต่างหรือ CFD โดยไม่เสี่ยงไปกว่าเงินทุนทรัพย์เริ่มต้นของคุณด้วย <0>Multipliers", "-744999940": "บัญชี Deriv", - "-749129977": "เปิดใช้บัญชี Deriv จริง แล้วเริ่มทำการซื้อขายและจัดการเงินของคุณ", + "-749129977": "เปิดใช้บัญชี Deriv จริง แล้วเริ่มทำการเทรดและจัดการเงินของคุณ", "-2146691203": "ทางเลือกของกฎระเบียบ", "-249184528": "คุณสามารถสร้างบัญชีจริงภายใต้กฎระเบียบของสหภาพยุโรปหรือที่ไม่ใช่สหภาพยุโรป คลิกที่ไอคอน <0><0/>เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับบัญชีเหล่านี้", "-1505234170": "เยี่ยมชม Trader's Hub", - "-1901718278": "ผลิตภัณฑ์ที่นำเสนอบนเว็บไซต์ของเรานั้นเป็นผลิตภัณฑ์อนุพันธ์ที่ซับซ้อนซึ่งมาพร้อมกับความเสี่ยงสูงที่จะขาดทุนสูญเสีย สัญญาการซื้อขายส่วนต่างหรือ CFD เป็นตราสารที่ซับซ้อนและมาพร้อมกับความเสี่ยงสูงที่จะสูญเสียเงินอย่างรวดเร็วเนื่องจากเลเวอเรจ 70.1% ของบัญชีนักลงทุนรายย่อยสูญเสียเงินเมื่อซื้อขาย CFD กับผู้ให้บริการรายนี้ ดังนั้นคุณควรพิจารณาว่าคุณเข้าใจวิธีการทำงานของผลิตภัณฑ์เหล่านี้หรือไม่ และคุณสามารถที่จะรับความเสี่ยงสูงในการสูญเสียเงินได้หรือไม่", + "-1901718278": "ผลิตภัณฑ์ที่นำเสนอบนเว็บไซต์ของเรานั้นเป็นผลิตภัณฑ์อนุพันธ์ที่ซับซ้อนซึ่งมาพร้อมกับความเสี่ยงสูงที่จะขาดทุนสูญเสีย สัญญาการเทรดส่วนต่างหรือ CFD เป็นตราสารที่ซับซ้อนและมาพร้อมกับความเสี่ยงสูงที่จะสูญเสียเงินอย่างรวดเร็วเนื่องจากเลเวอเรจ 70.1% ของบัญชีนักลงทุนรายย่อยสูญเสียเงินเมื่อเทรด CFD กับผู้ให้บริการรายนี้ ดังนั้นคุณควรพิจารณาว่าคุณเข้าใจวิธีการทำงานของผลิตภัณฑ์เหล่านี้หรือไม่ และคุณสามารถที่จะรับความเสี่ยงสูงในการสูญเสียเงินได้หรือไม่", "-1870909526": "เซิร์ฟเวอร์ของเราไม่สามารถดึงข้อมูลที่อยู่ได้", "-582721696": "จำนวนการถอนที่อนุญาตในปัจจุบันคือ {{format_min_withdraw_amount}} ถึง {{format_max_withdraw_amount}} {{currency}}", "-1975494965": "แคชเชียร์", @@ -2799,7 +2798,7 @@ "-1463156905": "เรียนรู้เพิ่มเติมเกี่ยวกับวิธีการชำระเงิน", "-972283623": "Deriv P2P-V2", "-685073712": "นี่คือบัญชี <0>{{currency}} ของคุณ {{loginid}}.", - "-1547606079": "เรายอมรับสกุลเงินดิจิทัลต่อไปนี้:", + "-1547606079": "เรายอมรับคริปโตเคอเรนซี่ต่อไปนี้:", "-1517325716": "ฝากเงินผ่านวิธีการชําระเงินต่อไปนี้:", "-639677539": "ซื้อเงินคริปโต", "-1560098002": "ซื้อคริปโตเคอเรนซี่ผ่านบริการแปลงเงินตรารัฐบาลเป็นคริปโต (Fiat onramp)", @@ -2809,7 +2808,7 @@ "-748636591": "จำเป็นต้องมีมูลค่าเงินฝากขั้นต่ำ <0>{{minimum_deposit}} {{currency}} มิฉะนั้นจะมีค่าธรรมเนียม", "-1589407981": "ในการที่จะหลีกเลี่ยงการสูญเสียเงินทุน:", "-1042704302": "ตรวจดูให้แน่ใจว่าได้คัดลอกที่อยู่บัญชี Deriv ของคุณลงในอีวอลเล็ทคริปโตของคุณอย่างถูกต้อง", - "-2108344100": "กำลังมองหาวิธีที่จะซื้อสกุลเงินดิจิทัลอยู่ใช่ไหม? <0>ลองบริการเฟียตออนรัมป์", + "-2108344100": "กำลังมองหาวิธีที่จะซื้อคริปโตเคอเรนซี่อยู่ใช่ไหม? <0>ลองบริการเฟียตออนรัมป์", "-598073640": "เกี่ยวกับเงินดิจิทัล Tether (Ethereum)", "-275902914": "เหรียญดิจิทัล Tether on Ethereum (eUSDT)", "-1188009792": "เงินดิจิทัล Tether บน Omni Layer (USDT)", @@ -2824,9 +2823,9 @@ "-338505133": "เราจะไม่เรียกเก็บค่าธรรมเนียมการโอนสำหรับการโอนเงินในสกุลเงินเดียวกันระหว่างบัญชีเงินตรารัฐบาล Deriv กับบัญชี {{platform_name_mt5}} ของคุณ หรือระหว่างบัญชีเงินตรารัฐบาล Deriv กับบัญชี {{platform_name_ctrader}} ของคุณ และระหว่างบัญชีเงินตรารัฐบาล Deriv กับบัญชี {{platform_name_dxtrade}} ของคุณ", "-2056016338": "คุณจะไม่ถูกเรียกเก็บค่าธรรมเนียมการโอนสำหรับการโอนเงินในสกุลเงินเดียวกันระหว่างบัญชีเงินตรารัฐบาล Deriv และบัญชี {{platform_name_mt5}} ของคุณ", "-599632330": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 1% สำหรับการโอนเงินในสกุลเงินต่างๆ ระหว่างบัญชีเงินเฟียต Deriv และบัญชี {{platform_name_mt5}} และระหว่างบัญชีเงินเฟียต Deriv และบัญชี {{platform_name_dxtrade}}", - "-1196994774": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} แล้วแต่จำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างบัญชีสกุลเงินดิจิทัล Deriv ของคุณ", - "-993556039": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} โดยแล้วแต่ว่าจำนวนใดจะสูงกว่ากัน สำหรับการโอนเงินระหว่างบัญชีสกุลเงินดิจิทัล Deriv และบัญชี DMT5 ของคุณและระหว่างบัญชีสกุลเงินดิจิทัล Deriv และบัญชี {{platform_name_dxtrade}} ของคุณ", - "-1382702462": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} โดยแล้วแต่ว่าจำนวนใดจะสูงกว่ากัน สำหรับการโอนเงินระหว่างบัญชีสกุลเงินดิจิทัล Deriv และบัญชี DMT5 ของคุณ", + "-1196994774": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} แล้วแต่จำนวนใดจะสูงกว่า สำหรับการโอนเงินระหว่างบัญชีคริปโตเคอเรนซี่ Deriv ของคุณ", + "-993556039": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} โดยแล้วแต่ว่าจำนวนใดจะสูงกว่ากัน สำหรับการโอนเงินระหว่างบัญชีคริปโตเคอเรนซี่ Deriv และบัญชี DMT5 ของคุณและระหว่างบัญชีคริปโตเคอเรนซี่ Deriv และบัญชี {{platform_name_dxtrade}} ของคุณ", + "-1382702462": "เราจะเรียกเก็บค่าธรรมเนียมการโอน 2% หรือ {{minimum_fee}} {{currency}} โดยแล้วแต่ว่าจำนวนใดจะสูงกว่ากัน สำหรับการโอนเงินระหว่างบัญชีคริปโตเคอเรนซี่ Deriv และบัญชี DMT5 ของคุณ", "-1339063554": "คุณสามารถโอนระหว่างบัญชีเงินตรารัฐบาล Deriv บัญชีคริปโตเคอเรนซี่ บัญชี {{platform_name_mt5}} บัญชี {{platform_name_ctrader}} และบัญชี {{platform_name_dxtrade}} ของคุณได้", "-1151983985": "วงเงินสำหรับการโอนอาจแตกต่างกันไปขึ้นอยู่กับอัตราแลกเปลี่ยน", "-1747571263": "โปรดทราบว่า บางการโอนอาจจะไม่สามารถทำได้", @@ -2878,7 +2877,7 @@ "-1707299138": "ที่อยู่วอลเล็ท {{currency_symbol}} ของคุณ", "-38063175": "wallet {{account_text}}", "-705272444": "อัปโหลดหลักฐานการยืนยันตัวตนเพื่อทำการยืนยันตัวตนของคุณ", - "-130833284": "โปรดทราบว่า วงเงินสูงสุดและต่ำสุดในการถอนของคุณนั้นไม่ได้อยู่คงที่ แต่จะเปลี่ยนไปตามความผันผวนสูงของสกุลเงินดิจิทัล", + "-130833284": "โปรดทราบว่า วงเงินสูงสุดและต่ำสุดในการถอนของคุณนั้นไม่ได้อยู่คงที่ แต่จะเปลี่ยนไปตามความผันผวนสูงของคริปโตเคอเรนซี่", "-1531269493": "เราจะส่งอีเมล์ถึงคุณเมื่อธุรกรรมของคุณได้รับการประมวลผลแล้ว", "-1572746946": "Asian Up", "-686840306": "Asian Down", @@ -2906,7 +2905,7 @@ "-1845434627": "คือ", "-931434605": "นี้", "-740712821": "A", - "-187634388": "บล็อกนี้จำเป็นต้องมีอยู่ตามข้อบังคับ ซึ่งที่นี่คือที่ๆ คุณสามารถตัดสินใจได้ว่า บอทของคุณควรดําเนินการซื้อขายต่อหรือไม่ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น", + "-187634388": "บล็อกนี้จำเป็นต้องมีอยู่ตามข้อบังคับ ซึ่งที่นี่คือที่ๆ คุณสามารถตัดสินใจได้ว่า บอทของคุณควรดําเนินการเทรดต่อหรือไม่ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น", "-2105473795": "นี่คือพารามิเตอร์อินพุตตัวเดียวที่จะกําหนดว่า บล็อกข้อมูลที่ส่งออกมาจะถูกจัดในรูปแบบใด หากพารามิเตอร์อินพุตนี้ระบุว่าเป็น \"สตริง\" สกุลเงินของบัญชีก็จะถูกเพิ่มเข้ามา", "-1800436138": "2. สำหรับ \"จำนวน\": 1325.68", "-530632460": "บล็อกนี้ใช้เพื่อกําหนดว่าราคาตลาดเคลื่อนที่ไปในทิศทางที่เลือกหรือไม่ โดยมันจะแสดงค่าเป็น \"จริง\" หรือ \"เท็จ\"", @@ -2915,7 +2914,7 @@ "-489739641": "2. หากทิศทางที่เลือกคือ \"Rise\" และค่าของจุด Tick ก่อนหน้านี้มีมากกว่าค่าของจุด Tick ปัจจุบัน ข้อมูลที่ส่งออกมาจะเป็น \"จริง\" หรือไม่อย่างนั้นข้อมูลที่ส่งออกมาจะแสดงเป็นสตริงว่าง", "-2116076360": "มีข้อความ 4 ประเภท:", "-1421941045": "2. 'คำเตือน' จะแสดงข้อความเป็นสีเหลืองเพื่อเน้นว่าเป็นสิ่งที่ต้องให้ความสนใจ", - "-277850921": "หากเลือก \"ได้กำไร\" ระบบจะส่งคืนค่าว่า \"จริง\" หากว่าการซื้อขายครั้งสุดท้ายก่อนหน้านี้ของคุณนั้นสำเร็จ หรือไม่อย่างนั้นมันจะส่งคืนค่าเป็นสตริงว่าง", + "-277850921": "หากเลือก \"ได้กำไร\" ระบบจะส่งคืนค่าว่า \"จริง\" หากว่าการเทรดครั้งสุดท้ายก่อนหน้านี้ของคุณนั้นสำเร็จ หรือไม่อย่างนั้นมันจะส่งคืนค่าเป็นสตริงว่าง", "-1918487001": "ตัวอย่าง:", "-2139916657": "1. จากตัวอย่างด้านล่าง การวนซ้ำถูกยกเลิกในกรณีที่ \"x\" คือ \"False\" แม้ว่าจะมีการวนซ้ำเพียงครั้งเดียวเท่านั้นที่เสร็จสมบูรณ์", "-1238900333": "2. จากตัวอย่างด้านล่าง ลูปการวนซ้ำจะกระโดดไปยังรอบวนถัดไปโดยที่ไม่ต้องดำเนินการตามในบล็อกด้านล่างในกรณีที่ \"x\" คือ \"False\"", @@ -2954,7 +2953,7 @@ "-555996976": "- เวลาเข้า: เวลาเริ่มต้นของสัญญา", "-1391071125": "- เวลาออก: เวลาหมดอายุของสัญญา", "-1961642424": "- ค่าออก: ค่าของจุด Tick สุดท้ายของสัญญา", - "-111312913": "- Barrier: มูลค่าเส้นระดับราคาเป้าหมายในสัญญา (สามารถใช้ได้กับประเภทการซื้อขายที่เกี่ยวข้องกับเส้นระดับราคาเป้าหมาย เช่น Stays In/Out Touch/No Touch เป็นต้น)", + "-111312913": "- Barrier: มูลค่าเส้นระดับราคาเป้าหมายในสัญญา (สามารถใช้ได้กับประเภทการเทรดที่เกี่ยวข้องกับเส้นระดับราคาเป้าหมาย เช่น Stays In/Out Touch/No Touch เป็นต้น)", "-674283099": "- ผลลัพธ์: ผลลัพธ์ของสัญญาล่าสุด: \"ได้กำไร\" หรือ \"ขาดทุน\"", "-704543890": "บล็อกนี้ให้คุณเห็นค่าต่างๆของแท่งเทียนที่เลือกไว้ เช่น ราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิด บล๊อกนี้จำเป็นต้องใช้แท่งเทียนเป็นพารามิเตอร์ป้อนข้อมูล", "-482281200": "จากตัวอย่างด้านล่าง ราคาเปิดถูกกำหนดให้กับตัวแปร \"op\"", @@ -2974,84 +2973,84 @@ "-1190046167": "บล็อกนี้แสดงกล่องสนทนาโต้ตอบที่ใช้ข้อความที่กำหนดเอง เมื่อกล่องสนทนาปรากฏขึ้น กลยุทธ์ของคุณจะถูกหยุดชั่วคราวและจะทำงานอีกครั้งหลังจากที่คลิก \"ตกลง\"", "-859028989": "จากตัวอย่างนี้ วันที่และเวลาจะถูกแสดงในกล่องการแจ้งเตือนสีเขียว", "-1452086215": "จากตัวอย่างนี้ สัญญา Rise นั้นจะถูกซื้อที่เวลาเที่ยงคืนของวันที่ 1 สิงหาคม ค.ศ. 2019", - "-1765276625": "คลิกเมนู Multiplier แบบเลื่อนลงแล้วเลือกมูลค่า Multiplier ที่คุณต้องการใช้ซื้อขาย", + "-1765276625": "คลิกเมนู Multiplier แบบเลื่อนลงแล้วเลือกมูลค่า Multiplier ที่คุณต้องการใช้เทรด", "-1872233077": "ผลกำไรที่ประมาณการของคุณจะถูกคูณด้วยมูลค่า Multiplier ที่คุณเลือก", "-614454953": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับ Multipliers โปรดไปที่หน้า <0>Multipliers", "-2078588404": "เลือกประเภทตลาดและสินทรัพย์ตามที่คุณต้องการ ตัวอย่างเช่น Forex > สกุลเงินคู่หลัก > AUD/JPY", - "-2037446013": "2. ประเภทการซื้อขาย", - "-533927844": "เลือกประเภทการซื้อขายที่คุณต้องการ ตัวอย่างเช่น Up/Down > Rise/Fall", + "-2037446013": "2. ประเภทการเทรด", + "-533927844": "เลือกประเภทการเทรดที่คุณต้องการ ตัวอย่างเช่น Up/Down > Rise/Fall", "-1192411640": "4. ช่วงเวลาตามที่ตั้งค่าเริ่มต้นของแท่งเทียน", - "-485434772": "ตัวเลือกในการซื้อขาย", + "-485434772": "ตัวเลือกในการเทรด", "-1827646586": "บล็อกนี้กําหนดค่าให้กับตัวแปร ให้คุณสร้างตัวแปรหากว่ายังไม่มีตัวแปรอยู่", "-254421190": "ลิสต์รายการ: ({{message_length}})", "-1616649196": "ผลลัพธ์", "-90107030": "ไม่พบผลลัพธ์", "-1373954791": "ควรเป็นตัวเลขที่ถูกต้อง", "-1278608332": "โปรดป้อนตัวเลขระหว่าง 0 ถึง {{api_max_losses}}", - "-287597204": "ป้อนขีดจำกัดเพื่อให้บอทของคุณหยุดการซื้อขายเมื่อตรงตามเงื่อนไขที่กำหนดเหล่านี้", + "-287597204": "ป้อนขีดจำกัดเพื่อให้บอทของคุณหยุดการเทรดเมื่อตรงตามเงื่อนไขที่กำหนดเหล่านี้", "-1445989611": "จำกัดการขาดทุนที่อาจเกิดขึ้นของคุณในแต่ละวันจากทุกแพลตฟอร์ม Deriv", - "-152878438": "จำนวนสูงสุดของการซื้อขายที่บอทของคุณจะดำเนินการในการรันครั้งนี้", + "-152878438": "จำนวนสูงสุดของการเทรดที่บอทของคุณจะดำเนินการในการรันครั้งนี้", "-1490942825": "ประยุกต์และเรียกใช้", "-2067572496": "คุณเพิ่งหยุดการทำงานของบอท สัญญาใดๆ ที่เปิดอยู่จะสามารถดูได้ในหน้า รายงาน", "-992003496": "การเปลี่ยนแปลงที่คุณทำจะไม่ส่งผลกระทบต่อบอทที่กำลังรันอยู่", "-1778025545": "คุณนำเข้าบอทสำเร็จแล้ว", "-179005984": "บันทึก", "-610059687": "สำรวจกลยุทธ์ D’Alembert ใน Deriv Bot", - "-1226666341": "กลยุทธ์ D'Alembert เกี่ยวข้องกับการเพิ่มเงินทุนทรัพย์ของคุณหลังจากการเทรดที่ขาดทุนและการลดเงินทุนทรัพย์ลงหลังจากการซื้อขายที่ประสบความสำเร็จโดยเป็นไปตามจำนวนหน่วยที่กำหนดไว้ล่วงหน้า", + "-1226666341": "กลยุทธ์ D'Alembert เกี่ยวข้องกับการเพิ่มเงินทุนทรัพย์ของคุณหลังจากการเทรดที่ขาดทุนและการลดเงินทุนทรัพย์ลงหลังจากการเทรดที่ประสบความสำเร็จโดยเป็นไปตามจำนวนหน่วยที่กำหนดไว้ล่วงหน้า", "-312844882": "เงินทุนทรัพย์เริ่มต้น: จำนวนเงินที่คุณจ่ายเพื่อเข้าสู่การเทรด นี่คือจุดเริ่มต้นสำหรับการเปลี่ยนแปลงใดๆ เกี่ยวกับเงินทุนทรัพย์โดยขึ้นอยู่กับไดนามิกของกลยุทธ์ที่ใช้", "-1173302981": "1. เริ่มต้นด้วยเงินทุนทรัพย์เริ่มต้น ในตัวอย่างนี้เราจะใช้ 1 USD", "-1540106116": "เกณฑ์กำไรขาดทุน", - "-894905768": "ในการใช้ Deriv Bot เทรดเดอร์สามารถกำหนดเกณฑ์การทำกำไรและการขาดทุนเพื่อรักษาผลกำไรที่อาจเกิดขึ้นและจำกัดการขาดทุนที่อาจเกิดขึ้นได้ ซึ่งนี่หมายความว่า บอทการซื้อขายจะหยุดโดยอัตโนมัติเมื่อถึงเกณฑ์กำไรหรือขาดทุนที่ตั้งไว้ มันเป็นรูปแบบการจัดการความเสี่ยงที่อาจเพิ่มผลตอบแทนได้ ตัวอย่างเช่น หากเทรดเดอร์กำหนดเกณฑ์การทำกำไรที่ 100 USD และกลยุทธ์มีกำไรเกิน 100 USD จากการซื้อขายทั้งหมด บอทก็จะหยุดทำงาน", + "-894905768": "ในการใช้ Deriv Bot เทรดเดอร์สามารถกำหนดเกณฑ์การทำกำไรและการขาดทุนเพื่อรักษาผลกำไรที่อาจเกิดขึ้นและจำกัดการขาดทุนที่อาจเกิดขึ้นได้ ซึ่งนี่หมายความว่า บอทการเทรดจะหยุดโดยอัตโนมัติเมื่อถึงเกณฑ์กำไรหรือขาดทุนที่ตั้งไว้ มันเป็นรูปแบบการจัดการความเสี่ยงที่อาจเพิ่มผลตอบแทนได้ ตัวอย่างเช่น หากเทรดเดอร์กำหนดเกณฑ์การทำกำไรที่ 100 USD และกลยุทธ์มีกำไรเกิน 100 USD จากการเทรดทั้งหมด บอทก็จะหยุดทำงาน", "-1946134465": "ที่ไหน:", "-248283982": "B คือเกณฑ์การขาดทุน", "-1148521416": "f คือการเพิ่มหน่วย", "-211800490": "สูตร D’Alembert 2", - "-1772692202": "สูตรนี้ช่วยให้คุณวางแผนการซื้อขายของคุณโดยคำนึงถึงจำนวนเงินที่คุณมีและระดับความเสี่ยงที่คุณรับได้ ดังนั้นมันจึงเกี่ยวข้องกับการกำหนดเกณฑ์การขาดทุนของคุณและเงินทุนทรัพย์เริ่มต้นที่คุณต้องการใช้เทรด หลังจากนั้นคุณจะใช้สูตรนี้เพื่อคำนวณหาจำนวนรอบที่คุณสามารถซื้อขายได้ กระบวนการนี้ให้ข้อมูลเชิงลึกเกี่ยวกับขนาดเงินทุนทรัพย์และความคาดหวัง", - "-2107238266": "ระบบ D'Alembert เสนอการซื้อขายที่สมดุลมากขึ้นผ่านการเพิ่มเงินทุนทรัพย์อย่างมีการควบคุม และด้วยตัวช่วยในการบริหารความเสี่ยงเช่น การตั้งขีดจำกัดวงเงินทุนทรัพย์ มันจึงทำงานอัตโนมัติได้อย่างมีประสิทธิภาพใน Deriv Bot อย่างไรก็ตาม เทรดเดอร์ควรประเมินระดับของความเสี่ยงที่ยอมรับได้อย่างละเอียด แล้วทดสอบกลยุทธ์ในบัญชีทดลองเพื่อให้สอดคล้องกับสไตล์การเทรดของพวกเขาก่อนจะทำการซื้อขายด้วยเงินจริง สิ่งนี้ช่วยในการปรับแนวทางให้เหมาะสมและสร้างความสมดุลระหว่างกำไรและขาดทุนที่อาจเกิดขึ้นในขณะที่ก็จัดการความเสี่ยงอีกด้วย", + "-1772692202": "สูตรนี้ช่วยให้คุณวางแผนการเทรดของคุณโดยคำนึงถึงจำนวนเงินที่คุณมีและระดับความเสี่ยงที่คุณรับได้ ดังนั้นมันจึงเกี่ยวข้องกับการกำหนดเกณฑ์การขาดทุนของคุณและเงินทุนทรัพย์เริ่มต้นที่คุณต้องการใช้เทรด หลังจากนั้นคุณจะใช้สูตรนี้เพื่อคำนวณหาจำนวนรอบที่คุณสามารถเทรดได้ กระบวนการนี้ให้ข้อมูลเชิงลึกเกี่ยวกับขนาดเงินทุนทรัพย์และความคาดหวัง", + "-2107238266": "ระบบ D'Alembert เสนอการเทรดที่สมดุลมากขึ้นผ่านการเพิ่มเงินทุนทรัพย์อย่างมีการควบคุม และด้วยตัวช่วยในการบริหารความเสี่ยงเช่น การตั้งขีดจำกัดวงเงินทุนทรัพย์ มันจึงทำงานอัตโนมัติได้อย่างมีประสิทธิภาพใน Deriv Bot อย่างไรก็ตาม เทรดเดอร์ควรประเมินระดับของความเสี่ยงที่ยอมรับได้อย่างละเอียด แล้วทดสอบกลยุทธ์ในบัญชีทดลองเพื่อให้สอดคล้องกับสไตล์การเทรดของพวกเขาก่อนจะทำการเทรดด้วยเงินจริง สิ่งนี้ช่วยในการปรับแนวทางให้เหมาะสมและสร้างความสมดุลระหว่างกำไรและขาดทุนที่อาจเกิดขึ้นในขณะที่ก็จัดการความเสี่ยงอีกด้วย", "-500873566": "ข้อสงวนสิทธิ์:", - "-344769349": "โปรดทราบว่า แม้ว่าเราจะใช้ตัวเลขกลมๆ มาสาธิต แต่เงินทุนทรัพย์จำนวนหนึ่งใดนั้นจะไม่อาจรับประกันถึงจำนวนเงินที่แน่นอนที่จะได้รับจากการซื้อขายที่ประสบความสำเร็จ ตัวอย่างเช่น เงินทุนทรัพย์ 1 USD ไม่จำเป็นต้องเท่ากับกำไร 1 USD ในการซื้อขายที่ประสบความสำเร็จ", + "-344769349": "โปรดทราบว่า แม้ว่าเราจะใช้ตัวเลขกลมๆ มาสาธิต แต่เงินทุนทรัพย์จำนวนหนึ่งใดนั้นจะไม่อาจรับประกันถึงจำนวนเงินที่แน่นอนที่จะได้รับจากการเทรดที่ประสบความสำเร็จ ตัวอย่างเช่น เงินทุนทรัพย์ 1 USD ไม่จำเป็นต้องเท่ากับกำไร 1 USD ในการเทรดที่ประสบความสำเร็จ", "-818800551": "สำรวจกลยุทธ์ Martingale ใน Deriv Bot", - "-533490374": "นี่คือพารามิเตอร์การซื้อขายที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ Martingale", + "-533490374": "นี่คือพารามิเตอร์การเทรดที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ Martingale", "-1507161059": "Multiplier: ตัวคูณหรือ multiplier ที่ใช้เพิ่อเพิ่มเงินทุนทรัพย์ของคุณหากคุณเทรดขาดทุน โดยค่าจะต้องมากกว่า 1", "-1333404686": "ตัวอย่างกลยุทธ์ Martingale", - "-1755877136": "3. หากการซื้อขายครั้งแรกสิ้นสุดด้วยการขาดทุน Deriv Bot จะเพิ่มเงินทุนทรัพย์ของคุณเป็นสองเท่าโดยอัตโนมัติสำหรับการซื้อขายครั้งถัดไปเป็น 2 USD ทั้งนี้ Deriv Bot จะยังคงเพิ่มเงินทุนทรัพย์เป็นสองเท่าหลังจากทุกการเทรดที่ขาดทุน", - "-1297651002": "หากคุณกำลังจะเริ่มซื้อขายและยังไม่ได้ตั้งวงเงินทุนทรัพย์สูงสุดตามกลยุทธ์การจัดการความเสี่ยง คุณสามารถกำหนดระยะเวลาที่เงินของคุณจะอยู่ได้นานแค่ไหนได้โดยใช้กลยุทธ์ Martingale เพียงคุณใช้สูตรนี้", + "-1755877136": "3. หากการเทรดครั้งแรกสิ้นสุดด้วยการขาดทุน Deriv Bot จะเพิ่มเงินทุนทรัพย์ของคุณเป็นสองเท่าโดยอัตโนมัติสำหรับการเทรดครั้งถัดไปเป็น 2 USD ทั้งนี้ Deriv Bot จะยังคงเพิ่มเงินทุนทรัพย์เป็นสองเท่าหลังจากทุกการเทรดที่ขาดทุน", + "-1297651002": "หากคุณกำลังจะเริ่มเทรดและยังไม่ได้ตั้งวงเงินทุนทรัพย์สูงสุดตามกลยุทธ์การจัดการความเสี่ยง คุณสามารถกำหนดระยะเวลาที่เงินของคุณจะอยู่ได้นานแค่ไหนได้โดยใช้กลยุทธ์ Martingale เพียงคุณใช้สูตรนี้", "-46865201": "สูตร Martingale 1", "-116397598": "m คือ multiplier ของ Martingale", "-658161609": "จำนวนรอบ R ≈ 9.965", "-288082521": "นี่หมายความว่า หลังการเทรดขาดทุนติดต่อกัน 10 รอบ เทรดเดอร์จะสูญเสีย 1023 USD ซึ่งจะเกินเกณฑ์การขาดทุนซึ่งตั้งที่ 1000 USD จึงหยุดการทำงานของบอท", - "-770387160": "กลยุทธ์ Martingale ในการซื้อขายอาจให้กำไรอย่างมีนัยสำคัญแต่มันก็มาพร้อมกับความเสี่ยงอย่างสำคัญเช่นกัน ในการใช้กลยุทธ์ที่คุณเลือก Deriv Bot จะให้บริการซื้อขายอัตโนมัติพร้อมมาตรการจัดการความเสี่ยงต่างๆ เช่น การตั้งค่าทุนทรัพย์เริ่มต้น ขนาดของทุนทรัพย์ วงเงินทุนทรัพย์สูงสุด เกณฑ์การทำกำไรและเกณฑ์การขาดทุน จึงเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่รับได้ ฝึกฝนการเทรดด้วยบัญชีทดลอง และทำความเข้าใจในกลยุทธ์ก่อนที่จะเข้าซื้อขายด้วยเงินจริง", - "-1901073152": "นี่คือพารามิเตอร์การซื้อขายที่ใช้สำหรับกลยุทธ์ Oscar’s Grind ใน Deriv Bot", + "-770387160": "กลยุทธ์ Martingale ในการเทรดอาจให้กำไรอย่างมีนัยสำคัญแต่มันก็มาพร้อมกับความเสี่ยงอย่างสำคัญเช่นกัน ในการใช้กลยุทธ์ที่คุณเลือก Deriv Bot จะให้บริการเทรดอัตโนมัติพร้อมมาตรการจัดการความเสี่ยงต่างๆ เช่น การตั้งค่าทุนทรัพย์เริ่มต้น ขนาดของทุนทรัพย์ วงเงินทุนทรัพย์สูงสุด เกณฑ์การทำกำไรและเกณฑ์การขาดทุน จึงเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่รับได้ ฝึกฝนการเทรดด้วยบัญชีทดลอง และทำความเข้าใจในกลยุทธ์ก่อนที่จะเข้าเทรดด้วยเงินจริง", + "-1901073152": "นี่คือพารามิเตอร์การเทรดที่ใช้สำหรับกลยุทธ์ Oscar’s Grind ใน Deriv Bot", "-1575153036": "ตัวอย่างกลยุทธ์ Oscar’s Grind", - "-732418614": "ตารางด้านบนแสดงให้เห็นถึงหลักการนี้โดยแสดงให้เห็นว่า เมื่อมีการซื้อขายที่ประสบความสำเร็จเกิดขึ้นและบรรลุเป้าหมายการทำกำไรที่อาจเกิดขึ้นหนึ่งหน่วย ซึ่งก็คือ 1 USD ในตัวอย่างนี้ เซสชั่นจะสิ้นสุดลง หากการเทรดยังคงดำเนินต่อไป เซสชั่นใหม่ก็จะเริ่มขึ้น", + "-732418614": "ตารางด้านบนแสดงให้เห็นถึงหลักการนี้โดยแสดงให้เห็นว่า เมื่อมีการเทรดที่ประสบความสำเร็จเกิดขึ้นและบรรลุเป้าหมายการทำกำไรที่อาจเกิดขึ้นหนึ่งหน่วย ซึ่งก็คือ 1 USD ในตัวอย่างนี้ เซสชั่นจะสิ้นสุดลง หากการเทรดยังคงดำเนินต่อไป เซสชั่นใหม่ก็จะเริ่มขึ้น", "-106266344": "หลักการที่ 3: เงินทุนทรัพย์จะปรับให้เข้ากับขนาดช่องว่างระหว่างการขาดทุนปัจจุบันและกำไรเป้าหมายสำหรับเซสชั่น", "-492908094": "ในรอบที่ 7 เงินทุนทรัพย์จะถูกปรับลงจาก 2 USD เป็น 1 USD เพื่อให้บรรลุผลกำไรเป้าหมายที่ 1 USD", - "-90079299": "ในการใช้ Deriv Bot เทรดเดอร์สามารถกำหนดเกณฑ์การทำกำไรและการขาดทุนเพื่อรักษาผลกำไรที่อาจเกิดขึ้นและจำกัดการขาดทุนที่อาจเกิดขึ้นได้ ซึ่งนี่หมายความว่า บอทการซื้อขายจะหยุดโดยอัตโนมัติเมื่อถึงเกณฑ์กำไรหรือขาดทุนที่ตั้งไว้ มันเป็นรูปแบบการจัดการความเสี่ยงที่อาจส่งเสริมการเทรดที่สำเร็จและอาจจำกัดผลกระทบการขาดทุนได้ ตัวอย่างเช่น หากเทรดเดอร์กำหนดเกณฑ์การทำกำไรที่ 100 USD และกลยุทธ์มีกำไรเกิน 100 USD จากการซื้อขายทั้งหมด บอทก็จะหยุดทำงาน", - "-1549673884": "กลยุทธ์ Oscar’s Grind นำเสนอการเข้าหาอย่างมีระเบียบวินัยสำหรับผลกำไรที่เพิ่มขึ้นผ่านการเพิ่มเงินทุนทรัพย์อย่างเป็นระบบ ดังนั้นเมื่อรวมเข้ากับ Deriv Bot ที่มีตัวจัดการความเสี่ยงที่เหมาะสม เช่น เกณฑ์การทำกำไรหรือการขาดทุน มันก็จะนำเสนอเทคนิคการซื้อขายอัตโนมัติที่อาจมีประสิทธิภาพให้กับเทรดเดอร์ได้ อย่างไรก็ตาม เทรดเดอร์ควรประเมินความเสี่ยงที่ยอมรับได้อย่างละเอียดและลองซื้อขายในบัญชีทดลองก่อนเพื่อทำความคุ้นเคยกับกลยุทธ์ก่อนที่จะซื้อขายด้วยเงินจริง", + "-90079299": "ในการใช้ Deriv Bot เทรดเดอร์สามารถกำหนดเกณฑ์การทำกำไรและการขาดทุนเพื่อรักษาผลกำไรที่อาจเกิดขึ้นและจำกัดการขาดทุนที่อาจเกิดขึ้นได้ ซึ่งนี่หมายความว่า บอทการเทรดจะหยุดโดยอัตโนมัติเมื่อถึงเกณฑ์กำไรหรือขาดทุนที่ตั้งไว้ มันเป็นรูปแบบการจัดการความเสี่ยงที่อาจส่งเสริมการเทรดที่สำเร็จและอาจจำกัดผลกระทบการขาดทุนได้ ตัวอย่างเช่น หากเทรดเดอร์กำหนดเกณฑ์การทำกำไรที่ 100 USD และกลยุทธ์มีกำไรเกิน 100 USD จากการเทรดทั้งหมด บอทก็จะหยุดทำงาน", + "-1549673884": "กลยุทธ์ Oscar’s Grind นำเสนอการเข้าหาอย่างมีระเบียบวินัยสำหรับผลกำไรที่เพิ่มขึ้นผ่านการเพิ่มเงินทุนทรัพย์อย่างเป็นระบบ ดังนั้นเมื่อรวมเข้ากับ Deriv Bot ที่มีตัวจัดการความเสี่ยงที่เหมาะสม เช่น เกณฑ์การทำกำไรหรือการขาดทุน มันก็จะนำเสนอเทคนิคการเทรดอัตโนมัติที่อาจมีประสิทธิภาพให้กับเทรดเดอร์ได้ อย่างไรก็ตาม เทรดเดอร์ควรประเมินความเสี่ยงที่ยอมรับได้อย่างละเอียดและลองเทรดในบัญชีทดลองก่อนเพื่อทำความคุ้นเคยกับกลยุทธ์ก่อนที่จะเทรดด้วยเงินจริง", "-655650222": "สำรวจกลยุทธ์ Reverse D’Alembert ใน Deriv Bot", - "-1864807973": "กลยุทธ์ Reverse D'Alembert เกี่ยวข้องกับการเพิ่มเงินทุนทรัพย์ของคุณหลังจากการเทรดที่สำเร็จและการลดเงินทุนทรัพย์ลงหลังจากการซื้อขายที่ขาดทุนโดยเป็นไปตามจำนวนหน่วยที่กำหนดไว้ล่วงหน้า", - "-809681645": "นี่คือพารามิเตอร์การซื้อขายที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ Reverse D’Alembert", + "-1864807973": "กลยุทธ์ Reverse D'Alembert เกี่ยวข้องกับการเพิ่มเงินทุนทรัพย์ของคุณหลังจากการเทรดที่สำเร็จและการลดเงินทุนทรัพย์ลงหลังจากการเทรดที่ขาดทุนโดยเป็นไปตามจำนวนหน่วยที่กำหนดไว้ล่วงหน้า", + "-809681645": "นี่คือพารามิเตอร์การเทรดที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ Reverse D’Alembert", "-1239374257": "ตัวอย่างของกลยุทธ์ Reverse D’Alembert", - "-309821442": "โปรดทราบว่า แม้ว่าเราจะใช้ตัวเลขกลมๆ มาสาธิต แต่เงินทุนทรัพย์จำนวนหนึ่งใดนั้นจะไม่อาจรับประกันถึงจำนวนเงินที่แน่นอนที่จะได้รับจากการซื้อขายที่ประสบความสำเร็จ ตัวอย่างเช่น เงินทุนทรัพย์ 1 USD ไม่จำเป็นต้องเท่ากับกำไร 1 USD ในการซื้อขายที่ประสบความสำเร็จ", - "-1576691912": "บทความนี้สำรวจกลยุทธ์ Reverse Martingale ที่รวมอยู่ใน Deriv Bot ซึ่งเป็นบอทการซื้อขายอเนกประสงค์ที่ออกแบบมาเพื่อเทรดสินทรัพย์ต่างๆ เช่น Forex สินค้าโภคภัณฑ์ และ ดัชนี Derived โดยเราจะเจาะลึกพารามิเตอร์หลักต่างๆ ของกลยุทธ์นี้ รวมถึงการประยุกต์ใช้ และให้ข้อมูลสำคัญสำหรับเทรดเดอร์ที่ต้องการใช้บอทได้อย่างมีประสิทธิภาพ", - "-1934849823": "นี่คือพารามิเตอร์การซื้อขายที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ Reverse Martingale", + "-309821442": "โปรดทราบว่า แม้ว่าเราจะใช้ตัวเลขกลมๆ มาสาธิต แต่เงินทุนทรัพย์จำนวนหนึ่งใดนั้นจะไม่อาจรับประกันถึงจำนวนเงินที่แน่นอนที่จะได้รับจากการเทรดที่ประสบความสำเร็จ ตัวอย่างเช่น เงินทุนทรัพย์ 1 USD ไม่จำเป็นต้องเท่ากับกำไร 1 USD ในการเทรดที่ประสบความสำเร็จ", + "-1576691912": "บทความนี้สำรวจกลยุทธ์ Reverse Martingale ที่รวมอยู่ใน Deriv Bot ซึ่งเป็นบอทการเทรดอเนกประสงค์ที่ออกแบบมาเพื่อเทรดสินทรัพย์ต่างๆ เช่น Forex สินค้าโภคภัณฑ์ และ ดัชนี Derived โดยเราจะเจาะลึกพารามิเตอร์หลักต่างๆ ของกลยุทธ์นี้ รวมถึงการประยุกต์ใช้ และให้ข้อมูลสำคัญสำหรับเทรดเดอร์ที่ต้องการใช้บอทได้อย่างมีประสิทธิภาพ", + "-1934849823": "นี่คือพารามิเตอร์การเทรดที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ Reverse Martingale", "-1021919630": "Multiplier: ตัวคูณหรือ multiplier ที่ใช้เพิ่อเพิ่มเงินทุนทรัพย์ของคุณหากคุณเทรดได้กำไร โดยค่าจะต้องมากกว่า 1", - "-760516362": "3. หากการซื้อขายครั้งแรกสิ้นสุดด้วยการทำกำไร Deriv Bot จะเพิ่มเงินทุนทรัพย์ของคุณเป็นสองเท่าโดยอัตโนมัติสำหรับการซื้อขายครั้งถัดไปเป็นอ2 USD ทั้งนี้ Deriv Bot จะยังคงเพิ่มเงินทุนทรัพย์เป็นสองเท่าหลังจากทุกการเทรดที่ทำกำไรได้", + "-760516362": "3. หากการเทรดครั้งแรกสิ้นสุดด้วยการทำกำไร Deriv Bot จะเพิ่มเงินทุนทรัพย์ของคุณเป็นสองเท่าโดยอัตโนมัติสำหรับการเทรดครั้งถัดไปเป็นอ2 USD ทั้งนี้ Deriv Bot จะยังคงเพิ่มเงินทุนทรัพย์เป็นสองเท่าหลังจากทุกการเทรดที่ทำกำไรได้", "-1410950365": "สำรวจกลยุทธ์ 1-3-2-6 ใน Deriv Bot", - "-1175255072": "นี่คือพารามิเตอร์การซื้อขายที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ 1-3-2-6", + "-1175255072": "นี่คือพารามิเตอร์การเทรดที่ใช้ใน Deriv Bot ที่มีกลยุทธ์ 1-3-2-6", "-183884527": "ตัวอย่างของกลยุทธ์ 1-3-2-6", - "-275617819": "4. อย่างไรก็ตาม หากการซื้อขายใดๆ ส่งผลให้ขาดทุน เงินทุนทรัพย์ของคุณจะรีเซ็ตกลับเป็นจำนวนเงินทุนทรัพย์เริ่มต้นที่ 1 USD ในการซื้อขายครั้งต่อไป ทั้งนี้ การซื้อขายครั้งที่สามส่งผลให้ขาดทุน ดังนั้นเงินทุนทรัพย์จึงรีเซ็ตเป็นจำนวนเริ่มต้นที่ 1 USD สำหรับการซื้อขายครั้งต่อไป", - "-719846465": "5. เมื่อถึงที่ระดับเงินทุนทรัพย์เริ่มต้น หากการซื้อขายครั้งต่อไปยังคงส่งผลให้ขาดทุน เงินทุนทรัพย์ของคุณจะยังคงอยู่ที่จำนวนเริ่มต้นคือ 1 USD ทั้งนี้ กลยุทธ์นี้จะทำการซื้อขายขั้นต่ำสุดที่จำนวนเริ่มต้น โปรดดูที่การซื้อขายครั้งที่สี่และห้า", - "-1452746011": "กลยุทธ์ 1-3-2-6 ในการซื้อขายอาจให้กำไรอย่างมีนัยสำคัญ แต่มันก็ยังมาพร้อมกับความเสี่ยงที่สำคัญอีกด้วย การวางเงินทุนทรัพย์เพื่อเทรดแต่ละครั้งนั้นจะเป็นอิสระต่อกันและกลยุทธ์จะไม่เพิ่มโอกาสในการเทรดสำเร็จในระยะยาว หากคุณประสบกับการขาดทุนติดต่อกันหลายครั้ง กลยุทธ์อาจนำไปสู่การสูญเสียอย่างมาก ดังนั้นจึงเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่รับได้ ฝึกฝนในบัญชีทดลอง ใช้งานเกณฑ์กำไรขาดทุน และเข้าใจกลยุทธ์อย่างเต็มที่ก่อนจะเข้าร่วมการเทรดด้วยเงินจริง", + "-275617819": "4. อย่างไรก็ตาม หากการเทรดใดๆ ส่งผลให้ขาดทุน เงินทุนทรัพย์ของคุณจะรีเซ็ตกลับเป็นจำนวนเงินทุนทรัพย์เริ่มต้นที่ 1 USD ในการเทรดครั้งต่อไป ทั้งนี้ การเทรดครั้งที่สามส่งผลให้ขาดทุน ดังนั้นเงินทุนทรัพย์จึงรีเซ็ตเป็นจำนวนเริ่มต้นที่ 1 USD สำหรับการเทรดครั้งต่อไป", + "-719846465": "5. เมื่อถึงที่ระดับเงินทุนทรัพย์เริ่มต้น หากการเทรดครั้งต่อไปยังคงส่งผลให้ขาดทุน เงินทุนทรัพย์ของคุณจะยังคงอยู่ที่จำนวนเริ่มต้นคือ 1 USD ทั้งนี้ กลยุทธ์นี้จะทำการเทรดขั้นต่ำสุดที่จำนวนเริ่มต้น โปรดดูที่การเทรดครั้งที่สี่และห้า", + "-1452746011": "กลยุทธ์ 1-3-2-6 ในการเทรดอาจให้กำไรอย่างมีนัยสำคัญ แต่มันก็ยังมาพร้อมกับความเสี่ยงที่สำคัญอีกด้วย การวางเงินทุนทรัพย์เพื่อเทรดแต่ละครั้งนั้นจะเป็นอิสระต่อกันและกลยุทธ์จะไม่เพิ่มโอกาสในการเทรดสำเร็จในระยะยาว หากคุณประสบกับการขาดทุนติดต่อกันหลายครั้ง กลยุทธ์อาจนำไปสู่การสูญเสียอย่างมาก ดังนั้นจึงเป็นสิ่งสำคัญสำหรับเทรดเดอร์ที่จะประเมินความเสี่ยงที่รับได้ ฝึกฝนในบัญชีทดลอง ใช้งานเกณฑ์กำไรขาดทุน และเข้าใจกลยุทธ์อย่างเต็มที่ก่อนจะเข้าร่วมการเทรดด้วยเงินจริง", "-1016171176": "สินทรัพย์", - "-138833194": "ตลาดอ้างอิงที่บอทของคุณจะทำการซื้อขายด้วยกลยุทธ์นี้", - "-621128676": "ประเภทการซื้อขาย", + "-138833194": "ตลาดอ้างอิงที่บอทของคุณจะทำการเทรดด้วยกลยุทธ์นี้", + "-621128676": "ประเภทการเทรด", "-399349239": "บอทของคุณจะใช้ประเภทการเทรดนี้สำหรับทุกรอบ", - "-410856998": "บอทจะหยุดทำการซื้อขายหากกำไรทั้งหมดของคุณเกินจำนวนนี้", + "-410856998": "บอทจะหยุดทำการเทรดหากกำไรทั้งหมดของคุณเกินจำนวนนี้", "-447853970": "เกณฑ์การขาดทุน", - "-33106112": "ขนาดที่ใช้คูณเงินทุนทรัพย์หลังจากการเทรดที่ได้กำไรสำหรับการซื้อขายครั้งต่อไป", + "-33106112": "ขนาดที่ใช้คูณเงินทุนทรัพย์หลังจากการเทรดที่ได้กำไรสำหรับการเทรดครั้งต่อไป", "-1503301801": "ค่าจะต้องเท่ากับหรือมากกว่า {{ min }}", - "-1596504046": "จำนวนหน่วยที่จะเพิ่มในการซื้อขายครั้งต่อไปหลังจากการซื้อขายที่ได้กำไร ทั้งนี้ หนึ่งหน่วยเทียบเท่ากับจำนวนเงินทุนทรัพย์เริ่มต้น", + "-1596504046": "จำนวนหน่วยที่จะเพิ่มในการเทรดครั้งต่อไปหลังจากการเทรดที่ได้กำไร ทั้งนี้ หนึ่งหน่วยเทียบเท่ากับจำนวนเงินทุนทรัพย์เริ่มต้น", "-1521098535": "ทุนทรัพย์ขั้นสูงสุด", "-1448426542": "เงินทุนทรัพย์สำหรับการเทรดครั้งต่อไปของคุณจะรีเซ็ตเป็นจำนวนเงินทุนทรัพย์เริ่มต้นหากเกินมูลค่านี้", "-993953307": "การคาดการณ์ของคุณถึงตัวเลขหลักสุดท้ายของราคาสินทรัพย์", @@ -3062,7 +3061,7 @@ "-280324365": "Deriv Bot คืออะไร?", "-155173714": "มาสร้างบอทกันเถอะ!", "-1919212468": "3. คุณสามารถค้นหาบล็อกต่างๆ ที่ต้องการโดยการใช้แถบคำสั่งค้นหาที่อยู่ข้างบนหมวดหมู่ ", - "-1520558271": "สำหรับข้อมูลเพิ่มเติม เข้าดูบล็อกโพสต์นี้ ซึ่งเกี่ยวกับพื้นฐานการสร้างบอทซื้อขาย", + "-1520558271": "สำหรับข้อมูลเพิ่มเติม เข้าดูบล็อกโพสต์นี้ ซึ่งเกี่ยวกับพื้นฐานการสร้างบอทเทรด", "-980360663": "3. เลือกบล็อกที่คุณต้องการแล้วลากไปยังพื้นที่ทำงาน", "-1493168314": "กลยุทธ์ด่วนคืออะไร?", "-1680391945": "การใช้กลยุทธ์ด่วน", @@ -3077,18 +3076,18 @@ "-1720444288": "ฉันจะควบคุมการขาดทุนด้วย Deriv Bot ได้อย่างไร?", "-1142295124": "มีหลายวิธีที่จะควบคุมการขาดทุนของคุณด้วย Deriv Bot และต่อไปนี้คือตัวอย่างง่ายๆ ของวิธีที่คุณใช้การควบคุมการขาดทุนในกลยุทธ์ของคุณ:", "-2129119462": "1. สร้างตัวแปรต่อไปนี้และวางไว้ใต้ เรียกใช้ทันทีเมื่อเริ่มต้น:", - "-468926787": "นี่คือลักษณะที่พารามิเตอร์การซื้อขาย ตัวแปรต่างๆ และตัวเลือกการซื้อขายของคุณควรจะเป็นดังนี้:", + "-468926787": "นี่คือลักษณะที่พารามิเตอร์การเทรด ตัวแปรต่างๆ และตัวเลือกการเทรดของคุณควรจะเป็นดังนี้:", "-1565344891": "ฉันสามารถเรียกใช้ Deriv Bot บนหลายๆ แท็บในเว็บเบราว์เซอร์ของฉันได้หรือไม่?", "-90192474": "ใช่ คุณสามารถทำได้ แต่จะมีข้อจำกัดบางอย่างในบัญชีของคุณ เช่น จำนวนตำแหน่งการค้าที่เปิดได้สูงสุด และการจ่ายเงินรวมสูงสุดสำหรับตำแหน่งการค้าที่เปิดอยู่ ดังนั้นคุณเพียงต้องตระหนักถึงข้อจำกัดเหล่านี้ไว้ในใจเมื่อเปิดหลายตำแหน่งการค้าไว้ คุณสามารถดูข้อมูลเพิ่มเติมเกี่ยวกับข้อจำกัดเหล่านี้ได้ที่ การตั้งค่า > ขีดจำกัดของบัญชี", "-213872712": "ไม่ เราไม่นำเสนอคริปโตเคอร์เรนซี่บน Deriv Bot", "-2147346223": "Deriv Bot มีให้บริการในประเทศใดบ้าง?", - "-352345777": "กลยุทธ์ที่นิยมมากที่สุดสำหรับการซื้อขายอัตโนมัติคืออะไร?", - "-552392096": "สามกลยุทธ์ที่ใช้กันมากที่สุดในการซื้อขายแบบอัตโนมัติคือ กลยุทธ์มาติงเกล (Martingale) กลยุทธ์ดาล็องแบร์ (D'Alembert) และกลยุทธ์ออสการ์ กรินด์ (Oscar's Grind) ซึ่งคุณจะเจอสามกลยุทธ์รอคุณอยู่แล้วใน Deriv Bot", + "-352345777": "กลยุทธ์ที่นิยมมากที่สุดสำหรับการเทรดอัตโนมัติคืออะไร?", + "-552392096": "สามกลยุทธ์ที่ใช้กันมากที่สุดในการเทรดแบบอัตโนมัติคือ กลยุทธ์มาติงเกล (Martingale) กลยุทธ์ดาล็องแบร์ (D'Alembert) และกลยุทธ์ออสการ์ กรินด์ (Oscar's Grind) ซึ่งคุณจะเจอสามกลยุทธ์รอคุณอยู่แล้วใน Deriv Bot", "-1630262763": "เกี่ยวกับกลยุทธ์ Martingale", "-413928457": "เกี่ยวกับกลยุทธ์ Oscar's Grind", "-1497015866": "เกี่ยวกับกลยุทธ์ Reverse D’Alembert", "-437005403": "เกี่ยวกับกลยุทธ์ 1-3-2-6", - "-590765322": "น่าเสียดายที่แพลตฟอร์มการซื้อขายนี้ไม่สามารถใช้ได้กับบัญชี EU Deriv กรุณาเปลี่ยนไปใช้บัญชีที่ไม่ใช่สำหรับในสหภาพยุโรปเพื่อทำการซื้อขายต่อ", + "-590765322": "น่าเสียดายที่แพลตฟอร์มการเทรดนี้ไม่สามารถใช้ได้กับบัญชี EU Deriv กรุณาเปลี่ยนไปใช้บัญชีที่ไม่ใช่สำหรับในสหภาพยุโรปเพื่อทำการเทรดต่อ", "-2110207996": "Deriv Bot นั้นไม่สามารถใช้ได้กับบัญชีนี้", "-971295844": "สลับไปยังบัญชีอื่น", "-1194079833": "ลูกค้าที่พำนักในสหภาพยุโรปไม่สามารถใช้ Deriv Bot ได้", @@ -3159,7 +3158,7 @@ "-2028564707": "(ด้านล่าง)", "-596238067": "จุดเข้า/จุดออก", "-1823621139": "กลยุทธ์ด่วน", - "-1782602933": "เลือกเทมเพลตด้านล่างและตั้งค่าพารามิเตอร์การซื้อขายของคุณ", + "-1782602933": "เลือกเทมเพลตด้านล่างและตั้งค่าพารามิเตอร์การเทรดของคุณ", "-315611205": "กลยุทธ์", "-1524489375": "(ทางเลือก)", "-150224710": "ใช่ ดำเนินการต่อ", @@ -3211,9 +3210,9 @@ "-631097919": "คลิก <0>เรียกใช้ เมื่อคุณต้องการเริ่มเทรด และคลิก <0>หยุด เมื่อคุณต้องการหยุด", "-1999747212": "ต้องการเยี่ยมชมอีกครั้งหรือไม่?", "-782992165": "ขั้นตอนที่ 1 :", - "-1207872534": "ขั้นแรก ตั้งค่าบล็อค <0>พารามิเตอร์การซื้อขาย", + "-1207872534": "ขั้นแรก ตั้งค่าบล็อค <0>พารามิเตอร์การเทรด", "-1656388044": "อันดับแรก ให้ตั้งค่า <0>ตลาด เป็นดัชนี Derived > ดัชนี Continuous > ดัชนี Volatility 100 (1s)", - "-1706298865": "จากนั้น ตั้งค่า <0>ประเภทการซื้อขาย เป็น Up/Down > Rise/Fall", + "-1706298865": "จากนั้น ตั้งค่า <0>ประเภทการเทรด เป็น Up/Down > Rise/Fall", "-1834358537": "สำหรับ <0>ค่าเริ่มต้นช่วงเวลาของกราฟแท่งเทียน ให้ตั้งค่าไว้เป็น 1 นาที", "-1940971254": "สำหรับ <0>ตัวเลือกการเทรด ให้ตั้งค่าดังต่อไปนี้:", "-512839354": "<0>เงินทุนทรัพย์: 10 USD (ต่ำสุด: 0.35 - สูงสุด: 50000)", @@ -3226,10 +3225,10 @@ "-295975118": "จากนั้นไปที่ <0>แถบเครื่องมือการใช้งาน​ ภายใต้เมนูบล็อก แตะลูกศรแบบเลื่อนลงแล้วกด <0>ลูป", "-698493945": "ขั้นตอนที่ 5 :", "-1992994687": "ตอนนี้ แตะลูกศรแบบเลื่อนลง <0>การวิเคราะห์ แล้วกดเลือก <0>สัญญา", - "-1844492873": "ไปที่บล็อก <0>ผลลัพธ์การซื้อขายล่าสุด แล้วคลิกไอคอน + เพื่อเพิ่มบล็อก <0>ผลลัพธ์คือทำกำไร ในพื้นที่ทำงาน", + "-1844492873": "ไปที่บล็อก <0>ผลลัพธ์การเทรดล่าสุด แล้วคลิกไอคอน + เพื่อเพิ่มบล็อก <0>ผลลัพธ์คือทำกำไร ในพื้นที่ทำงาน", "-1547091772": "จากนั้นลาก <0>ผลลัพธ์ว่าจะชนะ ลงในช่องที่ว่างถัดจากบล็อก <0>ทำซ้ำจน", "-736400802": "ขั้นตอนที่ 6 :", - "-732067680": "สุดท้าย ลากและเพิ่มบล็อก <0>ทำซ้ำ ทั้งหมดลงในบล็อก <0>เริ่มต้นเงื่อนไขการซื้อขายใหม่", + "-732067680": "สุดท้าย ลากและเพิ่มบล็อก <0>ทำซ้ำ ทั้งหมดลงในบล็อก <0>เริ่มต้นเงื่อนไขการเทรดใหม่", "-1411787252": "ขั้นตอนที่ 1", "-1109392787": "เรียนรู้วิธีการสร้างบอทของคุณตั้งแต่เริ่มต้นโดยใช้กลยุทธ์ง่ายๆ", "-1263822623": "คุณสามารถนำเข้าบอทจากอุปกรณ์มือถือของคุณหรือจาก Google Drive ดูตัวอย่างในตัวสร้างบอท และเริ่มเทรดโดยเรียกใช้งานบอท", @@ -3245,7 +3244,7 @@ "-1190972431": "P2P-V2", "-1837059346": "ซื้อ / ขาย", "-1845037007": "หน้าเพจผู้ลงโฆษณา", - "-494667560": "คำสั่งซื้อขาย", + "-494667560": "คำสั่งเทรด", "-679691613": "โฆษณาของฉัน", "-821418875": "เทรดเดอร์", "-679102561": "รายละเอียดสัญญา", @@ -3290,7 +3289,7 @@ "-1590712279": "เกมมิ่ง", "-16448469": "เสมือน", "-2093768906": "{{name}} ได้จำหน่ายเงินของคุณแล้ว
คุณต้องการจะให้ความคิดเห็นของคุณหรือไม่?", - "-705744796": "ยอดเงินในบัญชีทดลองของคุณถึงขีดจำกัดสูงสุดแล้วและคุณจะไม่สามารถทำการซื้อขายใหม่ได้ ขอให้คุณรีเซ็ตยอดเงินของคุณเพื่อทำการซื้อขายจากบัญชีทดลองของคุณต่อไปได้", + "-705744796": "ยอดเงินในบัญชีทดลองของคุณถึงขีดจำกัดสูงสุดแล้วและคุณจะไม่สามารถทำการเทรดใหม่ได้ ขอให้คุณรีเซ็ตยอดเงินของคุณเพื่อทำการเทรดจากบัญชีทดลองของคุณต่อไปได้", "-2063700253": "ปิดใช้งานแล้ว", "-1585069798": "โปรดคลิกลิงก์ต่อไปนี้เพื่อทำแบบทดสอบความเหมาะสมของคุณ", "-1287141934": "ดูข้อมูลเพิ่มเติม", @@ -3301,9 +3300,8 @@ "-823349637": "ไปที่ Trustpilot", "-1204063440": "ตั้งค่าสกุลเงินในบัญชีของฉัน", "-1601813176": "คุณต้องการเพิ่มวงเงินรายวันของคุณเป็น {{max_daily_buy}} {{currency}} (ซื้อ) และ {{max_daily_sell}} {{currency}} (ขาย) ใช่ไหม?", - "-1751632759": "พร้อมรับประสบการณ์การซื้อขายบนมือถือที่รวดเร็วยิ่งขึ้นผ่านแอป <0>{{platform_name_go}}!", + "-1751632759": "พร้อมรับประสบการณ์การเทรดบนมือถือที่รวดเร็วยิ่งขึ้นผ่านแอป <0>{{platform_name_go}}!", "-1164554246": "คุณส่งเอกสารประจำตัวที่หมดอายุแล้ว", - "-1090244963": "เทรดอย่างชาญฉลาดด้วย Deriv Trader Chart v2.0:", "-219846634": "มายืนยัน ID ของคุณกันเถอะ", "-529038107": "ติดตั้ง", "-1738575826": "โปรดเปลี่ยนไปใช้บัญชีจริงของคุณหรือสร้างบัญชีใหม่เพื่อเข้าถึงแคชเชียร์", @@ -3312,7 +3310,7 @@ "-1852207910": "การถอนเงิน MT5 ถูกปิดการใช้งาน", "-764323310": "การถอนเงิน MT5 ถูกปิดการใช้งานในบัญชีของคุณ โปรดเช็คอีเมล์ของคุณสำหรับรายละเอียดเพิ่มเติม", "-1744163489": "โปรดตรวจสอบหลักฐานการมีรายได้ของคุณ", - "-382676325": "หากต้องการซื้อขายกับเราต่อไป โปรดส่งหลักฐานรายได้ของคุณ", + "-382676325": "หากต้องการเทรดกับเราต่อไป โปรดส่งหลักฐานรายได้ของคุณ", "-1902997828": "รีเฟรชตอนนี้", "-753791937": "Deriv เวอร์ชั่นใหม่พร้อมใช้งานแล้ว", "-1775108444": "หน้านี้จะรีเฟรชโดยอัตโนมัติภายใน 5 นาทีเพื่อโหลดเวอร์ชั่นล่าสุด", @@ -3352,11 +3350,11 @@ "-1043638404": "<0>หลักฐานการเป็นเจ้าของ <1>ไม่ผ่านการตรวจสอบยืนยัน", "-1766760306": "<0><1>กรุณาอัปโหลดเอกสารของคุณ <2>พร้อมรายละเอียดที่ถูกต้อง<3>", "-8892474": "เริ่มทำการประเมิน", - "-1330929685": "กรุณาส่งหลักฐานยืนยันตัวตนและหลักฐานที่อยู่ของคุณเพื่อยืนยันบัญชีของคุณและดำเนินการซื้อขายต่อ", - "-99461057": "กรุณาส่งหลักฐานที่อยู่ของคุณเพื่อยืนยันบัญชีของคุณและดำเนินการซื้อขายต่อไป", - "-577279362": "กรุณาส่งหลักฐานยืนยันตัวตนของคุณเพื่อยืนยันบัญชีของคุณและดำเนินการซื้อขายต่อไป", + "-1330929685": "กรุณาส่งหลักฐานยืนยันตัวตนและหลักฐานที่อยู่ของคุณเพื่อยืนยันบัญชีของคุณและดำเนินการเทรดต่อ", + "-99461057": "กรุณาส่งหลักฐานที่อยู่ของคุณเพื่อยืนยันบัญชีของคุณและดำเนินการเทรดต่อไป", + "-577279362": "กรุณาส่งหลักฐานยืนยันตัวตนของคุณเพื่อยืนยันบัญชีของคุณและดำเนินการเทรดต่อไป", "-197134911": "หลักฐานยืนยันตัวตนของคุณหมดอายุแล้ว", - "-152823394": "หลักฐานยืนยันตัวตนของคุณหมดอายุแล้ว กรุณาส่งหลักฐานยืนยันตัวตนใหม่เพื่อยืนยันบัญชีของคุณและดำเนินการซื้อขายต่อไป", + "-152823394": "หลักฐานยืนยันตัวตนของคุณหมดอายุแล้ว กรุณาส่งหลักฐานยืนยันตัวตนใหม่เพื่อยืนยันบัญชีของคุณและดำเนินการเทรดต่อไป", "-822813736": "เราไม่สามารถอัปเกรด Wallet ให้เสร็จสิ้นได้ โปรดลองอีกครั้งในภายหลังหรือติดต่อเราผ่านการแชทสด", "-285366843": "เรากำลังจะอัพเดทกระบวนการลงชื่อเข้าใช้สำหรับบัญชี Deriv MT5 ของคุณ", "-978414767": "เราต้องการข้อมูลเพิ่มเติมสำหรับบัญชี Deriv MT5 ของคุณ โปรดสละเวลาสักครู่เพื่ออัพเดทข้อมูลของคุณตอนนี้", @@ -3364,7 +3362,7 @@ "-482715448": "ไปที่รายละเอียดส่วนบุคคล", "-2072411961": "หลักฐานแสดงที่อยู่ของคุณได้รับการยืนยันแล้ว", "-384887227": "อัพเดทที่อยู่ในโปรไฟล์ของคุณ", - "-1779268418": "เทรด CFD แบบปลอดค่าสวอปบน MT5 ด้วย Forex หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ สกุลเงินดิจิทัล ETF และดัชนีสังเคราะห์", + "-1779268418": "เทรด CFD แบบปลอดค่าสวอปบน MT5 ด้วย Forex หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ คริปโตเคอเรนซี่ ETF และดัชนีสังเคราะห์", "-1998049070": "หากคุณยอมรับการใช้งานคุกกี้ของเราให้คลิกที่ยอมรับ สำหรับข้อมูลเพิ่มเติม <0>ดูนโยบายของเรา", "-402093392": "เพิ่มบัญชี Deriv", "-1721181859": "คุณจะต้องมีบัญชี {{deriv_account}}", @@ -3372,14 +3370,14 @@ "-689237734": "ดำเนินการต่อ", "-1642457320": "ศูนย์การช่วยเหลือ", "-1966944392": "สถานะเครือข่าย: {{status}}", - "-181484419": "การซื้อขายอย่างมีความรับผิดชอบ", + "-181484419": "การเทรดอย่างมีความรับผิดชอบ", "-650505513": "เต็มหน้าจอ", "-1823504435": "ดูการแจ้งเตือน", "-1954045170": "ไม่ได้กำหนดสกุลเงิน", "-1591792668": "วงเงินในบัญชี", "-34495732": "ข้อมูลเกี่ยวกับกฎระเบียบ", "-1496158755": "ไปที่ Deriv.com", - "-1323441180": "ข้าพเจ้าขอยืนยันว่าคำขอเปิดบัญชีกับ Deriv เพื่อทำการซื้อขายผลิตภัณฑ์ OTC ที่ออกและนำเสนอเฉพาะนอกประเทศบราซิลนั้นมาจากความคิดริเริ่มโดยข้าพเจ้าเอง ข้าพเจ้าเข้าใจดีว่า Deriv ไม่ได้ถูกควบคุมดูแลโดย CVM และในการที่ข้าพเจ้าเข้าหา Deriv นั้นข้าพเจ้ามีเจตนาที่จะสร้างความสัมพันธ์กับบริษัทจากต่างประเทศ", + "-1323441180": "ข้าพเจ้าขอยืนยันว่าคำขอเปิดบัญชีกับ Deriv เพื่อทำการเทรดผลิตภัณฑ์ OTC ที่ออกและนำเสนอเฉพาะนอกประเทศบราซิลนั้นมาจากความคิดริเริ่มโดยข้าพเจ้าเอง ข้าพเจ้าเข้าใจดีว่า Deriv ไม่ได้ถูกควบคุมดูแลโดย CVM และในการที่ข้าพเจ้าเข้าหา Deriv นั้นข้าพเจ้ามีเจตนาที่จะสร้างความสัมพันธ์กับบริษัทจากต่างประเทศ", "-1396326507": "ขออภัย {{website_name}} ไม่มีให้บริการในประเทศของคุณ", "-288996254": "ไม่มีให้ใช้งาน", "-1019903756": "Synthetic", @@ -3391,10 +3389,10 @@ "-1822498621": "ตามภาระหน้าที่ด้านกฎระเบียบของเรา เราจำเป็นต้องประเมินความรู้และประสบการณ์การเทรดของคุณ<0/><0/>โปรดคลิก 'ตกลง' เพื่อดำเนินการต่อ", "-71049153": "ปกป้องบัญชีของคุณให้ปลอดภัยด้วยรหัสผ่าน", "-1861974537": "รหัสผ่านที่คาดเดาได้ยากประกอบด้วยอย่างน้อย 8 อักขระ ซึ่งรวมถึงตัวอักษรตัวพิมพ์ใหญ่ ตัวอักษรตัวพิมพ์เล็ก ตัวเลข และสัญลักษณ์", - "-1965920446": "เริ่มทำการซื้อขาย", + "-1965920446": "เริ่มทำการเทรด", "-1485242688": "ขั้นตอน {{step}}: {{step_title}} ({{step}} ของ {{steps}})", - "-1829842622": "คุณสามารถเปิดบัญชีสำหรับแต่ละสกุลเงินดิจิทัลได้", - "-987221110": "เลือกสกุลเงินที่คุณต้องการใช้ซื้อขาย", + "-1829842622": "คุณสามารถเปิดบัญชีสำหรับแต่ละคริปโตเคอเรนซี่ได้", + "-987221110": "เลือกสกุลเงินที่คุณต้องการใช้เทรด", "-1066574182": "เลือกสกุลเงิน", "-1914534236": "เลือกสกุลเงินของคุณ", "-200560194": "โปรดสลับไปที่บัญชี {{fiat_currency}} ของคุณเพื่อเปลี่ยนสกุลเงิน", @@ -3404,16 +3402,16 @@ "-650480777": "บัญชีคริปโต", "-175638343": "เลือกบัญชีผู้ใช้หรือเพิ่มบัญชีผู้ใช้อันใหม่", "-1768223277": "บัญชีของคุณพร้อมแล้ว", - "-1215717784": "<0>คุณได้เปลี่ยนสกุลเงินของคุณเป็น {{currency}} เรียบร้อยแล้ว <0>ทำการฝากเงินเพื่อเริ่มการซื้อขาย", - "-1775006840": "ทําการฝากเงินตอนนี้เพื่อเริ่มต้นการซื้อขาย", - "-983734304": "เราต้องการหลักฐานยืนยันตัวตนและที่อยู่ของคุณก่อนที่คุณจะเริ่มทำการซื้อขาย", - "-917733293": "หากต้องการทำการซื้อขาย โปรดยืนยันว่าคุณอยู่ที่ไหน", - "-1282628163": "คุณจะสามารถทำการซื้อขายทันทีที่การตรวจสอบยืนยันเสร็จสมบูรณ์", + "-1215717784": "<0>คุณได้เปลี่ยนสกุลเงินของคุณเป็น {{currency}} เรียบร้อยแล้ว <0>ทำการฝากเงินเพื่อเริ่มการเทรด", + "-1775006840": "ทําการฝากเงินตอนนี้เพื่อเริ่มต้นการเทรด", + "-983734304": "เราต้องการหลักฐานยืนยันตัวตนและที่อยู่ของคุณก่อนที่คุณจะเริ่มทำการเทรด", + "-917733293": "หากต้องการทำการเทรด โปรดยืนยันว่าคุณอยู่ที่ไหน", + "-1282628163": "คุณจะสามารถทำการเทรดทันทีที่การตรวจสอบยืนยันเสร็จสมบูรณ์", "-952649119": "เข้าสู่ระบบ", "-3815578": "ลงทะเบียน", "-1456176427": "กำหนดสกุลเงินสําหรับบัญชีจริงของคุณ", "-241733171": "เพิ่มบัญชี Deriv Financial", - "-1329687645": "สร้างบัญชีสกุลเงินดิจิทัล", + "-1329687645": "สร้างบัญชีคริปโตเคอเรนซี่", "-1429178373": "สร้างบัญชีใหม่", "-1740162250": "จัดการบัญชี", "-1016775979": "เลือกบัญชีผู้ใช้", @@ -3451,7 +3449,7 @@ "-1941013000": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}}, {{legal_entity_name_fx}} และ {{legal_entity_name_v}}", "-594812204": "นโยบายการร้องเรียนนี้ ซึ่งอาจมีการเปลี่ยนแปลงเป็นครั้งคราว มีผลบังคับใช้กับบัญชี (ทั้งเดี่ยวหรือหลายบัญชี) ของคุณที่ลงทะเบียนกับ {{legal_entity_name_svg}}", "-813256361": "พวกเรามุ่งมั่นตั้งใจที่จะปฏิบัติต่อลูกค้าของเราอย่างเป็นธรรมและให้บริการที่เป็นเลิศแก่ลูกค้าของเรา<0/><1/>เรายินดีที่จะรับฟังความคิดเห็นจากคุณว่า เราจะสามารถปรับปรุงบริการของเราที่มีให้กับคุณได้อย่างไรบ้าง ดังนั้นข้อมูลใดๆ ที่คุณให้มานั้นจะได้รับการรักษาเป็นความลับอย่างเข้มงวด จงมั่นใจได้ว่าจะมีการรับฟังคุณ มีการให้คุณค่า และมีการปฏิบัติอย่างเป็นธรรมเสมอ", - "-1622847732": "หากคุณมีข้อสงสัยเกี่ยวกับบัญชีการซื้อขายของคุณด้วย {{legal_entity_name}}คุณสามารถติดต่อเราผ่าน <0>ศูนย์ช่วยเหลือ ของเราหรือโดยการ <1>แชทกับตัวแทนผ่านทาง Live Chat <2/> <3/> เรามุ่งมั่นที่จะแก้ปัญหาของคุณในเวลาที่รวดเร็วที่สุดและขอขอบคุณความอดทนของคุณในการช่วยให้เรามีเวลาในการแก้ไขปัญหา <4/> <5/> เรามุ่งมั่นที่จะให้บริการที่ดีที่สุดที่เป็นไปได้และการสนับสนุนแก่ลูกค้าของเราอย่างไรก็ตามในกรณีที่เราไม่สามารถแก้ไขคำถามของคุณหรือหากคุณรู้สึกว่าคำตอบของเราไม่เป็นที่น่าพอใจ เราต้องการรับทราบจากคุณเรายินดีต้อนรับและสนับสนุนให้คุณส่งคำร้องเรียนอย่างเป็นทางการมาให้เราเพื่อที่เราจะได้ทบทวนข้อกังวลของคุณและดำเนินการแก้ไขปัญหา", + "-1622847732": "หากคุณมีข้อสงสัยเกี่ยวกับบัญชีการเทรดของคุณด้วย {{legal_entity_name}}คุณสามารถติดต่อเราผ่าน <0>ศูนย์ช่วยเหลือ ของเราหรือโดยการ <1>แชทกับตัวแทนผ่านทาง Live Chat <2/> <3/> เรามุ่งมั่นที่จะแก้ปัญหาของคุณในเวลาที่รวดเร็วที่สุดและขอขอบคุณความอดทนของคุณในการช่วยให้เรามีเวลาในการแก้ไขปัญหา <4/> <5/> เรามุ่งมั่นที่จะให้บริการที่ดีที่สุดที่เป็นไปได้และการสนับสนุนแก่ลูกค้าของเราอย่างไรก็ตามในกรณีที่เราไม่สามารถแก้ไขคำถามของคุณหรือหากคุณรู้สึกว่าคำตอบของเราไม่เป็นที่น่าพอใจ เราต้องการรับทราบจากคุณเรายินดีต้อนรับและสนับสนุนให้คุณส่งคำร้องเรียนอย่างเป็นทางการมาให้เราเพื่อที่เราจะได้ทบทวนข้อกังวลของคุณและดำเนินการแก้ไขปัญหา", "-1406192787": "หากคุณไม่พอใจกับผลลัพธ์ คุณสามารถส่งข้อร้องเรียนของคุณแจ้งไปยัง <0>คณะกรรมการทางการเงิน", "-1776547326": "<0/><1/>หากคุณอาศัยอยู่ในสหราชอาณาจักรและไม่พอใจกับการตอบสนองของเรา คุณสามารถยกระดับข้อร้องเรียนของคุณแจ้งไปยัง <2>สำนักงานกำกับดูแลกิจการทางการเงินหรือ FOS", "-2115348800": "1. บทนำ", @@ -3480,8 +3478,8 @@ "-1500907666": "<0>d หากการตัดสินใจนั้นเอื้ออำนวยประโยชน์ให้ฝ่ายเรา คุณต้องส่งหนังสือให้เราภายใน 7 วันนับจากวันที่มีการตัดสินใจออกมา แล้วการร้องเรียนก็จะถือว่าปิดการพิจารณาไป", "-429248139": "5. ข้อความปฏิเสธความรับผิดชอบ", "-818926350": "คณะกรรมการทางการเงินยอมรับการอุทธรณ์ภายในเวลา 45 วันหลังจากวันที่เกิดเหตุการณ์ และต่อเมื่อภายหลังจากที่เทรดเดอร์ได้พยายามแก้ไขปัญหากับบริษัทโดยตรงแล้วเท่านั้น", - "-1825471709": "ประสบการณ์แปลกใหม่ในการซื้อขายบนแพลตฟอร์มประสิทธิภาพสูงและใช้งานง่าย", - "-981017278": "ทำการซื้อขายอัตโนมัติเพียงปลายนิ้วสัมผัส โดยไม่ต้องเขียนชุดคำสั่งเอง", + "-1825471709": "ประสบการณ์แปลกใหม่ในการเทรดบนแพลตฟอร์มประสิทธิภาพสูงและใช้งานง่าย", + "-981017278": "ทำการเทรดอัตโนมัติเพียงปลายนิ้วสัมผัส โดยไม่ต้องเขียนชุดคำสั่งเอง", "-583559763": "เมนู", "-1685795001": "Wallet ทดลอง", "-319395348": "มองหา CFD อยู่ใช่ไหม? กรุณาไปที่ Trader's Hub", @@ -3497,12 +3495,12 @@ "-238296389": "ต้องการความช่วยเหลือไหม? ติดต่อเราผ่านทาง <0>แชทสด เพื่อให้ช่วยตอบคำถามคุณเกี่ยวกับการเข้าสู่ระบบ", "-941870889": "แคชเชียร์ใช้สำหรับบัญชีจริงเท่านั้น", "-352838513": "ดูเหมือนว่าคุณไม่มีบัญชี {{regulation}} จริง หากต้องการใช้แคชเชียร์ ให้เปลี่ยนไปใช้บัญชีจริง {{active_real_regulation}} ของคุณ หรือสมัครเปิดบัญชีจริง {{regulation}} เสียก่อน", - "-1858915164": "คุณพร้อมจะฝากเงินและทำการซื้อขายจริงหรือยัง?", + "-1858915164": "คุณพร้อมจะฝากเงินและทำการเทรดจริงหรือยัง?", "-162753510": "เพิ่มบัญชีจริง", "-1208519001": "คุณจำเป็นต้องมีบัญชี Deriv จริงเพื่อเข้าถึงแคชเชียร์", "-715867914": "ฝากเงินเรียบร้อยแล้ว", "-1271218821": "เพิ่มบัญชีแล้ว", - "-197631101": "เงินทุนของคุณจะพร้อมสำหรับทำการซื้อขายเมื่อการยืนยันบัญชีของคุณเสร็จสมบูรณ์", + "-197631101": "เงินทุนของคุณจะพร้อมสำหรับทำการเทรดเมื่อการยืนยันบัญชีของคุณเสร็จสมบูรณ์", "-835056719": "เราได้รับเอกสารของคุณแล้ว", "-55435892": "เราจะต้องใช้เวลา 1 - 3 วันเพื่อตรวจสอบเอกสารของคุณและแจ้งให้คุณทราบทางอีเมล์ คุณสามารถฝึกฝนใช้บัญชีทดลองได้ในระหว่างนี้", "-1916578937": "<0>สำรวจฟีเจอร์ใหม่ที่น่าตื่นเต้นที่นำเสนอโดย Wallet ของคุณ", @@ -3529,7 +3527,7 @@ "-1005069157": "ดัชนีสังเคราะห์ ดัชนีตะกร้า และดัชนี Derived FX", "-1344709651": "40+", "-1326848138": "British Virgin Islands Financial Services Commission (ใบอนุญาตเลขที่ SIBA/L/18/1114)", - "-1711743223": "Forex (มาตรฐาน/ไมโคร) หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ สกุลเงินดิจิทัลและ ETF", + "-1711743223": "Forex (มาตรฐาน/ไมโคร) หุ้น ดัชนีหุ้น สินค้าโภคภัณฑ์ คริปโตเคอเรนซี่และ ETF", "-1372141447": "การประมวลผลโดยตรงทุกขั้นตอน", "-1969608084": "Forex และคริปโตเคอเรนซี่", "-800771713": "Labuan Financial Services Authority (ใบอนุญาติเลขที่ MB/18/0024)", @@ -3581,7 +3579,9 @@ "-184453418": "ใส่รหัสผ่าน {{platform}} ของคุณ", "-393388362": "เรากำลังทำการตรวจสอบเอกสารของคุณ การดำเนินการนี้จะใช้เวลาประมาณ 1 ถึง 3 วัน", "-2057918502": "คําบอกใบ้: คุณอาจป้อนรหัสผ่าน Deriv ของคุณซึ่งต่างจากรหัสผ่าน {{platform}} ของคุณ", - "-510908328": "ในการเริ่มเทรด คุณต้อง<0 />โอนเงิน <1 />จากบัญชี Deriv ของคุณไปยังบัญชีนี้", + "-267598687": "ขอแสดงความยินดีด้วย คุณได้สร้างบัญชี <0/>{{category}} {{platform}} {{type}} ของคุณสำเร็จแล้ว และเพื่อเริ่มต้นทำการเทรด <1 />โปรดโอนเงิน <2 />จากบัญชี Deriv ของคุณเข้าไปยังบัญชีนี้", + "-1475660820": "บัญชี Deriv MT5 {{type}} ของคุณพร้อมแล้ว ", + "-1710177700": "บัญชีทดลอง {{type}} ของคุณพร้อมแล้ว", "-1184248732": "ขอแสดงความยินดี คุณได้สร้างบัญชี <0/>{{category}} {{platform}} {{type}} ของคุณเรียบร้อยแล้ว ", "-1928229820": "ตั้งรหัสผ่านใหม่ของนักลงทุน Deriv X", "-1969916895": "รหัสผ่านของคุณต้องมีอักขระระหว่าง 8-16 ตัวซึ่งรวมถึงอักษรตัวพิมพ์ใหญ่และตัวพิมพ์เล็ก พร้อมด้วยตัวเลขและอักขระพิเศษอย่างน้อยหนึ่งตัว ( _ @ ? ! / # )", @@ -3602,10 +3602,10 @@ "-251202291": "โบรกเกอร์", "-678964540": "ถึง", "-206829624": "(1:x)", - "-616293830": "เพลิดเพลินไปกับเลเวอเรจแบบไดนามิก <0>สูงถึง 1:1500 เมื่อทำการซื้อขายตราสารที่เลือกในตลาด Forex สินค้าโภคภัณฑ์ สกุลเงินดิจิทัล และดัชนีหุ้น ทั้งนี้ เลเวอเรจแบบไดนามิกของเราจะปรับตามตำแหน่งการซื้อขายของคุณโดยอัตโนมัติตามประเภทสินทรัพย์และปริมาณการซื้อขาย", + "-616293830": "เพลิดเพลินไปกับเลเวอเรจแบบไดนามิก <0>สูงถึง 1:1500 เมื่อทำการเทรดตราสารที่เลือกในตลาด Forex สินค้าโภคภัณฑ์ คริปโตเคอเรนซี่ และดัชนีหุ้น ทั้งนี้ เลเวอเรจแบบไดนามิกของเราจะปรับตามตำแหน่งการเทรดของคุณโดยอัตโนมัติตามประเภทสินทรัพย์และปริมาณการเทรด", "-2042845290": "รหัสผ่านนักลงทุนของคุณได้ถูกเปลี่ยนเรียบร้อยแล้ว", "-1882295407": "รหัสผ่านของคุณได้ถูกเปลี่ยนเรียบร้อยแล้ว", - "-254497873": "ใช้รหัสผ่านนี้เพื่อให้สิทธิ์การเข้าถึงแก่ผู้ใช้รายอื่น ในขณะพวกเขาอาจดูบัญชีการซื้อขายของคุณได้แต่พวกเขาจะไม่สามารถทำการซื้อขายหรือดำเนินการอื่นได้", + "-254497873": "ใช้รหัสผ่านนี้เพื่อให้สิทธิ์การเข้าถึงแก่ผู้ใช้รายอื่น ในขณะพวกเขาอาจดูบัญชีการเทรดของคุณได้แต่พวกเขาจะไม่สามารถทำการเทรดหรือดำเนินการอื่นได้", "-161656683": "รหัสผ่านนักลงทุนปัจจุบัน", "-374736923": "รหัสผ่านนักลงทุนอันใหม่", "-1793894323": "สร้างหรือรีเซ็ตรหัสผ่านนักลงทุน", @@ -3625,8 +3625,8 @@ "-1446636186": "ในการคลิก <0>ถัดไป แสดงว่าคุณตกลงที่จะย้ายบัญชี {{platform}} {{type_1}} และ {{type_2}} {{from_account}} (เดี่ยวหรือหลายบัญชี) ของคุณภายใต้ <1>ข้อกำหนดและเงื่อนไข ของบริษัท Deriv {{account_to_migrate}} Ltd", "-1766387013": "อัพเกรดบัญชี MT5 ของคุณ", "-990927225": "ป้อนรหัสผ่าน Deriv MT5 ของคุณ", - "-1486399361": "ซื้อขายกับแอปมือถือ MT5", - "-301350824": "หมายเหตุ: ยังไม่มีแอป MT5 ใช่ไหม? แตะปุ่ม <0>ซื้อขายด้วยแอปมือถือ MT5 เพื่อดาวน์โหลด เมื่อคุณได้\n ติดตั้งแอปแล้ว กลับมาที่หน้าจอนี้แล้วกดปุ่มเดิมเพื่อเข้าสู่ระบบ", + "-1486399361": "เทรดกับแอปมือถือ MT5", + "-301350824": "หมายเหตุ: ยังไม่มีแอป MT5 ใช่ไหม? แตะปุ่ม <0>เทรดด้วยแอปมือถือ MT5 เพื่อดาวน์โหลด เมื่อคุณได้\n ติดตั้งแอปแล้ว กลับมาที่หน้าจอนี้แล้วกดปุ่มเดิมเพื่อเข้าสู่ระบบ", "-648956272": "ใช้รหัสผ่านนี้เพื่อเข้าสู่ระบบบัญชี Deriv X ของคุณบนเว็บและแอปสําหรับอุปกรณ์เคลื่อนที่", "-1814308691": "โปรดคลิกที่ลิงก์ในอีเมล์เพื่อเปลี่ยนรหัสผ่าน {{platform}} ของคุณ", "-2015785957": "เปรียบเทียบบัญชี CFD {{demo_title}}", @@ -3644,8 +3644,8 @@ "-1975910372": "นาทีต้องอยู่ระหว่าง 0 ถึง 59", "-866277689": "เวลาหมดอายุไม่สามารถเป็นช่วงเวลาในอดีตได้", "-1455298001": "ขณะนี้", - "-256210543": "ไม่สามารถทำการซื้อขายได้ในขณะนี้", - "-1150099396": "เรากำลังดำเนินการเพื่อให้คุณใช้งานสิ่งนี้ได้เร็วๆ นี้ หากคุณมีบัญชีอื่นให้เปลี่ยนเป็นบัญชีนั้นเพื่อดำเนินการซื้อขายต่อไป คุณสามารถเพิ่มบัญชี Deriv MT5 Financial", + "-256210543": "ไม่สามารถทำการเทรดได้ในขณะนี้", + "-1150099396": "เรากำลังดำเนินการเพื่อให้คุณใช้งานสิ่งนี้ได้เร็วๆ นี้ หากคุณมีบัญชีอื่นให้เปลี่ยนเป็นบัญชีนั้นเพื่อดำเนินการเทรดต่อไป คุณสามารถเพิ่มบัญชี Deriv MT5 Financial", "-28115241": "{{platform_name_trader}} ไม่พร้อมใช้งานสำหรับบัญชีนี้", "-453920758": "ไปที่หน้ากระดานของ {{platform_name_mt5}}", "-402175529": "ประวัติ", @@ -3670,14 +3670,14 @@ "-439389714": "เรากำลังดำเนินการอยู่", "-770929448": "ไปที่ {{platform_name_smarttrader}}", "-347156282": "โปรดส่งหลักฐาน", - "-138538812": "เข้าสู่ระบบหรือสร้างบัญชีฟรีเพื่อทำการซื้อขาย", + "-138538812": "เข้าสู่ระบบหรือสร้างบัญชีฟรีเพื่อทำการเทรด", "-2036388794": "สร้างบัญชีฟรี", - "-1813736037": "ไม่อนุญาตให้ทำการซื้อขายเพิ่มเติมในสัญญาประเภทนี้สำหรับเซสชั่นการซื้อขายรอบปัจจุบัน ดูข้อมูลเพิ่มเติมที่ <0>ข้อกำหนดในการให้บริการ.", + "-1813736037": "ไม่อนุญาตให้ทำการเทรดเพิ่มเติมในสัญญาประเภทนี้สำหรับเซสชั่นการเทรดรอบปัจจุบัน ดูข้อมูลเพิ่มเติมที่ <0>ข้อกำหนดในการให้บริการ.", "-1043795232": "ตำแหน่งล่าสุด", "-153220091": "ค่าจุด Tick {{display_value}} จุด", "-802374032": "ชั่วโมง", "-1052279158": "<0>เงินผลตอบแทน ของคุณคือผลรวมของเงินทุนทรัพย์แรกเริ่มและผลกำไรของคุณ", - "-1819891401": "คุณสามารถปิดการซื้อขายของคุณได้ตลอดเวลา อย่างไรก็ตาม โปรดระวัง<0>ความเสี่ยงจากความคลาดเคลื่อน", + "-1819891401": "คุณสามารถปิดการเทรดของคุณได้ตลอดเวลา อย่างไรก็ตาม โปรดระวัง<0>ความเสี่ยงจากความคลาดเคลื่อน", "-231957809": "ได้รับเงินผลตอบแทนสูงสุด หากจุดออกสูงกว่าหรือเท่ากับเส้นระดับราคาเป้าหมายอันบน", "-464144986": "ได้รับเงินผลตอบแทนสูงสุด หากจุดออกต่ำกว่าหรือเท่ากับเส้นระดับราคาเป้าหมายอันล่าง", "-1031456093": "ได้รับเงินผลตอบแทนถึงขั้นสูงสุด หากจุดออกอยู่ระหว่างเส้นระดับราคาเป้าหมายอันล่างและอันบน เมื่อเปรียบเทียบสัดส่วนกับความแตกต่างระหว่างค่าเส้นระดับราคาเป้าหมายอันบนและจุดออก", @@ -3693,7 +3693,7 @@ "-420387848": "ค่าสูงนั้นหมายถึงจุดที่สูงที่สุดที่ตลาดได้เอื้อมถึงในช่วงระยะเวลาของสัญญา", "-1722190480": "ในการซื้อสัญญา \"High-to-Low\" คุณจะทำเงินในจำนวนที่เท่ากับการเอาค่า Multiplier มาคูณกับมูลค่าความแตกต่างระหว่างค่าสูงและค่าต่ำตลอดช่วงระยะเวลาของสัญญา", "-1281286610": "หากคุณเลือก \"Matches\" คุณจะได้รับเงินผลตอบแทนต่อเมื่อเลขหลักสุดท้ายของค่าจุด Tick ตัวสุดท้ายเป็นเลขเดียวกันกับที่คุณคาดการณ์ไว้", - "-618782785": "ใช้ Multipliers เพื่อใช้ประโยชน์จากผลตอบแทนที่เป็นไปได้ของคุณ คาดการณ์ว่าราคาสินทรัพย์จะขยับขึ้น (ภาวะกระทิง) หรือลดลง (ภาวะหมี) เราจะเรียกเก็บค่าคอมมิชชั่นเมื่อคุณเปิดการซื้อขายแบบ Multipliers", + "-618782785": "ใช้ Multipliers เพื่อใช้ประโยชน์จากผลตอบแทนที่เป็นไปได้ของคุณ คาดการณ์ว่าราคาสินทรัพย์จะขยับขึ้น (ภาวะกระทิง) หรือลดลง (ภาวะหมี) เราจะเรียกเก็บค่าคอมมิชชั่นเมื่อคุณเปิดการเทรดแบบ Multipliers", "-565391674": "หากคุณเลือก \"<0>Up\" กำไร/ขาดทุนทั้งหมดของคุณจะเป็นเปอร์เซ็นต์การเพิ่มขึ้นของราคาสินทรัพย์อ้างอิง คูณด้วย Multiplier และเงินทุนทรัพย์ ลบด้วยค่าคอมมิชชั่น", "-1113825265": "มีคุณลักษณะเพิ่มเติมในการจัดการตำแหน่งของคุณ: “<0>ตัวปิดเทรดเอากำไร” และ “<0>ตัวหยุดการขาดทุน” ช่วยให้คุณสามารถปรับระดับการหลีกเลี่ยงความเสี่ยงของคุณได้", "-1104397398": "มีคุณลักษณะเพิ่มเติมในการจัดการตำแหน่งของคุณ: “<0>ตัวปิดเทรดเอากำไร”, “<0>ตัวหยุดการขาดทุน” และ “<0>การยกเลิกข้อตกลง” ช่วยให้คุณสามารถปรับระดับการหลีกเลี่ยงความเสี่ยงของคุณได้", @@ -3711,8 +3711,8 @@ "-1307465836": "คุณสามารถขายสัญญาได้จนถึง 15 วินาทีก่อนเวลาหมดอายุ ถ้าคุณขาย เราจะจ่ายไปตาม <0>มูลค่าสัญญา ให้คุณ", "-351875097": "จำนวนจุด Tick", "-729830082": "ดูน้อยลง", - "-1649593758": "ข้อมูลการซื้อขาย", - "-1382749084": "กลับไปที่การซื้อขาย", + "-1649593758": "ข้อมูลการเทรด", + "-1382749084": "กลับไปที่การเทรด", "-1239477911": "วินาที", "-1585766960": "นาที", "-1652791614": "นาที", @@ -3722,7 +3722,7 @@ "-1435392215": "เกี่ยวกับการยกเลิกดีลข้อตกลง", "-2017825013": "รับทราบ", "-1192773792": "ไม่ต้องแสดงข้อความนี้อีก", - "-1341681145": "เมื่อเปิดใช้งานแล้ว คุณสามารถยกเลิกการซื้อขายของคุณได้ภายในกรอบเวลาที่เลือกไว้ เงินทุนทรัพย์ของคุณจะถูกคืนโดยไม่มีการสูญเสีย", + "-1341681145": "เมื่อเปิดใช้งานแล้ว คุณสามารถยกเลิกการเทรดของคุณได้ภายในกรอบเวลาที่เลือกไว้ เงินทุนทรัพย์ของคุณจะถูกคืนโดยไม่มีการสูญเสีย", "-471757681": "การบริหารความเสี่ยง", "-843831637": "ตัวหยุดการขาดทุน", "-771725194": "การยกเลิกดีลข้อตกลง", @@ -3741,13 +3741,13 @@ "-1587076792": "หากคุณเลือกสัญญาสิทธิ์แบบ “Put” คุณจะได้รับเงินผลตอบแทนเมื่อราคาสุดท้ายนั้นตำ่กว่าราคาใช้สิทธิ ณ เวลาหมดอายุ มิฉะนั้นคุณจะไม่ได้รับเงินผลตอบแทน", "-1482134885": "เราคำนวณจากราคาใช้สิทธิและระยะเวลาที่คุณได้เลือกไว้", "-565990678": "สัญญาของคุณจะหมดอายุในวันที่นี้ (ตามเวลา GMT) ตามเวลาสิ้นสุดที่คุณได้เลือกไว้", - "-1545819495": "การซื้อขายของคุณจะถูกปิดโดยอัตโนมัติที่ราคาสินทรัพย์ที่ใกล้ที่สุดที่มีอยู่ เมื่อการสูญเสียของคุณถึงเปอร์เซ็นต์หนึ่งจากเงินทุนทรัพย์ของคุณ แต่การสูญเสียของคุณจะไม่เกินไปกว่าเงินทุนทรัพย์ของคุณ เปอร์เซ็นต์นี้ขึ้นอยู่กับสินทรัพย์อ้างอิงที่เลือกไว้และ Multiplier", - "-468501352": "หากคุณเลือกคุณสมบัตินี้ การซื้อขายของคุณจะถูกปิดโดยอัตโนมัติที่ราคาสินทรัพย์ที่ใกล้ที่สุดที่มีอยู่ เมื่อกำไรของคุณถึงหรือเกินจำนวนจุดทำกำไร กำไรของคุณอาจมากกว่าจำนวนเงินที่คุณป้อน ขึ้นอยู่กับราคาตลาด ณ เวลาปิดสัญญา", - "-477936848": "เราใช้กลไกการดำเนินการจุด Tick ถัดไป ซึ่งเป็นราคาสินทรัพย์ถัดไปเมื่อเซิร์ฟเวอร์ของเราประมวลผลการเปิดการซื้อขาย", - "-1476381873": "ราคาสินทรัพย์ล่าสุดเมื่อเซิร์ฟเวอร์ของเราประมวลผลการปิดการซื้อขาย", + "-1545819495": "การเทรดของคุณจะถูกปิดโดยอัตโนมัติที่ราคาสินทรัพย์ที่ใกล้ที่สุดที่มีอยู่ เมื่อการสูญเสียของคุณถึงเปอร์เซ็นต์หนึ่งจากเงินทุนทรัพย์ของคุณ แต่การสูญเสียของคุณจะไม่เกินไปกว่าเงินทุนทรัพย์ของคุณ เปอร์เซ็นต์นี้ขึ้นอยู่กับสินทรัพย์อ้างอิงที่เลือกไว้และ Multiplier", + "-468501352": "หากคุณเลือกคุณสมบัตินี้ การเทรดของคุณจะถูกปิดโดยอัตโนมัติที่ราคาสินทรัพย์ที่ใกล้ที่สุดที่มีอยู่ เมื่อกำไรของคุณถึงหรือเกินจำนวนจุดทำกำไร กำไรของคุณอาจมากกว่าจำนวนเงินที่คุณป้อน ขึ้นอยู่กับราคาตลาด ณ เวลาปิดสัญญา", + "-477936848": "เราใช้กลไกการดำเนินการจุด Tick ถัดไป ซึ่งเป็นราคาสินทรัพย์ถัดไปเมื่อเซิร์ฟเวอร์ของเราประมวลผลการเปิดการเทรด", + "-1476381873": "ราคาสินทรัพย์ล่าสุดเมื่อเซิร์ฟเวอร์ของเราประมวลผลการปิดการเทรด", "-148680560": "ราคาสปอตของจุด Tick จุดสุดท้ายเมื่อถึงจุดหมดอายุ", "-1123926839": "สัญญาจะหมดอายุในเวลา 14:00:00 GMT ของวันหมดอายุที่คุณได้เลือกไว้", - "-1904828224": "เราจะเสนอซื้อสัญญาของคุณในราคานี้หากคุณเลือกที่จะขายมันก่อนสัญญาหมดอายุ ซึ่งนี่ก็ขึ้นอยู่กับปัจจัยหลายประการ เช่น ราคาสปอตหรือราคาซื้อขายทันทีในปัจจุบัน ระยะเวลา เป็นต้น อย่างไรก็ตาม เราจะไม่เสนอมูลค่าของสัญญาหากระยะเวลาที่เหลืออยู่ต่ำกว่า 24 ชั่วโมง", + "-1904828224": "เราจะเสนอซื้อสัญญาของคุณในราคานี้หากคุณเลือกที่จะขายมันก่อนสัญญาหมดอายุ ซึ่งนี่ก็ขึ้นอยู่กับปัจจัยหลายประการ เช่น ราคาสปอตหรือราคาเทรดทันทีในปัจจุบัน ระยะเวลา เป็นต้น อย่างไรก็ตาม เราจะไม่เสนอมูลค่าของสัญญาหากระยะเวลาที่เหลืออยู่ต่ำกว่า 24 ชั่วโมง", "-127118348": "เลือก {{contract_type}}", "-543478618": "ลองตรวจสอบการสะกดของคุณหรือใช้คำอื่น", "-338707425": "ระยะเวลาขั้นต่ำคือ 1 วัน", @@ -3759,7 +3759,7 @@ "-542594338": "เงินผลตอบแทนขั้นสูงสุด", "-690963898": "สัญญาของคุณจะถูกปิดโดยอัตโนมัติหากว่าจำนวนเงินผลตอบแทนของคุณได้มาถึงจำนวนนี้", "-511541916": "สัญญาของคุณจะถูกปิดโดยอัตโนมัติเมื่อถึงจำนวนจุด Tick นี้", - "-438655760": "<0>หมายเหตุ: คุณสามารถปิดการซื้อขายของคุณได้ตลอดเวลา โปรดตระหนักถึงความเสี่ยงการคลาดเคลื่อนราคา", + "-438655760": "<0>หมายเหตุ: คุณสามารถปิดการเทรดของคุณได้ตลอดเวลา โปรดตระหนักถึงความเสี่ยงการคลาดเคลื่อนราคา", "-774638412": "เงินทุนทรัพย์ต้องอยู่ระหว่าง {{min_stake}} {{currency}} และ {{max_stake}} {{currency}}", "-434270664": "ราคาปัจจุบัน", "-1956787775": "ราคาเส้นระดับเป้าหมาย:", @@ -3771,9 +3771,9 @@ "-1804019534": "เวลาหมดอายุ: {{date}}", "-2037881712": "สัญญาของคุณจะถูกปิดโดยอัตโนมัติที่จุดแสดงราคาอันถัดไปของสินทรัพย์ในวันที่ <0>", "-629549519": "ค่าคอมมิชชั่น <0/>", - "-2131859340": "ตัวยุติการซื้อขาย <0/>", + "-2131859340": "ตัวยุติการเทรด <0/>", "-1686280757": "<0>{{commission_percentage}}% ของ (<1/> * {{multiplier}})", - "-732683018": "เมื่อกำไรของคุณถึงหรือเกินจำนวนนี้ การซื้อขายของคุณจะถูกปิดโดยอัตโนมัติ", + "-732683018": "เมื่อกำไรของคุณถึงหรือเกินจำนวนนี้ การเทรดของคุณจะถูกปิดโดยอัตโนมัติ", "-339236213": "Multiplier", "-1763848396": "Put", "-194424366": "ด้านบน", @@ -3832,24 +3832,24 @@ "-359097473": "กำหนด {{ variable }} เป็น {{ value }}", "-1588521055": "กำหนดค่าตัวแปร", "-980448436": "กำหนดตัวแปร", - "-1538570345": "รับข้อมูลการซื้อขายล่าสุดและผลลัพธ์ จากนั้นก็ทำการซื้อขายอีกครั้ง", - "-222725327": "ที่นี่คือที่ๆ คุณตัดสินใจได้ว่า บอทของคุณควรทำการซื้อขายต่อหรือไม่", + "-1538570345": "รับข้อมูลการเทรดล่าสุดและผลลัพธ์ จากนั้นก็ทำการเทรดอีกครั้ง", + "-222725327": "ที่นี่คือที่ๆ คุณตัดสินใจได้ว่า บอทของคุณควรทำการเทรดต่อหรือไม่", "-1638446329": "ผลลัพธ์คือ {{ win_or_loss }}", - "-1968029988": "ผลลัพธ์การซื้อขายล่าสุด", - "-1588406981": "คุณสามารถตรวจสอบผลลัพธ์ของการซื้อขายครั้งล่าสุดด้วยบล็อกนี้", + "-1968029988": "ผลลัพธ์การเทรดล่าสุด", + "-1588406981": "คุณสามารถตรวจสอบผลลัพธ์ของการเทรดครั้งล่าสุดด้วยบล็อกนี้", "-1459154781": "รายละเอียดสัญญา: {{ contract_detail }}", "-1652241017": "อ่านคุณสมบัติที่เลือกจากลิสต์รายการรายละเอียดสัญญา", - "-985351204": "ซื้อขายอีกครั้ง", + "-985351204": "เทรดอีกครั้ง", "-2082345383": "บล็อกนี้โอนการควบคุมไปยังบล็อกเงื่อนไขการซื้อ", "-172574065": "บล็อกนี้จะโอนการควบคุมกลับไปยังบล็อกเงื่อนไขการซื้อ ซึ่งจะทำให้คุณสามารถซื้อสัญญาอื่นได้", "-403103225": "เริ่มใหม่", "-837044282": "ราคาซื้อ {{ contract_type }}", - "-1033917049": "บล็อกนี้ส่งคืนราคาซื้อสำหรับประเภทการซื้อขายที่เลือก", + "-1033917049": "บล็อกนี้ส่งคืนราคาซื้อสำหรับประเภทการเทรดที่เลือก", "-1863737684": "2. เงื่อนไขการซื้อ", "-228133740": "ระบุประเภทสัญญาและเงื่อนไขการซื้อ", "-1098726473": "บล็อกนี้จะต้องมีอยู่ตามข้อบังคับ โดยจะอนุญาตให้คัดลอกบล็อกนี้ได้เพียงหนึ่งชุดเท่านั้น คุณสามารถวางบล็อกการซื้อ (ดูด้านล่าง) ได้ที่นี่เช่นเดียวกับที่บล็อกเงื่อนไขเพื่อที่จะกำหนดเงื่อนไขการซื้อของคุณ", "-1777988407": "เงินผลตอบแทน {{ contract_type }}", - "-511116341": "บล็อกนี้ส่งคืนค่าเงินผลตอบแทนที่อาจเกิดขึ้นสำหรับประเภทการซื้อขายที่เลือก", + "-511116341": "บล็อกนี้ส่งคืนค่าเงินผลตอบแทนที่อาจเกิดขึ้นสำหรับประเภทการเทรดที่เลือก", "-1943211857": "เงินผลตอบแทนที่อาจเกิดขึ้น", "-1738427539": "ซื้อ", "-813464969": "ซื้อ", @@ -3915,7 +3915,7 @@ "-2105753391": "แจ้งข้อความ Telegram {{ dummy }} โทเคนการเข้าถึง: {{ input_access_token }} แชทไอดี: {{ input_chat_id }} ข้อความ: {{ input_message }}", "-1008209188": "ส่งข้อความให้เทเลแกรม", "-1218671372": "แสดงการแจ้งเตือนและเล่นเสียงเตือนที่เลือกไว้", - "-2099284639": "บล็อกนี้ให้ผลรวม กำไร/ขาดทุน จากการใช้กลยุทธ์การซื้อขายของคุณตั้งแต่บอทของคุณเริ่มทำงาน ทั้งนี้คุณสามารถรีเซ็ตผลในบล๊อกนี้ได้โดยคลิก \"ล้างสถิติ\" บนหน้าต่างที่แสดงสถิติธุรกรรมหรือโดยการรีเฟรชหน้านี้ในเบราว์เซอร์ของคุณ", + "-2099284639": "บล็อกนี้ให้ผลรวม กำไร/ขาดทุน จากการใช้กลยุทธ์การเทรดของคุณตั้งแต่บอทของคุณเริ่มทำงาน ทั้งนี้คุณสามารถรีเซ็ตผลในบล๊อกนี้ได้โดยคลิก \"ล้างสถิติ\" บนหน้าต่างที่แสดงสถิติธุรกรรมหรือโดยการรีเฟรชหน้านี้ในเบราว์เซอร์ของคุณ", "-683825404": "สตริงผลกำไรรวม", "-718220730": "คำอธิบายสตริงผลกำไรรวม", "-1861858493": "จำนวนรอบการทำงาน", @@ -3938,13 +3938,13 @@ "-2142851225": "ตัวเลือกในการเทรด Multiplier", "-625636913": "จำนวนต้องเป็นเลขจำนวนบวก", "-1466383897": "ช่วงเวลา: {{ duration_unit }} {{ duration_value }}", - "-440702280": "ตัวเลือกในการซื้อขาย", - "-1193894978": "กำหนดตัวเลือกในการซื้อขายของคุณเช่นระยะเวลาและเงินทุนทรัพย์ ทั้งนี้ ตัวเลือกบางตัวนั้นสามารถใช้ได้กับการเทรดบางประเภทเท่านั้น", + "-440702280": "ตัวเลือกในการเทรด", + "-1193894978": "กำหนดตัวเลือกในการเทรดของคุณเช่นระยะเวลาและเงินทุนทรัพย์ ทั้งนี้ ตัวเลือกบางตัวนั้นสามารถใช้ได้กับการเทรดบางประเภทเท่านั้น", "-46523443": "ไม่อนุญาตให้ใช้ค่าระยะเวลา หากต้องการเรียกใช้บอท โปรดป้อนค่าระหว่าง {{min}} ถึง {{max}}", - "-1483427522": "ประเภทการซื้อขาย: {{ trade_type_category }} > {{ trade_type }}", - "-323348124": "1. พารามิเตอร์การซื้อขาย", + "-1483427522": "ประเภทการเทรด: {{ trade_type_category }} > {{ trade_type }}", + "-323348124": "1. พารามิเตอร์การเทรด", "-1671903503": "เรียกใช้งานทันทีเมื่อเริ่มต้น:", - "-783173909": "ตัวเลือกในการซื้อขาย:", + "-783173909": "ตัวเลือกในการเทรด:", "-376956832": "นี่คือที่ที่คุณกําหนดตัวแปรพารามิเตอร์ของสัญญาของคุณ", "-1244007240": "ถ้า {{ condition }} แล้ว", "-1577206704": "ถ้าหาก", @@ -4072,7 +4072,7 @@ "-1529389221": "กราฟแท่งฮิสโตแกรม", "-1819860668": "MACD", "-1750896349": "กลยุทธ์ D'Alembert", - "-102980621": "กลยุทธ์ออสการ์ กรินด์ (Oscar's Grind) เป็นกลยุทธ์ความก้าวหน้าในเชิงบวกที่มีความเสี่ยงต่ำ โดยมันปรากฏขึ้นครั้งแรกในปี 1965 ในการใช้กลยุทธ์นี้ขนาดของสัญญาของคุณจะเพิ่มขึ้นหลังจากการซื้อขายที่ประสบความสำเร็จ แต่จะสัญญาจะไม่เปลี่ยนแปลงขนาดหลังจากการซื้อขายที่ไม่ประสบความสำเร็จ", + "-102980621": "กลยุทธ์ออสการ์ กรินด์ (Oscar's Grind) เป็นกลยุทธ์ความก้าวหน้าในเชิงบวกที่มีความเสี่ยงต่ำ โดยมันปรากฏขึ้นครั้งแรกในปี 1965 ในการใช้กลยุทธ์นี้ขนาดของสัญญาของคุณจะเพิ่มขึ้นหลังจากการเทรดที่ประสบความสำเร็จ แต่จะสัญญาจะไม่เปลี่ยนแปลงขนาดหลังจากการเทรดที่ไม่ประสบความสำเร็จ", "-462715374": "บอทที่ไม่มีชื่อ", "-280147477": "ธุรกรรมทั้งหมด", "-137444201": "ซื้อ", @@ -4090,7 +4090,7 @@ "-1131753095": "รายละเอียดสัญญา {{trade_type_name}} ยังไม่มีให้บริการในขณะนี้ เรากำลังจัดเตรียมข้อมูลเพื่อพร้อมให้บริการในเร็วๆนี้", "-360975483": "คุณไม่ได้ทำธุรกรรมประเภทนี้ในช่วงเวลานี้", "-561436679": "บัญชีนี้นำเสนอ CFD สำหรับตราสาร Derived", - "-1173266642": "บัญชีนี้ให้บริการ CFD บนแพลตฟอร์มการซื้อขายที่มีคุณสมบัติหลากหลาย", + "-1173266642": "บัญชีนี้ให้บริการ CFD บนแพลตฟอร์มการเทรดที่มีคุณสมบัติหลากหลาย", "-1226595254": "Turbos", "-922253974": "Rise/Fall", "-1361254291": "Higher/Lower", @@ -4195,7 +4195,7 @@ "-1435064387": "เอกสารของคุณดูเหมือนจะเป็นสําเนาที่พิมพ์ออกมา", "-624316211": "เอกสารของคุณดูเหมือนจะเป็นรูปถ่ายของหน้าจออุปกรณ์", "-1714959941": "การแสดงผลของกราฟนี้ไม่เหมาะสำหรับสัญญา Tick", - "-1254554534": "โปรดเปลี่ยนระยะเวลาของกราฟเป็นรูปแบบ tick เพื่อได้ประสบการณ์ซื้อขายที่ดียิ่งขึ้น", + "-1254554534": "โปรดเปลี่ยนระยะเวลาของกราฟเป็นรูปแบบ tick เพื่อได้ประสบการณ์เทรดที่ดียิ่งขึ้น", "-1658230823": "สัญญาถูกขายไปสำหรับ <0 />", "-1905867404": "สัญญาถูกยกเลิกแล้ว" } \ No newline at end of file diff --git a/packages/translations/src/translations/tr.json b/packages/translations/src/translations/tr.json index bf53e70d328c..c6382bf0f234 100644 --- a/packages/translations/src/translations/tr.json +++ b/packages/translations/src/translations/tr.json @@ -304,6 +304,7 @@ "328539132": "Talimatların içinde belirli sayıda yinelenir", "329353047": "Malta Financial Services Authority (MFSA) (lisans no. IS/70156)", "329404045": "<1>{{platform}} {{account_title}} hesabı oluşturmak içingerçek hesabınıza geçin<0>", + "330384187": "İlk transferinizle ticareti etkinleştirin.", "333456603": "Para çekme limitleri", "333807745": "Kaldırmak istediğiniz bloğa tıklayın ve klavyenizde Sil tuşuna basın.", "334942497": "Satın alma zamanı", @@ -581,7 +582,6 @@ "632897893": "Yukarıdakilerden herhangi biri sizin için geçerliyse <0>Evet'i seçin. Aksi takdirde, <0>Hayır'ı seçin.", "634219491": "Vergi kimlik numaranızı vermediniz. Bu bilgiler, yasal ve düzenleyici şartlar için gereklidir. Lütfen hesap ayarlarınızda <0>Kişisel bilgiler bölümüne gidin ve en son vergi kimlik numaranızı girin.", "634274250": "Her işlemin süresinin dolması ne kadar sürer.", - "636219153": "Ticarete başlamak için, Deriv hesabınızdan bu hesaba para <0/>aktarın.", "636219628": "<0>c.herhangi bir anlaşma fırsatı bulunamazsa, şikayet DRC tarafından ele alınmak üzere karar aşamasına geçecektir.", "636427296": "Vergi bilgileri konusunda yardıma mı ihtiyacınız var? <0>Canlı sohbet aracılığıyla bize bildirin.", "636579615": "Kaybedilen bir işlemden sonra bir sonraki işleme eklenecek birim(ler) sayısı. Bir birim, ilk bahis miktarına eşittir.", @@ -1160,7 +1160,6 @@ "1199281499": "Son Basamaklar Listesi", "1201533528": "Kazanılan sözleşmeler", "1201773643": "sayısal", - "1202494002": "Gerçek zamanlı veriler, gelişmiş grafik araçları ve özelleştirilebilir görünümler elde edin.", "1203297580": "Bu blok bir Telegram kanalına mesaj gönderir.", "1203380736": "D'Alembert stratejisi Martingale'den daha az risklidir, ancak yine de işlem yapmadan önce fonlarınızın bu strateji ile ne kadar süreceğini belirleyebilirsiniz. Bu formülü kullanmanız yeterlidir.", "1204223111": "Bu örnekte, mum listesindeki açılış fiyatları \"mum_listesi\" adlı bir değişkene atanır.", @@ -3303,7 +3302,6 @@ "-1601813176": "Günlük limitlerinizi {{max_daily_buy}} değerine yükseltmek ister misiniz {{currency}} (buy) ve {{max_daily_sell}} {{currency}} (sell)?", "-1751632759": "<0>{{platform_name_go}} uygulamasıyla daha hızlı bir mobil ticaret deneyimi yaşayın!", "-1164554246": "Süresi dolmuş kimlik belgeleri gönderdiniz", - "-1090244963": "Deriv Trader Chart v2.0 ile Daha Akıllı Ticaret Yapın:", "-219846634": "Kimliğinizi doğrulayalım", "-529038107": "Yükle", "-1738575826": "Kasiyere erişmek için lütfen gerçek hesabınıza geçin veya bir hesap oluşturun.", @@ -3581,7 +3579,9 @@ "-184453418": "{{platform}} şifrenizi girin", "-393388362": "Belgelerinizi inceliyoruz. Bu yaklaşık 1 ila 3 gün sürmelidir.", "-2057918502": "İpucu: {{platform}} parolanızdan farklı olan Deriv parolanızı girmiş olabilirsiniz.", - "-510908328": "İşlem yapmaya başlamak için, Deriv hesabınızdan bu hesaba <0 />para aktarın<1 />.", + "-267598687": "Tebrikler, <0/>{{category}} {{platform}} {{type}} hesabınızı başarıyla oluşturdunuz. Ticarete başlamak için, Deriv hesabınızdan bu hesaba <1 />para aktarın <2 />.", + "-1475660820": "Deriv MT5 {{type}} hesabınız hazır. ", + "-1710177700": "Demo {{type}} hesabınız hazır.", "-1184248732": "Tebrikler, <0/>{{category}} {{platform}} {{type}} hesabınızı başarıyla oluşturdunuz. ", "-1928229820": "Deriv X yatırımcı parolasını sıfırla", "-1969916895": "Parolanız, büyük ve küçük harfler ile en az bir sayı ve özel karakter ( _ @ ? ! / # ) içeren 8-16 karakter arasında olmalıdır.", diff --git a/packages/translations/src/translations/vi.json b/packages/translations/src/translations/vi.json index ba85f05c04e2..1e9bc1506210 100644 --- a/packages/translations/src/translations/vi.json +++ b/packages/translations/src/translations/vi.json @@ -304,6 +304,7 @@ "328539132": "Lặp lại các chỉ dẫn bên trong một số lần xác định", "329353047": "Malta Financial Services Authority (MFSA) (Giấy phép số IS/70156)", "329404045": "<0>Chuyển sang tài khoản thực của bạn<1> để tạo tài khoản {{account_title}} {{platform}}.", + "330384187": "Cho phép giao dịch với lần chuyển tiền đầu tiên của bạn.", "333456603": "Giới hạn rút tiền", "333807745": "Nhấp vào khung bạn muốn xóa và nhấn phím Xóa trên bàn phím của bạn.", "334942497": "Thời gian mua", @@ -581,7 +582,6 @@ "632897893": "Nếu bất kỳ điều nào ở trên áp dụng cho bạn, hãy chọn <0>Có. Nếu không, hãy chọn <0>Không.", "634219491": "Bạn chưa cung cấp mã số thuế của mình. Thông tin này là cần thiết cho các yêu cầu pháp lý và quy định. Vui lòng truy cập tới <0>Thông tin cá nhân trong phần cài đặt tài khoản của bạn và điền vào mã số thuế mới nhất của bạn.", "634274250": "Mỗi giao dịch mất bao lâu để hết hạn.", - "636219153": "Để bắt đầu giao dịch, <0/>hãy chuyển tiền từ tài khoản Deriv của bạn vào tài khoản này.", "636219628": "<0>c. Nếu không có cơ hội giải quyết, khiếu nại sẽ chuyển sang giai đoạn phán quyết do DRC xử lý.", "636427296": "Cần trợ giúp về thông tin thuế? Hãy cho chúng tôi biết qua trò <0>chuyện trực tiếp.", "636579615": "Số đơn vị được thêm vào giao dịch tiếp theo sau khi giao dịch thua lỗ. Một đơn vị tương đương với số tiền cổ phần ban đầu.", @@ -1160,7 +1160,6 @@ "1199281499": "Danh sách các hợp đồng chữ số cuối", "1201533528": "Hợp đồng đã sinh lời", "1201773643": "số", - "1202494002": "Nhận dữ liệu thời gian thực, các công cụ biểu đồ nâng cao và chế độ xem có thể tùy chỉnh.", "1203297580": "Khung này gửi một tin nhắn tới kênh Telegram.", "1203380736": "Chiến lược D'Alembert ít rủi ro hơn Martingale, nhưng bạn vẫn có thể xác định số tiền của mình sẽ có thể giao dịch trong bao lâu với chiến lược này trước khi giao dịch. Chỉ cần sử dụng công thức này:", "1204223111": "Trong ví dụ này, giá bắt đầu của một danh sách nến được gán vào một biến gọi là \"candle_list\".", @@ -3303,7 +3302,6 @@ "-1601813176": "Bạn có muốn tăng mức giới hạn hàng ngày của bạn lên {{max_daily_buy}} {{currency}} (mua) và {{max_daily_sell}} {{currency}} (bán)?", "-1751632759": "Trải nghiệm giao dịch trên thiết bị di động nhanh hơn với ứng dụng <0>{{platform_name_go}}!", "-1164554246": "Giấy tờ tùy thân bạn gửi đã hết hạn", - "-1090244963": "Giao dịch thông minh hơn với Deriv Trader Chart v2.0:", "-219846634": "Hãy xác minh ID của bạn", "-529038107": "Cài đặt", "-1738575826": "Vui lòng chuyển sang tài khoản thực của bạn hoặc tạo một tài khoản để truy cập vào cổng thanh toán.", @@ -3581,7 +3579,9 @@ "-184453418": "Nhập mật khẩu {{platform}} của bạn", "-393388362": "Chúng tôi đang xét duyệt giấy tờ của bạn. Quá trình này sẽ mất khoảng từ 1 đến 3 ngày.", "-2057918502": "Gợi ý: Bạn có thể đã nhập mật khẩu tài khoản Deriv của mình, mật khẩu này khác với mật khẩu {{platform}} của bạn.", - "-510908328": "Để bắt đầu giao dịch, hãy <0 /> chuyển tiền <1 /> từ tài khoản Deriv của bạn vào tài khoản này.", + "-267598687": "Xin chúc mừng, bạn đã tạo thành công tài khoản <0/>{{category}} {{platform}} {{type}} của mình. Để bắt đầu giao dịch, hãy <1 />chuyển tiền<2 />từ tài khoản Deriv của bạn vào tài khoản này.", + "-1475660820": "Tài khoản Deriv MT5 {{type}} của bạn đã sẵn sàng. ", + "-1710177700": "Tài khoản demo {{type}} của bạn đã sẵn sàng.", "-1184248732": "Xin chúc mừng, bạn đã tạo thành công tài khoản <0/>{{category}} {{platform}} {{type}} của mình. ", "-1928229820": "Đặt lại mật khẩu nhà đầu tư Deriv X", "-1969916895": "Mật khẩu của bạn phải chứa từ 8-16 ký tự bao gồm chữ hoa và chữ thường, và ít nhất một số và ký tự đặc biệt ( _ @ ? ! / # ).", diff --git a/packages/translations/src/translations/zh_cn.json b/packages/translations/src/translations/zh_cn.json index b201f25d0cb8..5e5b1fefecb1 100644 --- a/packages/translations/src/translations/zh_cn.json +++ b/packages/translations/src/translations/zh_cn.json @@ -304,6 +304,7 @@ "328539132": "以指定次数重复内部说明", "329353047": "马耳他金融服务管理局(MFSA)(牌照编号 IS/70156)", "329404045": "<0>切换到真实账户<1>以开立{{platform}}{{account_title}} 账户。", + "330384187": "首次转账时启用交易。", "333456603": "取款限额", "333807745": "点击要移除的程序块,然后按键盘上的删除键。", "334942497": "买入时间", @@ -581,7 +582,6 @@ "632897893": "如果上述任何一项适用于您,请选择<0>\"是\"。否则,请选择<0>\"否\"。", "634219491": "您没有提供税务编号。法律和监管规定要求提供此信息。请到账户设置中的<0>个人资料,填写您最新的税务编号。", "634274250": "每笔交易需要多长时间才到期。", - "636219153": "要开始交易,请<0/>从 Deriv 账户向此账户转账。", "636219628": "<0>c.如果找不到和解机会,则投诉将进入由 DRC 处理的确定阶段。", "636427296": "需要税务信息帮助?请通过<0>实时聊天告诉我们。", "636579615": "交易亏损后要添加到下一笔交易的单位数。一个单位等于初始投注额。", @@ -1160,7 +1160,6 @@ "1199281499": "最后数字列表", "1201533528": "赢得的合约", "1201773643": "数字", - "1202494002": "获取实时数据、高级图表工具和自定义视图。", "1203297580": "此程序块将消息发送到Telegram通道。", "1203380736": "D’Alembert 策略的风险比 Martingale 策略低,但在交易之前,仍然可以确定使用此策略的资金可以维持多长时间。只需使用以下公式即可。", "1204223111": "此例中,烛线列表中的开盘价被分配予称为\"candle_list\"的变量。", @@ -3303,7 +3302,6 @@ "-1601813176": "想将每日限额提高到 {{max_daily_buy}} {{currency}}(买入)和 {{max_daily_sell}} {{currency}}(卖出)?", "-1751632759": "使用 <0>{{platform_name_go}} 应用体验更快的移动交易!", "-1164554246": "您提交了过期的身份证明文件", - "-1090244963": "使用 Deriv Trader Chart v2.0 交易 Smarter:", "-219846634": "让我们验证您的身份", "-529038107": "安装", "-1738575826": "请切换到或开立真实账户以访问收银台。", @@ -3581,7 +3579,9 @@ "-184453418": "输入{{platform}} 密码", "-393388362": "正在审核文件。应该需要大约 1 到 3 天。", "-2057918502": "提示:可能您输入了与 {{platform}} 密码不同的 Deriv 密码。", - "-510908328": "要开始交易,请从 Deriv 账户向此账户<0 />转账<1 />。", + "-267598687": "恭喜,您已成功开立<0/>{{category}} {{platform}} {{type}} 账户。请从 Deriv 账户<1 />转汇资金<2 />入此账户以开始交易。", + "-1475660820": "Deriv MT5 {{type}} 账户已准备就绪. ", + "-1710177700": "演示 {{type}} 账户已就诸。", "-1184248732": "恭喜,已成功开立 <0/>{{category}} {{platform}} {{type}} 账户。 ", "-1928229820": "重置Deriv X投资者密码", "-1969916895": "密码必须包含 8-16 个字符,包括大写和小写字母,以及至少一个数字和特殊字符 ( _ @ ? ! / # )。", diff --git a/packages/translations/src/translations/zh_tw.json b/packages/translations/src/translations/zh_tw.json index 1464a4e4ab88..747882f89a84 100644 --- a/packages/translations/src/translations/zh_tw.json +++ b/packages/translations/src/translations/zh_tw.json @@ -304,6 +304,7 @@ "328539132": "以指定次數重覆內部說明", "329353047": "馬爾他金融服務管理局 (MFSA) (執照編號 IS/70156)", "329404045": "<0>切換到真實帳戶<1>以開立{{platform}}{{account_title}} 帳戶。", + "330384187": "通過第一次轉帳啟用交易。", "333456603": "取款限額", "333807745": "點選要刪除的區塊,然後在鍵盤上按刪除。", "334942497": "買入時間", @@ -581,7 +582,6 @@ "632897893": "如果上述任何一項適用於您,請選取<0>「是」。否則,請選取<0>「否」。", "634219491": "您沒有提供稅務編號。法律和監管規定要求提供此資訊。請到帳戶設定中的<0>個人資料,填寫您最新的稅務編號。", "634274250": "每筆交易需要多長時間才過期。", - "636219153": "請從 Deriv 帳戶<0/>轉匯資金入此帳戶以開始交易。", "636219628": "<0>c.如果找不到和解機會,則投訴將進入由 DRC 處理的確定階段。", "636427296": "需要關於稅務資訊的幫助嗎?請透過<0>即時聊天告訴我們。", "636579615": "虧損交易後將新增到下一筆交易中的單位數。一個單位相當於初始投注額。", @@ -1160,7 +1160,6 @@ "1199281499": "最後數字清單", "1201533528": "贏得的合約", "1201773643": "數字", - "1202494002": "取得即時資料、進階圖表工具和可自訂檢視。", "1203297580": "此區塊將消息傳送到 Telegram 通道。", "1203380736": "D'Alembert 策略比 Martingale 低風險,但在交易之前,仍然可以通過此策略確定資金將持續多長時間。只需使用此公式。", "1204223111": "此例中,燭線清單中的開盤價被分配予稱為\"candle_list\"的變數。", @@ -3303,7 +3302,6 @@ "-1601813176": "想將每日限額提高為 {{max_daily_buy}} {{currency}}(買入)和 {{max_daily_sell}} {{currency}}(賣出)?", "-1751632759": "使用<0>{{platform_name_go}}應用體驗更快的行動交易。", "-1164554246": "提交了過期的身份證明文件", - "-1090244963": "使用 Deriv Trader Chart v2.0 交易 Smarter:", "-219846634": "驗證身份", "-529038107": "安裝", "-1738575826": "請切換到或開立真實帳戶以存取收銀台。", @@ -3581,7 +3579,9 @@ "-184453418": "輸入{{platform}} 密碼", "-393388362": "正在審核文件。應該需要大約 1 到 3 天。", "-2057918502": "提示:可能輸入了與 {{platform}} 密碼不同的 Deriv 密碼。", - "-510908328": "請從 Deriv 帳戶<0 />轉匯資金<1 />入此帳戶以開始交易。", + "-267598687": "恭喜,已成功建立了<0/>{{category}} {{platform}} {{type}} 帳戶。請從 Deriv 帳戶<1 />轉匯資金<2 />入此帳戶以開始交易。", + "-1475660820": "Deriv MT5 {{type}} 帳戶已準備就緒. ", + "-1710177700": "示範 {{type}} 帳戶已準備就緒.", "-1184248732": "恭喜,已成功建立 <0/>{{category}} {{platform}} {{type}}帳戶。", "-1928229820": "重設Deriv X投資者密碼", "-1969916895": "密碼必須包含 8-16 個字元,包括大寫和小寫字母,以及至少一個數字和特殊字元 (_ @?!/#)。", From 70555d3209fd4e394d3ba1b4ce78064d55553a27 Mon Sep 17 00:00:00 2001 From: Sandeep Rajput <90243468+sandeep-deriv@users.noreply.github.com> Date: Tue, 7 May 2024 15:15:59 +0800 Subject: [PATCH 19/22] [BOT] sandeep/BOT-1619/ts-migration stores (#14815) * refactor: :fire: converted self exclusion store and removed summary store+ * refactor: :fire: updated types and refactored functions * refactor: :fire: fixed breaking test coverage suits * refactor: :fire: fixing the broken test suits after the refactoring * refactor: :fire: updated test suits * refactor: :fire: fixed sonar cloud warning * refactor: :fire: migrated help content to ts * refactor: :fire: removed unused utility methods and ts conversion * refactor: :fire: ts coversion added missing types * refactor: :fire: updated test suits - multiplier * refactor: :fire: removed random number generator to fix sonar cloud issue * refactor: :fire: updated contract types and summary card store * refactor: :chore: refactoring stores removing unused binding * fix: :fire: updated types and corrected SL TP for multipliers * refactor: :fire: updated colors for dark mode --- .../src/app/__tests__/app-content.spec.tsx | 53 +++-- .../__tests__/{app.spec.js => app.spec.tsx} | 0 packages/bot-web-ui/src/app/app-main.tsx | 6 +- .../download/__tests__/download.spec.tsx | 23 +- .../src/components/download/download.tsx | 7 +- ...block-group.jsx => flyout-block-group.tsx} | 21 +- .../src/components/flyout/flyout-block.tsx | 2 +- .../flyout/{flyout.jsx => flyout.tsx} | 34 ++- .../bot-web-ui/src/components/flyout/index.ts | 2 +- .../src/components/notify-item/index.ts | 2 +- .../{notify-item.jsx => notify-item.tsx} | 14 +- .../components/summary/summary-card.types.ts | 74 +------ .../transaction-details-mobile.spec.tsx | 37 +--- .../transaction-details-mobile.tsx | 9 +- .../__tests__/transaction.spec.tsx | 62 +++--- .../__tests__/transactions.spec.tsx | 69 +++--- .../components/transactions/transaction.tsx | 31 ++- .../components/transactions/transactions.scss | 6 +- .../components/transactions/transactions.tsx | 64 +++++- .../constants/{contract.js => contract.ts} | 107 +++++++-- .../bot-web-ui/src/constants/load-modal.js | 15 -- .../bot-web-ui/src/constants/load-modal.ts | 11 + .../__tests__/search-box.spec.tsx | 0 .../__tests__/search-icon.spec.tsx | 2 +- packages/bot-web-ui/src/stores/app-store.ts | 54 +++-- .../bot-web-ui/src/stores/blockly-store.ts | 51 ++--- packages/bot-web-ui/src/stores/chart-store.ts | 60 +++--- .../bot-web-ui/src/stores/dashboard-store.ts | 8 +- ...out-help-store.js => flyout-help-store.ts} | 7 +- .../bot-web-ui/src/stores/load-modal-store.ts | 3 +- packages/bot-web-ui/src/stores/root-store.ts | 3 - .../bot-web-ui/src/stores/run-panel-store.ts | 107 ++++----- ...usion-store.js => self-exclusion-store.ts} | 13 +- ...ry-card-store.js => summary-card-store.ts} | 124 +++++++---- .../bot-web-ui/src/stores/summary-store.js | 5 - .../{toolbox-store.js => toolbox-store.ts} | 101 ++++----- ...actions-store.js => transactions-store.ts} | 203 +++++++++--------- .../src/utils/__tests__/multiplier.spec.ts | 11 +- .../src/utils/__tests__/window-size.spec.tsx | 47 ---- ...ntent.config.js => help-content.config.ts} | 0 .../{after_purchase.js => after_purchase.ts} | 0 .../help-strings/{balance.js => balance.ts} | 0 ...{before_purchase.js => before_purchase.ts} | 0 ...{check_direction.js => check_direction.ts} | 0 .../help-strings/{console.js => console.ts} | 0 ...eck_result.js => contract_check_result.ts} | 0 ...tements.js => controls_flow_statements.ts} | 0 .../{controls_for.js => controls_for.ts} | 0 ...ontrols_forEach.js => controls_forEach.ts} | 0 .../{controls_if.js => controls_if.ts} | 0 ...s_whileUntil.js => controls_whileUntil.ts} | 0 ...{during_purchase.js => during_purchase.ts} | 0 .../help-strings/{epoch.js => epoch.ts} | 0 .../help-strings/{get_ohlc.js => get_ohlc.ts} | 0 .../help-strings/{index.js => index.ts} | 0 ...{is_candle_black.js => is_candle_black.ts} | 0 .../{last_digit.js => last_digit.ts} | 0 ...{logic_operation.js => logic_operation.ts} | 0 ...{math_arithmetic.js => math_arithmetic.ts} | 0 .../{math_constrain.js => math_constrain.ts} | 0 .../{math_single.js => math_single.ts} | 0 ...{notify_telegram.js => notify_telegram.ts} | 0 .../help-strings/{ohlc.js => ohlc.ts} | 0 .../{ohlc_values.js => ohlc_values.ts} | 0 ...lues_in_list.js => ohlc_values_in_list.ts} | 0 ...res_ifreturn.js => procedures_ifreturn.ts} | 0 .../{read_details.js => read_details.ts} | 0 .../{read_ohlc.js => read_ohlc.ts} | 0 .../{read_ohlc_obj.js => read_ohlc_obj.ts} | 0 .../{sell_at_market.js => sell_at_market.ts} | 0 .../{sell_price.js => sell_price.ts} | 0 .../{sma_statement.js => sma_statement.ts} | 0 .../{text_print.js => text_print.ts} | 0 ...{text_prompt_ext.js => text_prompt_ext.ts} | 0 .../{tick_analysis.js => tick_analysis.ts} | 0 .../{todatetime.js => todatetime.ts} | 0 .../{totimestamp.js => totimestamp.ts} | 0 .../{trade_again.js => trade_again.ts} | 0 ...rade_definition.js => trade_definition.ts} | 0 ...ier.js => trade_definition_multiplier.tsx} | 0 ...ns.js => trade_definition_tradeoptions.ts} | 0 .../{variables_set.js => variables_set.ts} | 0 ...ifications.js => journal-notifications.ts} | 6 +- .../bot-web-ui/src/utils/mock/contract.ts | 19 ++ .../src/utils/mock/{index.js => index.ts} | 0 .../src/utils/mock/{ws-mock.js => ws-mock.ts} | 0 .../utils/{multiplier.js => multiplier.ts} | 10 +- ...{session-storage.js => session-storage.ts} | 6 +- .../src/utils/{settings.js => settings.ts} | 13 +- packages/bot-web-ui/src/utils/window-size.js | 19 -- packages/stores/types.ts | 2 +- 91 files changed, 777 insertions(+), 746 deletions(-) rename packages/bot-web-ui/src/app/__tests__/{app.spec.js => app.spec.tsx} (100%) rename packages/bot-web-ui/src/components/flyout/{flyout-block-group.jsx => flyout-block-group.tsx} (86%) rename packages/bot-web-ui/src/components/flyout/{flyout.jsx => flyout.tsx} (91%) rename packages/bot-web-ui/src/components/notify-item/{notify-item.jsx => notify-item.tsx} (80%) rename packages/bot-web-ui/src/constants/{contract.js => contract.ts} (68%) delete mode 100644 packages/bot-web-ui/src/constants/load-modal.js create mode 100644 packages/bot-web-ui/src/constants/load-modal.ts rename packages/bot-web-ui/src/pages/bot-builder/toolbox/{ => search-box}/__tests__/search-box.spec.tsx (100%) rename packages/bot-web-ui/src/pages/bot-builder/toolbox/{ => search-box}/__tests__/search-icon.spec.tsx (97%) rename packages/bot-web-ui/src/stores/{flyout-help-store.js => flyout-help-store.ts} (97%) rename packages/bot-web-ui/src/stores/{self-exclusion-store.js => self-exclusion-store.ts} (82%) rename packages/bot-web-ui/src/stores/{summary-card-store.js => summary-card-store.ts} (60%) delete mode 100644 packages/bot-web-ui/src/stores/summary-store.js rename packages/bot-web-ui/src/stores/{toolbox-store.js => toolbox-store.ts} (84%) rename packages/bot-web-ui/src/stores/{transactions-store.js => transactions-store.ts} (61%) delete mode 100644 packages/bot-web-ui/src/utils/__tests__/window-size.spec.tsx rename packages/bot-web-ui/src/utils/help-content/{help-content.config.js => help-content.config.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{after_purchase.js => after_purchase.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{balance.js => balance.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{before_purchase.js => before_purchase.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{check_direction.js => check_direction.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{console.js => console.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{contract_check_result.js => contract_check_result.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{controls_flow_statements.js => controls_flow_statements.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{controls_for.js => controls_for.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{controls_forEach.js => controls_forEach.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{controls_if.js => controls_if.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{controls_whileUntil.js => controls_whileUntil.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{during_purchase.js => during_purchase.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{epoch.js => epoch.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{get_ohlc.js => get_ohlc.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{index.js => index.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{is_candle_black.js => is_candle_black.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{last_digit.js => last_digit.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{logic_operation.js => logic_operation.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{math_arithmetic.js => math_arithmetic.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{math_constrain.js => math_constrain.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{math_single.js => math_single.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{notify_telegram.js => notify_telegram.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{ohlc.js => ohlc.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{ohlc_values.js => ohlc_values.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{ohlc_values_in_list.js => ohlc_values_in_list.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{procedures_ifreturn.js => procedures_ifreturn.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{read_details.js => read_details.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{read_ohlc.js => read_ohlc.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{read_ohlc_obj.js => read_ohlc_obj.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{sell_at_market.js => sell_at_market.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{sell_price.js => sell_price.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{sma_statement.js => sma_statement.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{text_print.js => text_print.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{text_prompt_ext.js => text_prompt_ext.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{tick_analysis.js => tick_analysis.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{todatetime.js => todatetime.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{totimestamp.js => totimestamp.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{trade_again.js => trade_again.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{trade_definition.js => trade_definition.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{trade_definition_multiplier.js => trade_definition_multiplier.tsx} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{trade_definition_tradeoptions.js => trade_definition_tradeoptions.ts} (100%) rename packages/bot-web-ui/src/utils/help-content/help-strings/{variables_set.js => variables_set.ts} (100%) rename packages/bot-web-ui/src/utils/{journal-notifications.js => journal-notifications.ts} (93%) create mode 100644 packages/bot-web-ui/src/utils/mock/contract.ts rename packages/bot-web-ui/src/utils/mock/{index.js => index.ts} (100%) rename packages/bot-web-ui/src/utils/mock/{ws-mock.js => ws-mock.ts} (100%) rename packages/bot-web-ui/src/utils/{multiplier.js => multiplier.ts} (64%) rename packages/bot-web-ui/src/utils/{session-storage.js => session-storage.ts} (76%) rename packages/bot-web-ui/src/utils/{settings.js => settings.ts} (72%) delete mode 100644 packages/bot-web-ui/src/utils/window-size.js diff --git a/packages/bot-web-ui/src/app/__tests__/app-content.spec.tsx b/packages/bot-web-ui/src/app/__tests__/app-content.spec.tsx index 78daac41ea6a..62857bc0b5bd 100644 --- a/packages/bot-web-ui/src/app/__tests__/app-content.spec.tsx +++ b/packages/bot-web-ui/src/app/__tests__/app-content.spec.tsx @@ -3,6 +3,7 @@ import moment from 'moment'; import { unmountComponentAtNode } from 'react-dom'; import { mockStore, StoreProvider } from '@deriv/stores'; import { act, render, screen, waitFor } from '@testing-library/react'; +import { transaction_elements } from 'Constants/transactions'; import RootStore from 'Stores/root-store'; import { DBotStoreProvider, mockDBotStore } from 'Stores/useDBotStore'; import { mock_ws } from '../../utils/mock'; @@ -11,7 +12,7 @@ import AppContent from '../app-content'; const mock_data = { data: { msg_type: 'proposal_open_contract', - proposal_open_contract: { status: 'close', contract_id: 'test_contract_id' }, + proposal_open_contract: { status: 'close', contract_id: 22 }, }, }; const mock_unsubscribe = jest.fn(); @@ -67,6 +68,9 @@ jest.mock('Components/route-prompt-dialog', () => ({ window.Blockly = { Colours: { RootBlock: {} }, + utils: { + genUid: jest.fn(() => 'test_uid'), + }, }; describe('AppContent', () => { let wrapper: ({ children }: { children: JSX.Element }) => JSX.Element, mock_DBot_store: RootStore | undefined; @@ -105,14 +109,23 @@ describe('AppContent', () => { }); it('should settle open contracts if there is any', async () => { - mock_store.client.is_logged_in = false; - mock_DBot_store?.transactions?.recovered_transactions.push('test_trx_id_2'); - mock_DBot_store?.transactions?.transactions.push({ - data: { - contract_id: 'test_contract_id_1', - is_completed: false, - }, - }); + mock_store.client.is_logged_in = true; + mock_store.client.loginid = 'cr1'; + + mock_DBot_store?.transactions?.recovered_transactions.push(11); + if (mock_DBot_store) + mock_DBot_store.transactions.elements = { + cr1: [ + { + type: transaction_elements.CONTRACT, + data: { + contract_id: 22, + is_completed: false, + }, + }, + ], + }; + render(, { wrapper, }); @@ -123,13 +136,21 @@ describe('AppContent', () => { it('should unsubscribe message handler on component unmount', async () => { mock_store.client.is_logged_in = false; - mock_DBot_store?.transactions?.recovered_transactions.push('test_trx_id_2'); - mock_DBot_store?.transactions?.transactions.push({ - data: { - contract_id: 'test_contract_id_1', - is_completed: false, - }, - }); + mock_DBot_store?.transactions?.recovered_transactions.push(11); + + if (mock_DBot_store) + mock_DBot_store.transactions.elements = { + cr1: [ + { + type: transaction_elements.CONTRACT, + data: { + contract_id: 22, + is_completed: false, + }, + }, + ], + }; + const { container } = render(, { wrapper, }); diff --git a/packages/bot-web-ui/src/app/__tests__/app.spec.js b/packages/bot-web-ui/src/app/__tests__/app.spec.tsx similarity index 100% rename from packages/bot-web-ui/src/app/__tests__/app.spec.js rename to packages/bot-web-ui/src/app/__tests__/app.spec.tsx diff --git a/packages/bot-web-ui/src/app/app-main.tsx b/packages/bot-web-ui/src/app/app-main.tsx index dfb969ceaa38..973fffa66f74 100644 --- a/packages/bot-web-ui/src/app/app-main.tsx +++ b/packages/bot-web-ui/src/app/app-main.tsx @@ -1,7 +1,6 @@ import React from 'react'; import { TStores } from '@deriv/stores/types'; import type { TWebSocket } from 'Types'; -import { setInnerHeightToVariable } from '../utils/window-size'; import AppContent from './app-content'; import DBotProviders from './dbot-providers'; @@ -15,7 +14,10 @@ type TAppProps = { const App = ({ passthrough }: TAppProps) => { const { root_store, WS } = passthrough; React.useEffect(() => { - setInnerHeightToVariable(); + // Setting the inner height of the document to the --vh variable to fix the issue + // of dynamic view height(vh) on mobile browsers for few scrollable components + const vh = window.innerHeight; + document.body.style.setProperty('--vh', `${vh}px`); }, []); return ( diff --git a/packages/bot-web-ui/src/components/download/__tests__/download.spec.tsx b/packages/bot-web-ui/src/components/download/__tests__/download.spec.tsx index 3341d05723ec..fd7ffc6ead8e 100644 --- a/packages/bot-web-ui/src/components/download/__tests__/download.spec.tsx +++ b/packages/bot-web-ui/src/components/download/__tests__/download.spec.tsx @@ -2,7 +2,9 @@ import React from 'react'; import { mockStore, StoreProvider } from '@deriv/stores'; import { render, screen } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; +import { transaction_elements } from 'Constants/transactions'; import { mock_ws } from 'Utils/mock'; +import { mock_contract } from 'Utils/mock/contract'; import RootStore from 'Stores/root-store'; import { DBotStoreProvider, mockDBotStore } from 'Stores/useDBotStore'; import Download from '../download'; @@ -12,9 +14,9 @@ jest.mock('@deriv/bot-skeleton/src/scratch/dbot', () => jest.fn()); describe('', () => { let wrapper: ({ children }: { children: JSX.Element }) => JSX.Element, mock_DBot_store: RootStore | undefined; + const mock_store = mockStore({}); beforeEach(() => { - const mock_store = mockStore({}); mock_DBot_store = mockDBotStore(mock_store, mock_ws); wrapper = ({ children }: { children: JSX.Element }) => ( @@ -77,11 +79,20 @@ describe('', () => { }); it('should render the Download your journal message', () => { - mock_DBot_store?.transactions?.transactions.push({ - data: { - contract_id: 'test_contract_id_1', - }, - }); + mock_store.client.is_logged_in = true; + mock_store.client.loginid = 'cr1'; + + if (mock_DBot_store) + mock_DBot_store.transactions.elements = { + cr1: [ + { + type: transaction_elements.CONTRACT, + data: { + ...mock_contract, + }, + }, + ], + }; render(, { wrapper, diff --git a/packages/bot-web-ui/src/components/download/download.tsx b/packages/bot-web-ui/src/components/download/download.tsx index b834095b1d37..543e21063032 100644 --- a/packages/bot-web-ui/src/components/download/download.tsx +++ b/packages/bot-web-ui/src/components/download/download.tsx @@ -33,7 +33,8 @@ const Download = observer(({ tab }: TDownloadProps) => { localize('Profit/Loss'), ], ]; - transaction_list.forEach(({ data }: { data: TTransaction }) => + transaction_list.forEach(({ data }: { data: TTransaction }) => { + if (typeof data === 'string') return; items.push([ data.display_name, data.transaction_ids.buy, @@ -46,8 +47,8 @@ const Download = observer(({ tab }: TDownloadProps) => { data.exit_tick_time, data.buy_price, data.profit, - ]) - ); + ]); + }); const content = items.map(e => e.join(',')).join('\n'); downloadFile(localize('Transactions'), content); diff --git a/packages/bot-web-ui/src/components/flyout/flyout-block-group.jsx b/packages/bot-web-ui/src/components/flyout/flyout-block-group.tsx similarity index 86% rename from packages/bot-web-ui/src/components/flyout/flyout-block-group.jsx rename to packages/bot-web-ui/src/components/flyout/flyout-block-group.tsx index 09936bfa21e0..4471c131a601 100644 --- a/packages/bot-web-ui/src/components/flyout/flyout-block-group.jsx +++ b/packages/bot-web-ui/src/components/flyout/flyout-block-group.tsx @@ -1,13 +1,19 @@ import React from 'react'; import classNames from 'classnames'; -import { PropTypes } from 'prop-types'; import { Button, Text } from '@deriv/components'; import { Localize } from '@deriv/translations'; import FlyoutBlock from './flyout-block'; -const FlyoutBlockGroup = ({ onInfoClick, block_node, is_active, should_hide_display_name }) => { - const block_type = block_node.getAttribute('type'); - const block_meta = Blockly.Blocks[block_type].meta(); +type TFlyoutBlockGroup = { + onInfoClick: () => void; + block_node: Element; + is_active: boolean; + should_hide_display_name: boolean; +}; + +const FlyoutBlockGroup = ({ onInfoClick, block_node, is_active, should_hide_display_name }: TFlyoutBlockGroup) => { + const block_type = (block_node.getAttribute('type') || '') as string; + const block_meta = window.Blockly.Blocks[block_type].meta(); const is_variables_get = block_type === 'variables_get'; const is_variables_set = block_type === 'variables_set'; const { display_name, description } = block_meta; @@ -20,7 +26,7 @@ const FlyoutBlockGroup = ({ onInfoClick, block_node, is_active, should_hide_disp className='flyout__button-add flyout__button-add--hide' has_effect is_plus - onClick={() => Blockly.derivWorkspace.addBlockNode(block_node)} + onClick={() => window.Blockly.derivWorkspace.addBlockNode(block_node)} type='button' />
@@ -65,9 +71,4 @@ const FlyoutBlockGroup = ({ onInfoClick, block_node, is_active, should_hide_disp ); }; -FlyoutBlockGroup.propTypes = { - block_nodes: PropTypes.array, - onInfoClick: PropTypes.func, -}; - export default FlyoutBlockGroup; diff --git a/packages/bot-web-ui/src/components/flyout/flyout-block.tsx b/packages/bot-web-ui/src/components/flyout/flyout-block.tsx index 2bc6b58f51a4..29074ff4eb95 100644 --- a/packages/bot-web-ui/src/components/flyout/flyout-block.tsx +++ b/packages/bot-web-ui/src/components/flyout/flyout-block.tsx @@ -4,7 +4,7 @@ import { observer } from '@deriv/stores'; import { useDBotStore } from 'Stores/useDBotStore'; type FlyoutBlockProps = { - block_node: React.ReactNode; + block_node: Element; should_hide_display_name?: boolean; }; diff --git a/packages/bot-web-ui/src/components/flyout/flyout.jsx b/packages/bot-web-ui/src/components/flyout/flyout.tsx similarity index 91% rename from packages/bot-web-ui/src/components/flyout/flyout.jsx rename to packages/bot-web-ui/src/components/flyout/flyout.tsx index 4a419eb83484..9226623354ca 100644 --- a/packages/bot-web-ui/src/components/flyout/flyout.jsx +++ b/packages/bot-web-ui/src/components/flyout/flyout.tsx @@ -6,10 +6,15 @@ import { observer, useStore } from '@deriv/stores'; import { localize } from '@deriv/translations'; import { help_content_config } from 'Utils/help-content/help-content.config'; import { useDBotStore } from 'Stores/useDBotStore'; -import FlyoutBlockGroup from './flyout-block-group.jsx'; +import FlyoutBlockGroup from './flyout-block-group'; import HelpBase from './help-contents'; -const SearchResult = ({ search_term, total_result }) => ( +type TSearchResult = { + search_term: string; + total_result: number; +}; + +const SearchResult = ({ search_term, total_result }: TSearchResult) => (
{localize('Results for "{{ search_term }}"', { @@ -23,7 +28,18 @@ const SearchResult = ({ search_term, total_result }) => (
); -const FlyoutContent = props => { +type TFlyoutContent = { + flyout_content: Element[]; + active_helper: string; + setHelpContent: (node: Element) => void; + initFlyoutHelp: (node: Element, block_type: string) => void; + is_empty: boolean; + is_search_flyout: boolean; + selected_category: Element; + first_get_variable_block_index: number; +}; + +const FlyoutContent = (props: TFlyoutContent) => { const flyout_ref = React.useRef(); const { flyout_content, @@ -71,11 +87,11 @@ const FlyoutContent = props => { switch (tag_name) { case Blockly.Xml.NODE_BLOCK: { - const block_type = node.getAttribute('type'); + const block_type = (node.getAttribute('type') || '') as string; return ( { } case Blockly.Xml.NODE_BUTTON: { const callback_key = node.getAttribute('callbackKey'); - const callback_id = node.getAttribute('id'); + const callback_id = node.getAttribute('id') as string; return ( +); + +export default OpenLiveChatLink; diff --git a/packages/components/src/index.ts b/packages/components/src/index.ts index db32cb8e07c8..ea62bebcb2a0 100644 --- a/packages/components/src/index.ts +++ b/packages/components/src/index.ts @@ -79,6 +79,7 @@ export { default as Money } from './components/money'; export { default as MultiStep } from './components/multi-step'; export { default as NewsTicker } from './components/news-ticker'; export { default as Numpad } from './components/numpad'; +export { default as OpenLiveChatLink } from './components/open-livechat-link'; export { default as PageError } from './components/page-error'; export { default as PageErrorContainer } from './components/page-error-container'; export { default as PageOverlay } from './components/page-overlay';