diff --git a/.circleci/config.yml b/.circleci/config.yml index 716defca71a2..babd2e81b14c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -60,12 +60,12 @@ commands: # VERIFY_CACHE_FOLDERS_START (DO NOT REMOVE) - "node_modules" - "packages/account/node_modules" + - "packages/appstore/node_modules" - "packages/bot-skeleton/node_modules" - "packages/bot-web-ui/node_modules" - "packages/cashier/node_modules" - "packages/components/node_modules" - "packages/core/node_modules" - - "packages/dashboard/node_modules" - "packages/indicators/node_modules" - "packages/p2p/node_modules" - "packages/shared/node_modules" @@ -80,13 +80,6 @@ commands: name: "Build all packages" command: npm run build - build_dashboard: - description: "Build dashboard" - steps: - - run: - name: "Build all packages for deriv dashboard" - command: npm run build:dashboard - build_storybook: description: "Build storybook" steps: @@ -172,14 +165,6 @@ jobs: - npm_install_from_cache - build - build_dashboard: - docker: - - image: circleci/node:14.17.1-stretch - steps: - - git_checkout_from_cache - - npm_install_from_cache - - build_dashboard - release_storybook: docker: - image: circleci/node:14.17.1-stretch @@ -215,22 +200,6 @@ jobs: environment: NODE_ENV: staging - release_staging_dashboard: - docker: - - image: circleci/node:14.17.1-stretch - steps: - - git_checkout_from_cache - - npm_install_from_cache - - build_dashboard - - versioning: - version_name: staging-dashboard - - docker_build_push: - docker_image_name: deriv-app-dashboard - docker_image_latest_tag: latest-staging-dashboard - - notify_slack - environment: - NODE_ENV: staging - release_production: docker: - image: circleci/node:14.17.1-stretch @@ -248,22 +217,6 @@ jobs: environment: NODE_ENV: staging - release_production_dashboard: - docker: - - image: circleci/node:14.17.1-stretch - steps: - - git_checkout_from_cache - - npm_install_from_cache - - build_dashboard - - versioning: - version_name: production-dashboard - - docker_build_push: - docker_image_name: deriv-app-dashboard - docker_image_latest_tag: latest - - notify_slack - environment: - NODE_ENV: staging - build_and_test: docker: - image: circleci/node:14.17.1-stretch @@ -294,11 +247,6 @@ workflows: filters: branches: only: /^master$/ - - release_staging_dashboard: - context: binary-frontend-artifact-upload - filters: - branches: - only: /^master$/ release_production: jobs: @@ -310,16 +258,6 @@ workflows: tags: only: /^production.*/ - release_production_dashboard: - jobs: - - release_production_dashboard: - context: binary-frontend-artifact-upload - filters: - branches: - ignore: /.*/ - tags: - only: /^dashboard-production.*/ - test: jobs: - build_and_test: diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 2b828bb936b0..7bc8c901a133 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -42,7 +42,7 @@ # matin-binary # mehrzad-fs # nijil-binary -# nikolai-deriv +# njazuli-deriv # yashim-deriv ###################################################################################################### @@ -79,9 +79,9 @@ # deriv-app/bot # ============================================================== -/packages/bot-skeleton/**/* @mehrzad-fs @nikolai-deriv -/packages/bot-web-ui/**/* @mehrzad-fs @nikolai-deriv -/packages/indicators/**/* @mehrzad-fs @nikolai-deriv +/packages/bot-skeleton/**/* @mehrzad-fs +/packages/bot-web-ui/**/* @mehrzad-fs +/packages/indicators/**/* @mehrzad-fs # ============================================================== @@ -122,7 +122,7 @@ /packages/publisher/**/* @nijil-binary # ============================================================== -# deriv-app/dashboard +# deriv-app/appstore # ============================================================== -/packages/dashboard/**/* @matin-binary @akmal-binary +/packages/appstore/**/* @matin-binary @balakrishna-binary @njazuli-deriv @bahar-fs diff --git a/.github/boring-cyborg.yml b/.github/boring-cyborg.yml index acf328d2700e..2ed5115e4c70 100644 --- a/.github/boring-cyborg.yml +++ b/.github/boring-cyborg.yml @@ -1,14 +1,14 @@ labelPRBasedOnFilePath: Account: - packages/account/**/* + AppStore: + - packages/appstore/**/* Bot: - packages/bot-*/**/* Components: - packages/components/**/* Core: - packages/core/**/* - Dashboard: - - packages/dashboard/**/* P2P: - packages/p2p/**/* Shared: diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml new file mode 100644 index 000000000000..03b5023f595e --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,27 @@ +name: Codecov Workflow +on: [ "pull_request" ] +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Use Node.js 14.x + uses: actions/setup-node@v1 + with: + node-version: 14.x + - name: install, bootstrap and make test coverage + run: | + npm install + npm run bootstrap + npm run build + npm run test:jest + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v2 + with: + directory: ./coverage + fail_ci_if_error: true + files: ./coverage/lcov.info + name: codecov-umbrella + verbose: true diff --git a/.github/workflows/generate_and_push_deriv_api_types.yml b/.github/workflows/generate_and_push_deriv_api_types.yml index 7c23d0854a27..f2782f3f788f 100644 --- a/.github/workflows/generate_and_push_deriv_api_types.yml +++ b/.github/workflows/generate_and_push_deriv_api_types.yml @@ -77,15 +77,15 @@ jobs: cd deriv-app package_name="@deriv/api-types" - old_version=$(json -f packages/dashboard/package.json -a devDependencies."$package_name") + old_version=$(json -f packages/appstore/package.json -a dependencies."$package_name") safe_old_version=$(echo $old_version | sed 's/[^a-zA-Z0-9.]//g') git checkout -b "$package_name" # "Manually" bump the version in package.json to accommodate # Lerna's flexibility (or its lack thereof). - json -I -f packages/dashboard/package.json -e "this.devDependencies[\"$package_name\"]=\"$new_version\"" -o json-4 - rm packages/dashboard/package-lock.json + json -I -f packages/appstore/package.json -e "this.dependencies[\"$package_name\"]=\"$new_version\"" -o json-4 + json -I -f packages/trader/package.json -e "this.dependencies[\"$package_name\"]=\"$new_version\"" -o json-4 # We have to run "lerna bootstrap --no-ci" to generate a new # package-lock.json ("npm run bootstrap" requires this). diff --git a/.gitignore b/.gitignore index d20a017a912d..11cfd1de421d 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ packages/account/lib/ packages/components/.out packages/components/src/components/icon/icons-manifest.js packages/p2p/lib/ -packages/dashboard/lib/ +packages/appstore/dist/ +packages/appstore/lib/ .env diff --git a/README.md b/README.md index d7d82c5d1818..0883fcfa36f9 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ This repository contains the various platforms of the Deriv application. ![CircleCI](https://img.shields.io/circleci/build/github/binary-com/deriv-app) ![Prerequisite](https://img.shields.io/badge/node-%3E%3D14.17.1-blue.svg) ![Prerequisite](https://img.shields.io/badge/npm-%3E%3D7.21.0-blue.svg) [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/) ![Sonar Tech Debt](https://img.shields.io/sonar/tech_debt/binary-com_deriv-app?server=https%3A%2F%2Fsonarcloud.io) ![Sonar Violations (short format)](https://img.shields.io/sonar/violations/binary-com_deriv-app?server=https%3A%2F%2Fsonarcloud.io) +[![codecov](https://codecov.io/gh/binary-com/deriv-app/branch/dev/graph/badge.svg?token=LClg2rlZ4z)](https://codecov.io/gh/binary-com/deriv-app) **In this document**: @@ -104,10 +105,10 @@ Before running or contribute to this project, you need to have the setup of the | Package name | Docs | Version | | :------------- | :------------------------------------------------------------------------------------------------------------------ | :--------------------------------------------------------------------------------------------------------------------------------------- | +| `Appstore` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/appstore/README.md) | - | | `Bot` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/bot/README.md) | - | | `Components` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/components/README.md) | - | | `Core` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/core/README.md) | - | -| `Dashboard` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/dashboard/README.md) | [![npm](https://img.shields.io/npm/v/@deriv/dashboard.svg?style=flat-square&color=blue)](https://www.npmjs.com/package/@deriv/dashboard) | | `P2P` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/p2p/README.md) | [![npm](https://img.shields.io/npm/v/@deriv/p2p.svg?style=flat-square&color=blue)](https://www.npmjs.com/package/@deriv/p2p) | | `Shared` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/shared/README.md) | - | | `Trader` | [![](https://img.shields.io/badge/API%20Docs-readme-orange.svg?style=flat-square)](packages/trader/README.md) | - | diff --git a/docs/README.md b/docs/README.md index 1376c0fcab9f..4fe9afff52e3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -18,10 +18,10 @@ There are 2 types of dependencies: 2. Platforms/Modules/Apps - These can be viewed as applications of their own. According to business logic, these are different domains/sections, and most likely have their own route. At the time of writing, this includes: - `@deriv/account` + - `@deriv/appstore` - `@deriv/bot-skeleton` - `@deriv/bot-web-ui` - `@deriv/cashier` - - `@deriv/dashboard` - `@deriv/p2p` - `@deriv/trader` diff --git a/package-lock.json b/package-lock.json index b57969c8f469..a74da39ffb7c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,7 +7,6 @@ "name": "root", "dependencies": { "@babel/preset-typescript": "^7.16.5", - "@deriv/api-types": "1.0.48", "@testing-library/jest-dom": "^5.12.0", "@types/react-transition-group": "^4.4.4", "babel-jest": "^27.3.1", @@ -1868,11 +1867,6 @@ "node": ">=0.1.95" } }, - "node_modules/@deriv/api-types": { - "version": "1.0.48", - "resolved": "https://registry.npmjs.org/@deriv/api-types/-/api-types-1.0.48.tgz", - "integrity": "sha512-qC1C1yXQe8G8pCgomkXCHbXVngvu/pW0DGpTTt/LVA7VtxxeuT2kbO2WH8X0mz8p+HerbmgYhegTu/dWNB720A==" - }, "node_modules/@eslint/eslintrc": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", @@ -26100,11 +26094,6 @@ "minimist": "^1.2.0" } }, - "@deriv/api-types": { - "version": "1.0.48", - "resolved": "https://registry.npmjs.org/@deriv/api-types/-/api-types-1.0.48.tgz", - "integrity": "sha512-qC1C1yXQe8G8pCgomkXCHbXVngvu/pW0DGpTTt/LVA7VtxxeuT2kbO2WH8X0mz8p+HerbmgYhegTu/dWNB720A==" - }, "@eslint/eslintrc": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", diff --git a/package.json b/package.json index 9858a0471d92..fdb1342d90dd 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,6 @@ "bootstrap": "f () { npm ci && lerna link && lerna bootstrap --ci --hoist --strict && lerna link && npm run build:travis ;}; f", "build": "f () { lerna exec --scope=@deriv/${1:-'*'} -- npm run build $2 ;}; f", "build:publish": "f () { lerna exec --scope=@deriv/${1:-'*'} -- npm run build:publish $2 ;}; f", - "build:dashboard": "export IS_DASHBOARD=true && npm run build && export IS_DASHBOARD=", "build:local": "f () { lerna exec --scope @deriv/trader --scope @deriv/bot-web-ui --parallel -- npm run build $1 ;}; f", "build:travis": "lerna exec --scope @deriv/shared --scope @deriv/components --scope @deriv/translations --scope @deriv/cashier --scope @deriv/account --scope @deriv/p2p -- npm run build:travis", "build:prod": "export NODE_ENV=staging && npm run build && export NODE_ENV=", @@ -70,14 +69,13 @@ "publish_package": "f () { lerna exec --scope=@deriv/${1:-'*'} -- npm run publish_package $2 ;}; f", "serve": "f () { lerna exec --scope=@deriv/${1:-'*'} -- npm run serve $npm_config_open;}; f", "start": "f () { lerna exec --scope=@deriv/${1:-'*'} -- npm run start ;}; f", - "test": "f () { bash ./scripts/circleci-config.test.sh && npm run test:typecheck && npm run test:stylelint && npm run test:eslint && npm run test:jest ;}; f", + "test": "f () { bash ./scripts/circleci-config.test.sh && npm run test:stylelint && npm run test:eslint && npm run test:jest ;}; f", "test:eslint": "f () { lerna exec --scope=@deriv/${1:-'*'} -- npm run test:eslint $2;}; f", "test:mocha": "f () { lerna exec --scope=@deriv/${1:-'*'} -- npm run test:mocha ;}; f", "test:stylelint": "stylelint \"./packages/*/src/**/*.s(a|c)ss\"", "test:jest": "jest --all --maxWorkers=2", "test:qa": "cd e2e_tests && jest -c ./jest.config.js --maxWorkers=2 --detectOpenHandles", "test:performance": "cd e2e_tests && jest -c ./jest.config.js --maxWorkers=2 --detectOpenHandles performance", - "test:typecheck": "lerna exec --scope=@deriv/dashboard -- npm run test:typecheck", "stylelint:fix": "stylelint \"./packages/*/src/**/*.s(a|c)ss\" --fix", "translate": "f () { lerna exec --scope @deriv/translations -- npm run translate ;}; f", "stylelint-check": "stylelint-config-prettier-check", @@ -85,7 +83,6 @@ }, "dependencies": { "@babel/preset-typescript": "^7.16.5", - "@deriv/api-types": "1.0.48", "@testing-library/jest-dom": "^5.12.0", "@types/react-transition-group": "^4.4.4", "babel-jest": "^27.3.1", diff --git a/packages/account/src/Components/Routes/binary-link.jsx b/packages/account/src/Components/Routes/binary-link.jsx index be396321f25f..9c8ba00bb1a1 100644 --- a/packages/account/src/Components/Routes/binary-link.jsx +++ b/packages/account/src/Components/Routes/binary-link.jsx @@ -6,9 +6,9 @@ import getRoutesConfig from 'Constants/routes-config'; import { findRouteByPath, normalizePath } from './helpers'; const BinaryLink = ({ active_class, to, children, ...props }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const path = normalizePath(to); - const route = findRouteByPath(path, getRoutesConfig({ is_dashboard })); + const route = findRouteByPath(path, getRoutesConfig({ is_appstore })); if (!route) { throw new Error(`Route not found: ${to}`); diff --git a/packages/account/src/Components/Routes/binary-routes.jsx b/packages/account/src/Components/Routes/binary-routes.jsx index a4010c39b0d6..8c331893583f 100644 --- a/packages/account/src/Components/Routes/binary-routes.jsx +++ b/packages/account/src/Components/Routes/binary-routes.jsx @@ -5,7 +5,7 @@ import getRoutesConfig from 'Constants/routes-config'; import RouteWithSubRoutes from './route-with-sub-routes.jsx'; const BinaryRoutes = props => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( { }} > - {getRoutesConfig({ is_dashboard }).map((route, idx) => ( + {getRoutesConfig({ is_appstore }).map((route, idx) => ( ))} diff --git a/packages/account/src/Components/account-limits/account-limits-article.jsx b/packages/account/src/Components/account-limits/account-limits-article.jsx index 9041af00ca34..9d2ae9885979 100644 --- a/packages/account/src/Components/account-limits/account-limits-article.jsx +++ b/packages/account/src/Components/account-limits/account-limits-article.jsx @@ -12,7 +12,7 @@ const AccountLimitsArticle = () => { ]} + components={[]} />, ]} /> diff --git a/packages/account/src/Components/account-limits/account-limits.jsx b/packages/account/src/Components/account-limits/account-limits.jsx index 7d1c72a9a922..8a7ebb19a903 100644 --- a/packages/account/src/Components/account-limits/account-limits.jsx +++ b/packages/account/src/Components/account-limits/account-limits.jsx @@ -32,7 +32,7 @@ const AccountLimits = ({ const isMounted = useIsMounted(); const [is_loading, setLoading] = React.useState(false); const [is_overlay_shown, setIsOverlayShown] = React.useState(false); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); React.useEffect(() => { if (is_virtual) { @@ -67,10 +67,10 @@ const AccountLimits = ({ return (
- ; + ;
); } @@ -250,12 +250,12 @@ const AccountLimits = ({ - {is_dashboard && !is_fully_authenticated && ( + {is_appstore && !is_fully_authenticated && ( - {!is_dashboard || + {!is_appstore || (isMobile() && (
diff --git a/packages/account/src/Components/address-details/address-details.jsx b/packages/account/src/Components/address-details/address-details.jsx index c757d7c18199..761030bca7fe 100644 --- a/packages/account/src/Components/address-details/address-details.jsx +++ b/packages/account/src/Components/address-details/address-details.jsx @@ -52,7 +52,7 @@ const AddressDetails = ({ selected_step_ref, ...props }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const [has_fetched_states_list, setHasFetchedStatesList] = React.useState(false); const [address_state_to_display, setAddressStateToDisplay] = React.useState(''); @@ -119,10 +119,10 @@ const AddressDetails = ({
- {!is_dashboard && ( + {!is_appstore && ( )} - {is_dashboard && ( + {is_appstore && (
{localize( @@ -149,9 +149,9 @@ const AddressDetails = ({
@@ -205,7 +205,7 @@ const AddressDetails = ({ ); setAddressStateToDisplay(''); }} - list_portal_id={is_dashboard ? '' : 'modal_root'} + list_portal_id={is_appstore ? '' : 'modal_root'} /> @@ -238,11 +238,9 @@ const AddressDetails = ({ )} { diff --git a/packages/account/src/Components/currency-selector/currency-selector.jsx b/packages/account/src/Components/currency-selector/currency-selector.jsx index 39dc2c67d38a..da2dbec8351e 100644 --- a/packages/account/src/Components/currency-selector/currency-selector.jsx +++ b/packages/account/src/Components/currency-selector/currency-selector.jsx @@ -38,7 +38,7 @@ const CurrencySelector = ({ is_eu, ...props }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const crypto = legal_allowed_currencies.filter(currency => currency.type === 'crypto'); const fiat = legal_allowed_currencies.filter(currency => currency.type === 'fiat'); const [is_bypass_step, setIsBypassStep] = React.useState(false); @@ -91,7 +91,7 @@ const CurrencySelector = ({ }, [is_bypass_step]); const getHeightOffset = () => { - if (is_dashboard) { + if (is_appstore) { return '222px'; } else if (!has_currency && has_real_account) { return '89px'; @@ -222,7 +222,7 @@ const CurrencySelector = ({ } is_disabled={isSubmitDisabled(values)} is_center={false} - is_absolute={set_currency || is_dashboard} + is_absolute={set_currency || is_appstore} label={getSubmitLabel()} {...(has_cancel ? { @@ -247,7 +247,7 @@ CurrencySelector.propTypes = { has_real_account: PropTypes.bool, onSubmit: PropTypes.func, value: PropTypes.any, - is_dashboard: PropTypes.bool, + is_appstore: PropTypes.bool, real_account_signup_target: PropTypes.string, is_dxtrade_allowed: PropTypes.bool, is_eu: PropTypes.bool, diff --git a/packages/account/src/Components/file-uploader-container/file-uploader-container.jsx b/packages/account/src/Components/file-uploader-container/file-uploader-container.jsx index 7a97380db005..c67455173d51 100644 --- a/packages/account/src/Components/file-uploader-container/file-uploader-container.jsx +++ b/packages/account/src/Components/file-uploader-container/file-uploader-container.jsx @@ -38,7 +38,7 @@ const FileProperties = () => { }; const FileUploaderContainer = ({ is_description_enabled = true, getSocket, onFileDrop, onRef }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const ref = React.useRef(); const getSocketFunc = getSocket ?? WS.getSocket; @@ -49,7 +49,7 @@ const FileUploaderContainer = ({ is_description_enabled = true, getSocket, onFil } return () => onRef(undefined); }, [onRef, ref]); - if (is_dashboard && isDesktop()) { + if (is_appstore && isDesktop()) { return (
@@ -66,7 +66,7 @@ const FileUploaderContainer = ({ is_description_enabled = true, getSocket, onFil {is_description_enabled && (
  • - {is_dashboard ? ( + {is_appstore ? ( ) : ( @@ -82,7 +82,7 @@ const FileUploaderContainer = ({ is_description_enabled = true, getSocket, onFil
  • - {is_dashboard ? ( + {is_appstore ? ( ) : ( @@ -92,7 +92,7 @@ const FileUploaderContainer = ({ is_description_enabled = true, getSocket, onFil
  • - {is_dashboard ? ( + {is_appstore ? ( ) : ( @@ -102,7 +102,7 @@ const FileUploaderContainer = ({ is_description_enabled = true, getSocket, onFil
  • - {is_dashboard ? ( + {is_appstore ? ( ) : ( @@ -115,7 +115,7 @@ const FileUploaderContainer = ({ is_description_enabled = true, getSocket, onFil )}
    diff --git a/packages/account/src/Components/form-body-section/form-body-section.jsx b/packages/account/src/Components/form-body-section/form-body-section.jsx index 9f1ee2094103..046548957fbf 100644 --- a/packages/account/src/Components/form-body-section/form-body-section.jsx +++ b/packages/account/src/Components/form-body-section/form-body-section.jsx @@ -5,12 +5,12 @@ import { Text } from '@deriv/components'; import { PlatformContext } from '@deriv/shared'; const FormBodySection = ({ children, has_side_note, side_note }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); if (has_side_note) { return (
    {typeof side_note === 'string' ? ( diff --git a/packages/account/src/Components/form-footer/form-footer.jsx b/packages/account/src/Components/form-footer/form-footer.jsx index 50d9b61d563a..c5257cb307e7 100644 --- a/packages/account/src/Components/form-footer/form-footer.jsx +++ b/packages/account/src/Components/form-footer/form-footer.jsx @@ -4,11 +4,11 @@ import { PlatformContext } from '@deriv/shared'; import classNames from 'classnames'; const FormFooter = ({ children, className }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return (
    diff --git a/packages/account/src/Components/icon-with-message/icon-with-message.jsx b/packages/account/src/Components/icon-with-message/icon-with-message.jsx index bb05bf89fb33..cab27c49bc0e 100644 --- a/packages/account/src/Components/icon-with-message/icon-with-message.jsx +++ b/packages/account/src/Components/icon-with-message/icon-with-message.jsx @@ -14,10 +14,10 @@ const IconWithMessage = ({ toggleAccountsDialog, toggleShouldShowRealAccountsList, }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( -
    +
    { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( { text={localize('You have unsaved changes. Are you sure you want to discard changes and leave this page?')} icon={ } diff --git a/packages/account/src/Components/personal-details/personal-details.jsx b/packages/account/src/Components/personal-details/personal-details.jsx index 5b9904966acb..f1653b2aaaf1 100644 --- a/packages/account/src/Components/personal-details/personal-details.jsx +++ b/packages/account/src/Components/personal-details/personal-details.jsx @@ -88,7 +88,7 @@ const PersonalDetails = ({ closeRealAccountSignup, ...props }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const [is_tax_residence_popover_open, setIsTaxResidencePopoverOpen] = React.useState(false); const [is_tin_popover_open, setIsTinPopoverOpen] = React.useState(false); const [warning_items, setWarningItems] = React.useState({}); @@ -138,7 +138,7 @@ const PersonalDetails = ({ }; const getLastNameLabel = () => { - if (is_dashboard) return localize('Family name*'); + if (is_appstore) return localize('Family name*'); return is_svg ? localize('Last name*') : localize('Last name'); }; @@ -167,7 +167,7 @@ const PersonalDetails = ({ - {is_dashboard && ( + {is_appstore && (
    {localize( @@ -204,7 +204,7 @@ const PersonalDetails = ({
    )} - {!is_dashboard && ( + {!is_appstore && ( )} - {!is_dashboard && } + {!is_appstore && } {'date_of_birth' in props.value && ( )} {'place_of_birth' in props.value && ( @@ -380,12 +380,12 @@ const PersonalDetails = ({ ({ + ContinueTradingButton: jest.fn(() =>
    ), +})); + +describe('', () => { + const renderWithRouter = component => { + return render({component}); + }; + + it('should render the Submitted component', () => { + renderWithRouter(); + expect(screen.getByText('Your proof of address was submitted successfully')).toBeInTheDocument(); + }); + + it('should show submit_poi message if needs_poi is true', () => { + renderWithRouter(); + expect(screen.getByText('You must also submit a proof of identity.')).toBeInTheDocument(); + }); + + it('should show review message if needs_poi is false', () => { + renderWithRouter(); + expect(screen.getByText('Your document is being reviewed, please check back in 1-3 days.')).toBeInTheDocument(); + }); + + it('should show ContinueTradingButton if needs_poi is false and is_description_enabled is false', () => { + renderWithRouter(); + expect(screen.getByTestId('continue-trading-button')).toBeInTheDocument(); + }); +}); diff --git a/packages/account/src/Components/poa-submitted/submitted.jsx b/packages/account/src/Components/poa-submitted/submitted.jsx index d888bb720120..d0bbccbbdf3d 100644 --- a/packages/account/src/Components/poa-submitted/submitted.jsx +++ b/packages/account/src/Components/poa-submitted/submitted.jsx @@ -8,18 +8,18 @@ import PoiButton from 'Components/poi-button'; import IconMessageContent from 'Components/icon-message-content'; export const Submitted = ({ needs_poi, is_description_enabled = true }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const message = localize('Your proof of address was submitted successfully'); if (needs_poi) { return (
    } + icon={} >
    @@ -37,14 +37,14 @@ export const Submitted = ({ needs_poi, is_description_enabled = true }) => { return (
    } - full_width={is_dashboard} + full_width={is_appstore} > {!is_description_enabled && } diff --git a/packages/account/src/Components/poa-unverified/__tests__/unverified.spec.js b/packages/account/src/Components/poa-unverified/__tests__/unverified.spec.js new file mode 100644 index 000000000000..a6c36db8c7c3 --- /dev/null +++ b/packages/account/src/Components/poa-unverified/__tests__/unverified.spec.js @@ -0,0 +1,12 @@ +import React from 'react'; +import { screen, render } from '@testing-library/react'; +import { Unverified } from '../unverified'; + +jest.mock('Components/icon-message-content', () => () =>
    ); + +describe('', () => { + it('should render Unverified component', () => { + render(); + expect(screen.getByTestId('mockedIconMessageContent')).toBeInTheDocument(); + }); +}); diff --git a/packages/account/src/Components/poa-unverified/unverified.jsx b/packages/account/src/Components/poa-unverified/unverified.jsx index a8b401c105b2..9b4b26b3afd4 100644 --- a/packages/account/src/Components/poa-unverified/unverified.jsx +++ b/packages/account/src/Components/poa-unverified/unverified.jsx @@ -5,7 +5,7 @@ import { Localize, localize } from '@deriv/translations'; import IconMessageContent from 'Components/icon-message-content'; export const Unverified = () => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( { // ]} /> } - icon={} + icon={} /> ); }; diff --git a/packages/account/src/Components/poa-verified/verified.jsx b/packages/account/src/Components/poa-verified/verified.jsx index 71b6f2cd156a..8e2e2c6da4a8 100644 --- a/packages/account/src/Components/poa-verified/verified.jsx +++ b/packages/account/src/Components/poa-verified/verified.jsx @@ -9,21 +9,21 @@ import IconMessageContent from 'Components/icon-message-content'; import { ContinueTradingButton } from 'Components/poa-continue-trading-button/continue-trading-button.jsx'; export const Verified = ({ needs_poi, is_description_enabled = true }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const message = localize('Your proof of address is verified'); if (needs_poi) { return (
    } - className={is_dashboard && 'account-management-dashboard'} + className={is_appstore && 'account-management-dashboard'} > @@ -33,13 +33,13 @@ export const Verified = ({ needs_poi, is_description_enabled = true }) => { return (
    + } > {!is_description_enabled && } diff --git a/packages/account/src/Components/poi-idv-document-submit/poi-idv-document-submit.jsx b/packages/account/src/Components/poi-idv-document-submit/poi-idv-document-submit.jsx index 7b324fd9ceb5..768e14b10f2e 100644 --- a/packages/account/src/Components/poi-idv-document-submit/poi-idv-document-submit.jsx +++ b/packages/account/src/Components/poi-idv-document-submit/poi-idv-document-submit.jsx @@ -29,14 +29,7 @@ const IdvDocumentSubmit = ({ handleBack, handleViewComplete, selected_country, i // NOTE: This is a temporary filter. Remove after backend handles this from their side const document_types = Object.keys(document_data); const filtered_documents = ['gh', 'ng'].includes(country_code) - ? document_types.filter(d => { - // For Ghana, exclude voter_id document - if (country_code === 'gh') { - return d !== 'voter_id'; - } - // For Nigeria exclude voter_id, nin and nin_slip. Temporarily removal - return !['voter_id', 'nin', 'nin_slip'].includes(d); - }) + ? document_types.filter(d => d !== 'voter_id') : document_types; setDocumentList( diff --git a/packages/account/src/Components/poi-missing-personal-details/missing-personal-details.jsx b/packages/account/src/Components/poi-missing-personal-details/missing-personal-details.jsx index aad37c0f168d..ff2732408504 100644 --- a/packages/account/src/Components/poi-missing-personal-details/missing-personal-details.jsx +++ b/packages/account/src/Components/poi-missing-personal-details/missing-personal-details.jsx @@ -13,7 +13,7 @@ const GoToPersonalDetailsButton = ({ anchor, from, text }) => ( ); export const MissingPersonalDetails = ({ has_invalid_postal_code, from }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); if (has_invalid_postal_code) return ( { message={localize('Your personal details are missing')} text={localize('Please complete your personal details before you verify your identity.')} icon={ - + } > diff --git a/packages/account/src/Components/poi-onfido-failed/onfido-failed.jsx b/packages/account/src/Components/poi-onfido-failed/onfido-failed.jsx index 14da7bb6844b..b538eb97839b 100644 --- a/packages/account/src/Components/poi-onfido-failed/onfido-failed.jsx +++ b/packages/account/src/Components/poi-onfido-failed/onfido-failed.jsx @@ -7,8 +7,8 @@ import IconMessageContent from 'Components/icon-message-content'; import ContinueTradingButton from 'Components/poa-continue-trading-button'; const OnfidoFailed = ({ suspected }) => { - const { is_dashboard } = React.useContext(PlatformContext); - if (is_dashboard && suspected) + const { is_appstore } = React.useContext(PlatformContext); + if (is_appstore && suspected) { 'We were unable to verify your document automatically. We will try to verify your document manually. Please check back in 1-3 days.' )} icon={ - is_dashboard ? ( + is_appstore ? ( ) : ( @@ -37,7 +37,7 @@ const OnfidoFailed = ({ suspected }) => { } className='account-management-dashboard' > - {is_dashboard && } + {is_appstore && } ); }; diff --git a/packages/account/src/Components/poi-unsupported/unsupported.jsx b/packages/account/src/Components/poi-unsupported/unsupported.jsx index 61377cfaa402..351ce4330a47 100644 --- a/packages/account/src/Components/poi-unsupported/unsupported.jsx +++ b/packages/account/src/Components/poi-unsupported/unsupported.jsx @@ -5,11 +5,11 @@ import { PlatformContext } from '@deriv/shared'; import IconMessageContent from 'Components/icon-message-content'; const UnsupportedIconRow = () => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return (
    - + {localize('Identity card')} @@ -18,7 +18,7 @@ const UnsupportedIconRow = () => {
    - + {localize('Driving license')} @@ -27,7 +27,7 @@ const UnsupportedIconRow = () => {
    - + {localize('Passport')} @@ -40,7 +40,7 @@ const UnsupportedIconRow = () => { }; const Unsupported = () => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( { ]} /> } - className={is_dashboard && 'dashboard'} + className={is_appstore && 'dashboard'} icon_row={} /> ); diff --git a/packages/account/src/Components/poi-unverified/unverified.jsx b/packages/account/src/Components/poi-unverified/unverified.jsx index cd8a96153bcf..f8180dad9bd5 100644 --- a/packages/account/src/Components/poi-unverified/unverified.jsx +++ b/packages/account/src/Components/poi-unverified/unverified.jsx @@ -5,7 +5,7 @@ import { Icon, StaticUrl } from '@deriv/components'; import IconMessageContent from 'Components/icon-message-content'; export const Unverified = ({ is_description_enabled }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( { ) : null } icon={ - is_dashboard ? ( + is_appstore ? ( ) : ( ) } - className={is_dashboard && 'account-management-dashboard'} + className={is_appstore && 'account-management-dashboard'} /> ); }; diff --git a/packages/account/src/Components/poi-upload-complete/upload-complete.jsx b/packages/account/src/Components/poi-upload-complete/upload-complete.jsx index dfd27dd2c8bc..83c928df33dd 100644 --- a/packages/account/src/Components/poi-upload-complete/upload-complete.jsx +++ b/packages/account/src/Components/poi-upload-complete/upload-complete.jsx @@ -7,7 +7,7 @@ import PoaButton from 'Components/poa-button'; import IconMessageContent from 'Components/icon-message-content'; export const UploadComplete = ({ needs_poa, redirect_button, is_from_external }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const message = localize('Your proof of identity was submitted successfully'); if (!needs_poa) { return ( @@ -15,13 +15,13 @@ export const UploadComplete = ({ needs_poa, redirect_button, is_from_external }) message={message} text={localize('We’ll review your document and notify you of its status within 1 to 2 hours.')} icon={ - is_dashboard ? ( + is_appstore ? ( ) : ( ) } - className={is_dashboard && 'account-management-dashboard'} + className={is_appstore && 'account-management-dashboard'} > {!is_from_external && redirect_button} @@ -31,20 +31,20 @@ export const UploadComplete = ({ needs_poa, redirect_button, is_from_external }) ) : ( ) } - className={is_dashboard && 'account-management-dashboard'} + className={is_appstore && 'account-management-dashboard'} >
    - + {localize('Your document is being reviewed, please check back in 1-3 days.')} - + {localize('You must also submit a proof of address.')}
    diff --git a/packages/account/src/Components/poi-verified/__tests__/verified.spec.js b/packages/account/src/Components/poi-verified/__tests__/verified.spec.js new file mode 100644 index 000000000000..08aefa85995f --- /dev/null +++ b/packages/account/src/Components/poi-verified/__tests__/verified.spec.js @@ -0,0 +1,40 @@ +import React from 'react'; +import { screen, render } from '@testing-library/react'; +import { Button } from '@deriv/components'; +import { Verified } from '../verified'; + +jest.mock('Components/poa-button', () => () =>
    ); + +describe('', () => { + const message = 'Your proof of identity is verified'; + const redirect_button = ; + const needs_poa_msg = 'To continue trading, you must also submit a proof of address.'; + + it('should render Verified component', () => { + render(); + expect(screen.getByText(message)).toBeInTheDocument(); + }); + + it('should show icon with message if needs_poa is false', () => { + const { container } = render(); + expect(container.getElementsByClassName('dc-icon').length).toBe(1); + expect(screen.getByText(message)).toBeInTheDocument(); + }); + + it('should show redirect button if needs_poa and is_from_external are false and have redirect_button', () => { + render(); + expect(screen.getByRole('button')).toBeInTheDocument(); + }); + + it('should not show redirect button if redirect_button is not passed', () => { + render(); + expect(screen.queryByRole('button')).not.toBeInTheDocument(); + }); + + it('should show poa buttons and the message if needs_poa is true and is_from_external is false ', () => { + render(); + expect(screen.getByTestId('poa-button')).toBeInTheDocument(); + expect(screen.getByText(needs_poa_msg)).toBeInTheDocument(); + expect(screen.getByRole('button')).toBeInTheDocument(); + }); +}); diff --git a/packages/account/src/Components/poi-verified/verified.jsx b/packages/account/src/Components/poi-verified/verified.jsx index ef8b494b1f8e..d2454f1ec22f 100644 --- a/packages/account/src/Components/poi-verified/verified.jsx +++ b/packages/account/src/Components/poi-verified/verified.jsx @@ -7,14 +7,14 @@ import PoaButton from 'Components/poa-button'; import IconMessageContent from 'Components/icon-message-content'; export const Verified = ({ needs_poa, redirect_button, is_from_external }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const message = localize('Your proof of identity is verified'); if (!needs_poa) { return ( ) : ( @@ -30,7 +30,7 @@ export const Verified = ({ needs_poa, redirect_button, is_from_external }) => { ) : ( diff --git a/packages/account/src/Components/self-exclusion/self-exclusion-article.jsx b/packages/account/src/Components/self-exclusion/self-exclusion-article.jsx index c2335ed69e18..00a45d182a8d 100644 --- a/packages/account/src/Components/self-exclusion/self-exclusion-article.jsx +++ b/packages/account/src/Components/self-exclusion/self-exclusion-article.jsx @@ -9,12 +9,12 @@ import SelfExclusionContext from './self-exclusion-context'; const SelfExclusionArticle = () => { const { is_app_settings, toggleArticle, is_eu, is_uk } = React.useContext(SelfExclusionContext); const { is_deriv_crypto } = React.useContext(PlatformContext); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( { ), ] } - {...((!is_dashboard || isMobile()) && { onClickLearnMore: toggleArticle })} + {...((!is_appstore || isMobile()) && { onClickLearnMore: toggleArticle })} /> ); }; diff --git a/packages/account/src/Components/self-exclusion/self-exclusion-inputs.jsx b/packages/account/src/Components/self-exclusion/self-exclusion-inputs.jsx index 88fb217ebd18..cbfc546039cc 100644 --- a/packages/account/src/Components/self-exclusion/self-exclusion-inputs.jsx +++ b/packages/account/src/Components/self-exclusion/self-exclusion-inputs.jsx @@ -166,13 +166,13 @@ const StakeLossAndLimitsInputs = () => { const SessionAndLoginLimitsInputs = () => { const { is_mlt, is_mx, is_tablet, session_duration_digits } = React.useContext(SelfExclusionContext); const { errors, handleBlur, handleChange, setFieldValue, values } = useFormikContext(); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( } - has_border_line={is_dashboard} + has_border_line={is_appstore} />
    @@ -310,13 +310,13 @@ const SessionAndLoginLimitsInputs = () => { const MaximumAccountBalanceAndOpenPositionsInputs = () => { const { currency_display, getMaxLength } = React.useContext(SelfExclusionContext); const { errors, handleBlur, handleChange, values } = useFormikContext(); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); return ( } - has_border_line={is_dashboard} + has_border_line={is_appstore} />
    @@ -369,7 +369,7 @@ const MaximumAccountBalanceAndOpenPositionsInputs = () => { const MaximumDepositLimitInputs = () => { const { currency, is_mlt, is_mf, is_mx, getMaxLength } = React.useContext(SelfExclusionContext); const { errors, handleBlur, handleChange, values } = useFormikContext(); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const should_render = is_mlt || is_mf || is_mx; if (!should_render) { @@ -380,7 +380,7 @@ const MaximumDepositLimitInputs = () => { } - has_border_line={is_dashboard} + has_border_line={is_appstore} />
    @@ -461,13 +461,13 @@ const MaximumDepositLimitInputs = () => { }; const SelfExclusionInputs = () => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const { footer_ref, goToConfirm, is_app_settings } = React.useContext(SelfExclusionContext); const { dirty, isSubmitting, isValid, values } = useFormikContext(); const versions = { // Global settings for account for DWallet. dwallet: { - condition: !!is_dashboard, + condition: !!is_appstore, components: [ SessionAndLoginLimitsInputs, MaximumAccountBalanceAndOpenPositionsInputs, @@ -482,7 +482,7 @@ const SelfExclusionInputs = () => { }, // Legacy Deriv.app, i.e. non-DWallet user accessing app.deriv.com/account/self-exclusion. deriv_app: { - condition: !!(!is_dashboard && !is_app_settings), + condition: !!(!is_appstore && !is_app_settings), components: [ StakeLossAndLimitsInputs, SessionAndLoginLimitsInputs, diff --git a/packages/account/src/Components/self-exclusion/self-exclusion.jsx b/packages/account/src/Components/self-exclusion/self-exclusion.jsx index a6f4bf005efb..35cc84370bc7 100644 --- a/packages/account/src/Components/self-exclusion/self-exclusion.jsx +++ b/packages/account/src/Components/self-exclusion/self-exclusion.jsx @@ -23,7 +23,7 @@ const SelfExclusion = ({ footer_ref, is_app_settings, is_cr, - is_dashboard, + is_appstore, is_eu, is_mf, is_mlt, @@ -361,7 +361,7 @@ const SelfExclusion = ({ }; if (is_virtual) { - return ; + return ; } if (state.is_loading || is_switching) { diff --git a/packages/account/src/Components/terms-of-use/terms-of-use.jsx b/packages/account/src/Components/terms-of-use/terms-of-use.jsx index 4cafd1c8e563..64aeb86b3f19 100644 --- a/packages/account/src/Components/terms-of-use/terms-of-use.jsx +++ b/packages/account/src/Components/terms-of-use/terms-of-use.jsx @@ -25,7 +25,7 @@ const TermsOfUse = ({ real_account_signup_target, ...props }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const handleCancel = () => { const current_step = getCurrentStep() - 1; @@ -33,7 +33,7 @@ const TermsOfUse = ({ }; const getSubmitButtonLabel = () => { - if (is_dashboard) { + if (is_appstore) { return localize('Finish'); } return localize('Add account'); @@ -52,7 +52,7 @@ const TermsOfUse = ({ diff --git a/packages/account/src/Configs/address-details-config.js b/packages/account/src/Configs/address-details-config.js index 57ed76cf2e2a..a1fd7e33b581 100644 --- a/packages/account/src/Configs/address-details-config.js +++ b/packages/account/src/Configs/address-details-config.js @@ -133,14 +133,14 @@ const address_details_config = ({ account_settings, is_svg }) => { const addressDetailsConfig = ( { upgrade_info, real_account_signup_target, residence, account_settings }, AddressDetails, - is_dashboard = false + is_appstore = false ) => { const is_svg = upgrade_info?.can_upgrade_to === 'svg'; const config = address_details_config({ account_settings, is_svg }); return { header: { - active_title: is_dashboard ? localize('Where do you live?') : localize('Complete your address details'), - title: is_dashboard ? localize('ADDRESS') : localize('Address'), + active_title: is_appstore ? localize('Where do you live?') : localize('Complete your address details'), + title: is_appstore ? localize('ADDRESS') : localize('Address'), }, body: AddressDetails, form_value: getDefaultFields(real_account_signup_target, config), diff --git a/packages/account/src/Configs/currency-selector-config.js b/packages/account/src/Configs/currency-selector-config.js index 02bdac1952eb..4de00f0b2878 100644 --- a/packages/account/src/Configs/currency-selector-config.js +++ b/packages/account/src/Configs/currency-selector-config.js @@ -2,11 +2,11 @@ import { localize } from '@deriv/translations'; import { generateValidationFunction, getDefaultFields } from '@deriv/shared'; import currency_selector_config from './currency-selector-schema'; -const currencySelectorConfig = ({ real_account_signup_target }, CurrencySelector, is_dashboard = false) => { +const currencySelectorConfig = ({ real_account_signup_target }, CurrencySelector, is_appstore = false) => { return { header: { - active_title: is_dashboard ? localize('Select wallet currency') : localize('Please choose your currency'), - title: is_dashboard ? localize('CURRENCY') : localize('Account currency'), + active_title: is_appstore ? localize('Select wallet currency') : localize('Please choose your currency'), + title: is_appstore ? localize('CURRENCY') : localize('Account currency'), }, body: CurrencySelector, form_value: getDefaultFields(real_account_signup_target, currency_selector_config), diff --git a/packages/account/src/Configs/personal-details-config.js b/packages/account/src/Configs/personal-details-config.js index 188e62e73dc4..def7e632a22b 100644 --- a/packages/account/src/Configs/personal-details-config.js +++ b/packages/account/src/Configs/personal-details-config.js @@ -1,7 +1,7 @@ import { toMoment, getErrorMessages, generateValidationFunction, getDefaultFields, validLength } from '@deriv/shared'; import { localize } from '@deriv/translations'; -const personal_details_config = ({ residence_list, account_settings, is_dashboard }) => { +const personal_details_config = ({ residence_list, account_settings, is_appstore }) => { if (!residence_list || !account_settings) { return {}; } @@ -142,7 +142,7 @@ const personal_details_config = ({ residence_list, account_settings, is_dashboar }; const getConfig = () => { - if (is_dashboard) { + if (is_appstore) { const allowed_fields = ['first_name', 'last_name', 'date_of_birth', 'phone']; return Object.keys(config).reduce((new_config, key) => { if (allowed_fields.includes(key)) { @@ -160,15 +160,13 @@ const personal_details_config = ({ residence_list, account_settings, is_dashboar const personalDetailsConfig = ( { upgrade_info, real_account_signup_target, residence_list, account_settings }, PersonalDetails, - is_dashboard = false + is_appstore = false ) => { - const [config, disabled_items] = personal_details_config({ residence_list, account_settings, is_dashboard }); + const [config, disabled_items] = personal_details_config({ residence_list, account_settings, is_appstore }); return { header: { - active_title: is_dashboard - ? localize('A few personal details') - : localize('Complete your personal details'), - title: is_dashboard ? localize('PERSONAL') : localize('Personal details'), + active_title: is_appstore ? localize('A few personal details') : localize('Complete your personal details'), + title: is_appstore ? localize('PERSONAL') : localize('Personal details'), }, body: PersonalDetails, form_value: getDefaultFields(real_account_signup_target, config), diff --git a/packages/account/src/Configs/terms-of-use-config.js b/packages/account/src/Configs/terms-of-use-config.js index d34ff2d645a7..cb9492b726fb 100644 --- a/packages/account/src/Configs/terms-of-use-config.js +++ b/packages/account/src/Configs/terms-of-use-config.js @@ -12,12 +12,12 @@ const terms_of_use_config = { }, }; -const termsOfUseConfig = ({ real_account_signup_target }, TermsOfUse, is_dashboard = false) => { - const active_title = is_dashboard ? localize('Our terms of use') : localize('Terms of use'); +const termsOfUseConfig = ({ real_account_signup_target }, TermsOfUse, is_appstore = false) => { + const active_title = is_appstore ? localize('Our terms of use') : localize('Terms of use'); return { header: { active_title: isDesktop() ? active_title : null, - title: is_dashboard ? localize('TERMS OF USE') : localize('Terms of use'), + title: is_appstore ? localize('TERMS OF USE') : localize('Terms of use'), }, body: TermsOfUse, form_value: getDefaultFields(real_account_signup_target, terms_of_use_config), diff --git a/packages/account/src/Constants/routes-config.js b/packages/account/src/Constants/routes-config.js index c721e0545f15..e1cd7ddfc44d 100644 --- a/packages/account/src/Constants/routes-config.js +++ b/packages/account/src/Constants/routes-config.js @@ -22,7 +22,7 @@ import { const Page404 = React.lazy(() => import(/* webpackChunkName: "404" */ 'Modules/Page404')); // Order matters -const initRoutesConfig = ({ is_dashboard }) => [ +const initRoutesConfig = ({ is_appstore }) => [ { path: routes.account_deactivated, component: AccountDeactivated, @@ -82,19 +82,19 @@ const initRoutesConfig = ({ is_dashboard }) => [ { path: routes.self_exclusion, component: SelfExclusion, - getTitle: () => (is_dashboard ? localize('Self-exclusion') : localize('Self exclusion')), + getTitle: () => (is_appstore ? localize('Self-exclusion') : localize('Self exclusion')), }, { path: routes.account_limits, component: AccountLimits, - getTitle: () => (is_dashboard ? localize('Withdrawal limits') : localize('Account limits')), + getTitle: () => (is_appstore ? localize('Withdrawal limits') : localize('Account limits')), }, { path: routes.login_history, component: LoginHistory, getTitle: () => localize('Login history'), }, - ...(is_dashboard + ...(is_appstore ? [] : [ { @@ -122,7 +122,7 @@ const initRoutesConfig = ({ is_dashboard }) => [ }, // TO DO -- Please remove these comments after changing for dashboard routes // It is possible to add a Deriv Dashboard only path. - // ...(is_dashboard + // ...(is_appstore // ? [ // { // component: Home, @@ -141,9 +141,9 @@ let routesConfig; // For default page route if page/path is not found, must be kept at the end of routes_config array const route_default = { component: Page404, getTitle: () => localize('Error 404') }; -const getRoutesConfig = ({ is_dashboard }) => { +const getRoutesConfig = ({ is_appstore }) => { if (!routesConfig) { - routesConfig = initRoutesConfig({ is_dashboard }); + routesConfig = initRoutesConfig({ is_appstore }); routesConfig.push(route_default); } return routesConfig; diff --git a/packages/account/src/Containers/account.jsx b/packages/account/src/Containers/account.jsx index d90f53923fb2..d39f4af46c5e 100644 --- a/packages/account/src/Containers/account.jsx +++ b/packages/account/src/Containers/account.jsx @@ -35,7 +35,7 @@ const AccountLogout = ({ logout, history }) => { }; const PageOverlayWrapper = ({ - is_dashboard, + is_appstore, list_groups, logout, onClickClose, @@ -53,7 +53,7 @@ const PageOverlayWrapper = ({ ); - } else if (is_dashboard) { + } else if (is_appstore) { return ( } + extra_content={is_appstore && } /> ); } @@ -109,7 +109,7 @@ const Account = ({ should_allow_authentication, toggleAccount, }) => { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const subroutes = flatten(routes.map(i => i.subroutes)); let list_groups = [...routes]; list_groups = list_groups.map(route_group => ({ @@ -171,7 +171,7 @@ const Account = ({
    { const history = useHistory(); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const [is_loading, setIsLoading] = React.useState(true); const [is_confirmation_visible, setIsConfirmationVisible] = React.useState(false); const [has_trading_experience, setHasTradingExperience] = React.useState(false); @@ -296,13 +296,13 @@ const FinancialAssessment = ({ }; const getScrollOffset = () => { - if (isMobile()) return is_dashboard ? '160px' : '200px'; + if (isMobile()) return is_appstore ? '160px' : '200px'; return '80px'; }; if (is_loading) return ; if (api_initial_load_error) return ; - if (is_virtual) return ; + if (is_virtual) return ; if (isMobile() && is_authentication_needed && is_submit_success) return ; @@ -347,10 +347,10 @@ const FinancialAssessment = ({ dirty, }) => ( <> - {!is_dashboard && isMobile() && is_confirmation_visible && ( + {!is_appstore && isMobile() && is_confirmation_visible && ( )} - {(isDesktop() || is_dashboard) && ( + {(isDesktop() || is_appstore) && (
    @@ -933,7 +933,7 @@ const FinancialAssessment = ({ {status && status.msg && } - {isMobile() && !is_dashboard && ( + {isMobile() && !is_appstore && ( diff --git a/packages/account/src/Sections/Profile/PersonalDetails/personal-details.jsx b/packages/account/src/Sections/Profile/PersonalDetails/personal-details.jsx index 302a314118dc..0bdce9a3d4db 100644 --- a/packages/account/src/Sections/Profile/PersonalDetails/personal-details.jsx +++ b/packages/account/src/Sections/Profile/PersonalDetails/personal-details.jsx @@ -51,8 +51,8 @@ const validate = (errors, values) => (fn, arr, err_msg) => { }; const InputGroup = ({ children, className }) => { - const { is_dashboard } = React.useContext(PlatformContext); - if (is_dashboard) { + const { is_appstore } = React.useContext(PlatformContext); + if (is_appstore) { return React.Children.map(children, child =>
    {child}
    ); } return ( @@ -131,7 +131,7 @@ export const PersonalDetailsForm = ({ timeout_callback: null, }); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const isMounted = useIsMounted(); @@ -447,7 +447,7 @@ export const PersonalDetailsForm = ({ 'is_authenticated_payment_agent', 'user_hash', 'country', - (!is_dashboard || !is_eu) && 'salutation', + (!is_appstore || !is_eu) && 'salutation', 'immutable_fields', ]; const form_initial_values = removeObjProperties(hidden_settings, account_settings); @@ -543,7 +543,7 @@ export const PersonalDetailsForm = ({ @@ -552,12 +552,12 @@ export const PersonalDetailsForm = ({ {!is_virtual && ( - {is_dashboard && is_eu && ( + {is_appstore && is_eu && (
    @@ -787,7 +787,7 @@ export const PersonalDetailsForm = ({ )} - +
    {!is_virtual && ( - +
    )} - {!is_dashboard && !is_virtual && ( + {!is_appstore && !is_virtual && ( - +
    @@ -1128,7 +1128,7 @@ export const PersonalDetailsForm = ({ )}
    @@ -1143,7 +1143,7 @@ export const PersonalDetailsForm = ({ id='email_consent' defaultChecked={!!values.email_consent} disabled={!isChangeableField('email_consent') && !is_virtual} - className={classNames({ 'dc-checkbox-blue': is_dashboard })} + className={classNames({ 'dc-checkbox-blue': is_appstore })} />
    @@ -1193,7 +1193,7 @@ export const PersonalDetailsForm = ({ has_effect is_loading={is_btn_loading} is_submit_success={is_submit_success} - text={is_dashboard ? localize('Save') : localize('Submit')} + text={is_appstore ? localize('Save') : localize('Submit')} large primary /> diff --git a/packages/account/src/Sections/Security/AccountDeactivated/account-deactivated.jsx b/packages/account/src/Sections/Security/AccountDeactivated/account-deactivated.jsx index a3f99bb7802e..0ed8b8640bf2 100644 --- a/packages/account/src/Sections/Security/AccountDeactivated/account-deactivated.jsx +++ b/packages/account/src/Sections/Security/AccountDeactivated/account-deactivated.jsx @@ -7,7 +7,7 @@ import { connect } from 'Stores/connect'; const AccountDeactivated = ({ logout }) => { const [is_modal_open, setModalState] = React.useState(true); const [timer, setTimer] = React.useState(10); - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); React.useEffect(() => { window.history.pushState(null, null, '/'); @@ -22,9 +22,9 @@ const AccountDeactivated = ({ logout }) => { if (timer > 0) { setTimer(timer - 1); } else { - window.location.href = getStaticUrl('/', { is_dashboard }); + window.location.href = getStaticUrl('/', { is_appstore }); } - }, [is_dashboard, timer]); + }, [is_appstore, timer]); return ( { - const { is_dashboard } = React.useContext(PlatformContext); + const { is_appstore } = React.useContext(PlatformContext); const [is_loading, setLoading] = React.useState(true); const [is_modal_open, setModalVisibility] = React.useState(false); const [selected_app_id, setAppId] = React.useState(null); @@ -61,13 +61,13 @@ const ConnectedApps = () => {
    -
    +
    - +
    ), - [columns_map, is_dashboard] + [columns_map, is_appstore] ); const handleRevokeAccess = React.useCallback(() => { @@ -88,7 +88,7 @@ const ConnectedApps = () => { return (
    @@ -110,7 +110,7 @@ const ConnectedApps = () => { @@ -120,7 +120,7 @@ const ConnectedApps = () => {
    @@ -129,7 +129,7 @@ const ConnectedApps = () => {
    + + + + ); +}; + +export default ModalContent; diff --git a/packages/trader/src/Modules/CFD/Containers/compare-accounts-modal.tsx b/packages/trader/src/Modules/CFD/Containers/compare-accounts-modal.tsx index 7b6b2f713486..f0b8339092eb 100644 --- a/packages/trader/src/Modules/CFD/Containers/compare-accounts-modal.tsx +++ b/packages/trader/src/Modules/CFD/Containers/compare-accounts-modal.tsx @@ -1,50 +1,11 @@ import React from 'react'; -import { - Button, - Modal, - DesktopWrapper, - MobileDialog, - MobileWrapper, - Table, - UILoader, - Text, - ThemedScrollbars, - Div100vhContainer, -} from '@deriv/components'; -import { localize, Localize } from '@deriv/translations'; +import { Button, Modal, DesktopWrapper, MobileDialog, MobileWrapper, UILoader } from '@deriv/components'; +import { localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; import RootStore from 'Stores/index'; -import { isDesktop, CFD_PLATFORMS, isLandingCompanyEnabled } from '@deriv/shared'; +import { CFD_PLATFORMS } from '@deriv/shared'; import { LandingCompany } from '@deriv/api-types'; - -type TCFDAttributeDescriberProps = { - name: string; - counter: number | null; -}; - -type TFilterAvailableAccounts = ( - landing_companies: LandingCompany, - table: TAccountsDescription[], - is_logged_in: boolean, - show_eu_related: boolean, - platform: string, - is_australian: boolean -) => Array<{ [key: string]: string | React.ReactNode | undefined }>; - -type TAccountsDescription = { - attribute: string; - mt5: TDxTradeAccountsDescription & { financial_stp: string }; - dxtrade: TDxTradeAccountsDescription; -}; - -type TDxTradeAccountsDescription = { - synthetic: string; - synthetic_eu: string; - financial: string; - financial_au: string; - financial_eu: string | React.ReactNode; - footnote: string | null; -}; +import ModalContent from './compare-accounts-content'; type TCompareAccountsReusedProps = { landing_companies: LandingCompany; @@ -53,21 +14,6 @@ type TCompareAccountsReusedProps = { is_uk: boolean; }; -type TCompareAccountsDataParams = TCompareAccountsReusedProps & { - show_eu_related: boolean; - residence: string; -}; - -type TCFDCompareAccountHintProps = TCompareAccountsReusedProps & { - show_risk_message: boolean; -}; - -type TModalContentProps = TCompareAccountsReusedProps & { - show_eu_related: boolean; - residence: string; - is_eu: boolean; -}; - type TCompareAccountsModalProps = TCompareAccountsReusedProps & { disableApp: () => void; enableApp: () => void; @@ -79,638 +25,6 @@ type TCompareAccountsModalProps = TCompareAccountsReusedProps & { toggleCompareAccounts: () => void; }; -type TGetAccounts = (params: TCompareAccountsReusedProps) => TAccountsDescription[]; - -type TAccountTypesToFilter = ( - | NonNullable['financial'] - | NonNullable['financial'] - | NonNullable['financial_stp'] - | LandingCompany['dxtrade_gaming_company'] - | LandingCompany['dxtrade_financial_company'] - | boolean - | undefined -)[]; - -const getAccounts: TGetAccounts = ({ landing_companies, platform, is_logged_in, is_uk }) => { - const getLoggedOutTypesCount = () => (platform === CFD_PLATFORMS.MT5 ? 3 : 2); - const getLoggedInTypesCount = () => - ( - (platform === CFD_PLATFORMS.MT5 - ? [ - landing_companies?.mt_gaming_company?.financial, - landing_companies?.mt_financial_company?.financial, - landing_companies?.mt_financial_company?.financial_stp && platform === CFD_PLATFORMS.MT5, - ] - : [ - landing_companies?.dxtrade_gaming_company, - landing_companies?.dxtrade_financial_company, - ]) as TAccountTypesToFilter - ).filter(Boolean).length; - - const account_types_count = is_logged_in ? getLoggedInTypesCount() : getLoggedOutTypesCount(); - const financial_eu_trading_instruments = is_uk ? ( -
    - {localize('Forex, stocks, stock indices, cryptocurrencies')} - - ** - - {localize(', synthetic indices')} -
    - ) : ( - localize('Forex, stocks, stock indices, cryptocurrencies, synthetic indices') - ); - - return [ - { - attribute: localize('Account currency'), - mt5: { - synthetic: localize('USD'), - synthetic_eu: localize('EUR'), - financial: localize('USD'), - financial_au: localize('USD'), - financial_eu: localize('EUR/GBP/USD'), - financial_stp: localize('USD'), - footnote: null, - }, - dxtrade: { - synthetic: localize('USD'), - synthetic_eu: localize('EUR'), - financial: localize('USD'), - financial_au: localize('USD'), - financial_eu: localize('EUR/GBP'), - footnote: null, - }, - }, - { - attribute: localize('Maximum leverage'), - mt5: { - synthetic: localize('Up to 1:1000'), - synthetic_eu: localize('Up to 1:1000'), - financial: localize('Up to 1:1000'), - financial_au: localize('Up to 1:30'), - financial_eu: localize('Up to 1:30'), - financial_stp: localize('Up to 1:100'), - footnote: localize( - 'Leverage gives you the ability to trade a larger position using your existing capital. Leverage varies across different symbols.' - ), - }, - dxtrade: { - synthetic: localize('Up to 1:1000'), - synthetic_eu: localize('Up to 1:1000'), - financial: localize('Up to 1:1000'), - financial_au: localize('Up to 1:30'), - financial_eu: localize('Up to 1:30'), - footnote: localize( - 'Leverage gives you the ability to trade a larger position using your existing capital. Leverage varies across different symbols.' - ), - }, - }, - { - attribute: localize('Order execution'), - mt5: { - synthetic: localize('Market'), - synthetic_eu: localize('Market'), - financial: localize('Market'), - financial_au: localize('Market'), - financial_eu: localize('Market'), - financial_stp: localize('Market'), - footnote: localize( - "All {{count}} account types use market execution. This means you agree with the broker's price in advance and will place orders at the broker's price.", - { - count: account_types_count, - } - ), - }, - dxtrade: { - synthetic: localize('Market'), - synthetic_eu: localize('Market'), - financial: localize('Market'), - financial_au: localize('Market'), - financial_eu: localize('Market'), - footnote: localize( - "All {{count}} account types use market execution. This means you agree with the broker's price in advance and will place orders at the broker's price.", - { - count: account_types_count, - } - ), - }, - }, - { - attribute: localize('Spread'), - mt5: { - synthetic: localize('Fixed/Variable'), - synthetic_eu: localize('Fixed/Variable'), - financial: localize('Variable'), - financial_au: localize('Variable'), - financial_eu: localize('Fixed/Variable'), - financial_stp: localize('Variable'), - footnote: localize( - "The spread is the difference between the buy price and sell price. A variable spread means that the spread is constantly changing, depending on market conditions. A fixed spread remains constant but is subject to alteration, at the Broker's absolute discretion." - ), - }, - dxtrade: { - synthetic: localize('Fixed/Variable'), - synthetic_eu: localize('Fixed/Variable'), - financial: localize('Variable'), - financial_au: localize('Variable'), - financial_eu: localize('Variable'), - footnote: localize( - "The spread is the difference between the buy price and sell price. A variable spread means that the spread is constantly changing, depending on market conditions. A fixed spread remains constant but is subject to alteration, at the Broker's absolute discretion." - ), - }, - }, - { - attribute: localize('Commission'), - mt5: { - synthetic: localize('No'), - synthetic_eu: localize('No'), - financial: localize('No'), - financial_au: localize('No'), - financial_eu: localize('No'), - financial_stp: localize('No'), - footnote: localize('Deriv charges no commission across all account types.'), - }, - dxtrade: { - synthetic: localize('No'), - synthetic_eu: localize('No'), - financial: localize('No'), - financial_au: localize('No'), - financial_eu: localize('No'), - footnote: localize('Deriv charges no commission across all account types.'), - }, - }, - { - attribute: localize('Minimum deposit'), - mt5: { - synthetic: localize('No'), - synthetic_eu: localize('No'), - financial: localize('No'), - financial_au: localize('No'), - financial_eu: localize('No'), - financial_stp: localize('No'), - footnote: null, - }, - dxtrade: { - synthetic: localize('No'), - synthetic_eu: localize('No'), - financial: localize('No'), - financial_au: localize('No'), - financial_eu: localize('No'), - footnote: null, - }, - }, - { - attribute: localize('Margin call'), - mt5: { - synthetic: localize('100%'), - synthetic_eu: localize('100%'), - financial: localize('100%'), - financial_au: localize('100%'), - financial_eu: localize('100%'), - financial_stp: localize('100%'), - footnote: localize( - 'You’ll get a warning, known as margin call, if your account balance drops down close to the stop out level.' - ), - }, - dxtrade: { - synthetic: localize('100%'), - synthetic_eu: localize('100%'), - financial: localize('100%'), - financial_au: localize('100%'), - financial_eu: localize('100%'), - footnote: localize( - 'You’ll get a warning, known as margin call, if your account balance drops down close to the stop out level.' - ), - }, - }, - { - attribute: localize('Stop out level'), - mt5: { - synthetic: localize('50%'), - synthetic_eu: localize('50%'), - financial: localize('50%'), - financial_au: localize('50%'), - financial_eu: localize('50%'), - financial_stp: localize('50%'), - footnote: localize( - "To understand stop out, first you need to learn about margin level, which is the ratio of your equity (the total balance you would have if you close all your positions at that point) to the margin you're using at the moment. If your margin level drops below our stop out level, your positions may be closed automatically to protect you from further losses." - ), - }, - dxtrade: { - synthetic: localize('50%'), - synthetic_eu: localize('50%'), - financial: localize('50%'), - financial_au: localize('50%'), - financial_eu: localize('50%'), - footnote: localize( - "To understand stop out, first you need to learn about margin level, which is the ratio of your equity (the total balance you would have if you close all your positions at that point) to the margin you're using at the moment. If your margin level drops below our stop out level, your positions may be closed automatically to protect you from further losses." - ), - }, - }, - { - attribute: localize('Number of assets'), - mt5: { - synthetic: localize('20+'), - synthetic_eu: localize('20+'), - financial: localize('150+'), - financial_au: localize('100+'), - financial_eu: localize('50+'), - financial_stp: localize('70+'), - footnote: null, - }, - dxtrade: { - synthetic: localize('20+'), - synthetic_eu: localize('20+'), - financial: localize('90+'), - financial_au: localize('90+'), - financial_eu: localize('90+'), - footnote: null, - }, - }, - { - attribute: localize('Cryptocurrency trading'), - mt5: { - synthetic: localize('N/A'), - synthetic_eu: localize('N/A'), - financial: localize('24/7'), - financial_au: localize('24/7'), - financial_eu: localize('24/7'), - financial_stp: localize('24/7'), - footnote: localize('Indicates the availability of cryptocurrency trading on a particular account.'), - }, - dxtrade: { - synthetic: localize('N/A'), - synthetic_eu: localize('N/A'), - financial: localize('24/7'), - financial_au: localize('24/7'), - financial_eu: localize('24/7'), - footnote: localize('Indicates the availability of cryptocurrency trading on a particular account.'), - }, - }, - { - attribute: localize('Trading instruments'), - mt5: { - synthetic: localize('Synthetics'), - synthetic_eu: localize('Synthetics'), - financial: localize( - 'FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies, Stocks, and Stock Indices' - ), - financial_au: localize( - 'FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies, Stocks, and Stock Indices' - ), - financial_eu: financial_eu_trading_instruments, - financial_stp: localize('FX-majors, FX-minors, FX-exotics, Cryptocurrencies'), - footnote: null, - }, - dxtrade: { - synthetic: localize('Synthetics'), - synthetic_eu: localize('Synthetics'), - financial: localize( - 'FX-majors (standard/micro lots), FX-minors, Smart-FX, Commodities, Cryptocurrencies' - ), - financial_au: localize('FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies'), - financial_eu: localize( - 'FX-majors (standard/micro lots), FX-minors, Commodities, Cryptocurrencies (except UK)' - ), - footnote: null, - }, - }, - ]; -}; - -const CFDAttributeDescriber = ({ name, counter }: TCFDAttributeDescriberProps) => { - const [is_visible, setIsVisible] = React.useState(false); - const toggleModal = () => setIsVisible(!is_visible); - - return counter ? ( - - - {name} - - {counter} - - - - ) : ( - - {name} - - ); -}; - -const filterAvailableAccounts: TFilterAvailableAccounts = ( - landing_companies, - table, - is_logged_in, - show_eu_related, - platform, - is_australian -) => { - const getFinancialObject = (financial?: string, financial_au?: string, financial_eu?: string | React.ReactNode) => { - if (is_australian) { - return financial_au; - } - if (show_eu_related) { - return financial_eu; - } - return financial; - }; - - let footnote_number = 0; - return table - .filter(row => row[platform as keyof TAccountsDescription]) - .map(({ attribute, mt5 = {}, dxtrade = {} }) => { - const { synthetic, synthetic_eu, financial, financial_au, financial_eu, footnote } = - platform === CFD_PLATFORMS.MT5 ? mt5 : dxtrade; - const synthetic_object = { synthetic: show_eu_related ? synthetic_eu : synthetic }; - const financial_object = { financial: getFinancialObject(financial, financial_au, financial_eu) }; - const footnote_counter = footnote ? ++footnote_number : null; - - if (is_logged_in) { - return { - attribute: , - ...(landing_companies?.mt_gaming_company?.financial ? synthetic_object : {}), - ...(landing_companies?.mt_financial_company?.financial ? financial_object : {}), - ...(landing_companies?.mt_financial_company?.financial_stp && platform === CFD_PLATFORMS.MT5 - ? { financial_stp: mt5?.financial_stp } - : {}), - }; - } - if (platform === CFD_PLATFORMS.DXTRADE) { - return { - attribute: , - ...synthetic_object, - ...financial_object, - }; - } - return { - attribute: , - ...synthetic_object, - ...financial_object, - ...{ financial_stp: mt5?.financial_stp }, - }; - }); -}; - -const compareAccountsData = ({ - landing_companies, - is_logged_in, - show_eu_related, - platform, - residence, - is_uk, -}: TCompareAccountsDataParams) => { - const is_australian = residence === 'au'; - return filterAvailableAccounts( - landing_companies, - getAccounts({ landing_companies, platform, is_logged_in, is_uk }), - is_logged_in, - show_eu_related, - platform, - is_australian - ); -}; - -const CFDCompareAccountHint = ({ - platform, - show_risk_message, - landing_companies, - is_logged_in, - is_uk, -}: TCFDCompareAccountHintProps) => { - return ( -
    -
    - - -
    - {show_risk_message && ( - -
    - - -
    -
    - - * - - -
    - {is_uk && ( -
    - - ** - - -
    - )} -
    - )} - {getAccounts({ landing_companies, platform, is_logged_in, is_uk }) - .filter( - item => - !!(item[platform as keyof TAccountsDescription] as TAccountsDescription['mt5' | 'dxtrade']) - ?.footnote - ) - .map((account, index) => { - return ( -
    - - {index + 1} - -
    - - {account.attribute} - - - { - ( - account[platform as keyof TAccountsDescription] as TAccountsDescription[ - | 'mt5' - | 'dxtrade'] - ).footnote - } - -
    -
    - ); - })} -
    - ); -}; - -const ModalContent = ({ - landing_companies, - is_logged_in, - platform, - show_eu_related, - residence, - is_eu, - is_uk, -}: TModalContentProps) => { - const [cols, setCols] = React.useState>>([]); - const [template_columns, updateColumnsStyle] = React.useState( - platform === CFD_PLATFORMS.DXTRADE ? '1.5fr 1fr 2fr' : '1.5fr 1fr 2fr 1fr' - ); - - React.useEffect(() => { - setCols(compareAccountsData({ landing_companies, is_logged_in, platform, show_eu_related, residence, is_uk })); - - if (is_logged_in && platform === CFD_PLATFORMS.MT5) { - updateColumnsStyle( - `1.5fr ${landing_companies?.mt_gaming_company?.financial ? '1fr' : ''} ${ - landing_companies?.mt_financial_company?.financial ? '2fr' : '' - } ${landing_companies?.mt_financial_company?.financial_stp ? ' 1fr ' : ''}` - ); - } else if (is_logged_in && platform === CFD_PLATFORMS.DXTRADE) { - updateColumnsStyle( - `1.5fr ${landing_companies?.dxtrade_gaming_company ? '1fr' : ''} ${ - landing_companies?.dxtrade_financial_company ? '2fr' : '' - }` - ); - } - }, [ - landing_companies?.mt_financial_company, - landing_companies?.mt_gaming_company, - is_logged_in, - is_uk, - landing_companies, - platform, - show_eu_related, - residence, - is_uk, - ]); - - const show_risk_message = platform === CFD_PLATFORMS.MT5 || !show_eu_related; - const financial_account_table_head_text = is_eu ? localize('CFDs') : localize('Financial'); - - return ( - - -
    - - - - - {is_logged_in ? ( - - {isLandingCompanyEnabled({ landing_companies, platform, type: 'gaming' }) && ( - {localize('Synthetic')} - )} - {isLandingCompanyEnabled({ - landing_companies, - platform, - type: 'financial', - }) && ( - - {financial_account_table_head_text} - - * - - - )} - {isLandingCompanyEnabled({ - landing_companies, - platform, - type: 'financial_stp', - }) && ( - - {localize('Financial STP')} - - * - - - )} - - ) : ( - - {localize('Synthetic')} - - {localize('Financial')} - - * - - - {platform === CFD_PLATFORMS.MT5 && ( - - {localize('Financial STP')} - - * - - - )} - - )} - - - - {cols.map((row, i) => ( - - {Object.keys(row).map((col, j) => ( - - {row[col]} - - ))} - - ))} - -
    -
    - -
    -
    - ); -}; - const CompareAccountsModal = ({ disableApp, enableApp, @@ -737,63 +51,65 @@ const CompareAccountsModal = ({ mt5_accounts.filter(Boolean).length === 1 ? localize('Account Information') : localize('Compare accounts'); return ( -
    -
    + <> +
    +
    + ); }; diff --git a/packages/trader/src/Modules/CFD/Containers/investor-password-manager.jsx b/packages/trader/src/Modules/CFD/Containers/investor-password-manager.jsx new file mode 100644 index 000000000000..fcb5a29b4833 --- /dev/null +++ b/packages/trader/src/Modules/CFD/Containers/investor-password-manager.jsx @@ -0,0 +1,128 @@ +import React from 'react'; +import { Field, Form, Formik } from 'formik'; +import { PasswordInput, PasswordMeter, Text, Button, Icon } from '@deriv/components'; +import { localize, Localize } from '@deriv/translations'; +import { getErrorMessages } from '@deriv/shared'; + +const CFDPasswordSuccessMessage = ({ toggleModal, is_investor }) => ( +
    + + + {is_investor ? ( + + ) : ( + + )} + + +
    +); + +const InvestorPasswordManager = ({ + error_message_investor, + is_submit_success_investor, + multi_step_ref, + onSubmit, + setPasswordType, + toggleModal, + validatePassword, +}) => { + if (is_submit_success_investor) { + return ; + } + + const initial_values = { old_password: '', new_password: '', password_type: 'investor' }; + + return ( +
    + + + + + + + {error_message_investor && ( + + {error_message_investor} + + )} + + {({ isSubmitting, errors, setFieldTouched, values, touched }) => ( +
    + + {({ field }) => ( + + )} + + + {({ field }) => ( + + {({ has_warning }) => ( + { + setFieldTouched('new_password', true, true); + field.onChange(e); + }} + className='cfd-password-manager__new-password' + required + /> + )} + + )} + +
    +
    +
    + )} +
    +
    + ); +}; + +export default InvestorPasswordManager; diff --git a/packages/trader/src/Modules/CFD/Containers/props.types.ts b/packages/trader/src/Modules/CFD/Containers/props.types.ts index fee3cd19c09b..eef52de40735 100644 --- a/packages/trader/src/Modules/CFD/Containers/props.types.ts +++ b/packages/trader/src/Modules/CFD/Containers/props.types.ts @@ -1,3 +1,5 @@ +import { History } from 'history'; +import { DetailsOfEachMT5Loginid } from '@deriv/api-types'; import { FormikHelpers as FormikActions } from 'formik'; import { TCFDPasswordFormValues } from './cfd-password-modal'; @@ -37,3 +39,25 @@ export type TPasswordResetAndTradingPasswordManager = { platform: 'mt5' | 'dxtrade'; account_group: 'real' | 'demo'; }; + +export type TResetPasswordIntent = { + current_list: Array & Record; + children({ ...props }): React.ReactElement; + is_eu: boolean; +}; + +export type TError = { + code: string | number; + message: string; +}; + +export type TCFDResetPasswordModal = { + current_list: Array & Record; + email: string; + is_cfd_reset_password_modal_enabled: boolean; + is_eu: boolean; + is_logged_in: boolean; + platform: 'dxtrade' | 'mt5'; + setCFDPasswordResetModal: (value: boolean) => void; + history: History; +}; diff --git a/packages/trader/src/Modules/CFD/index.js b/packages/trader/src/Modules/CFD/index.js index 29e3a44a35c0..f47d7ee63f02 100644 --- a/packages/trader/src/Modules/CFD/index.js +++ b/packages/trader/src/Modules/CFD/index.js @@ -1,3 +1,5 @@ +import CFDDashboard from './Containers/cfd-dashboard'; + export CFDPasswordModal from './Containers/cfd-password-modal'; export CFDServerErrorDialog from './Containers/cfd-server-error-dialog'; -export default from './Containers/cfd-dashboard.jsx'; +export default CFDDashboard; diff --git a/packages/trader/src/sass/app/modules/mt5/cfd-dashboard.scss b/packages/trader/src/sass/app/modules/mt5/cfd-dashboard.scss index ca3c47e8f27a..c4289961409a 100644 --- a/packages/trader/src/sass/app/modules/mt5/cfd-dashboard.scss +++ b/packages/trader/src/sass/app/modules/mt5/cfd-dashboard.scss @@ -1075,31 +1075,6 @@ .account-poa { &__upload { - &-icon { - width: 25px; - } - &-section { - margin-top: 0; - display: flex; - } - &-list { - width: 100%; - flex: 1; - margin-right: 16px; - } - &-file { - width: 100%; - flex: 1; - height: 240px; - position: relative; - - .dc-file-dropzone { - max-width: 400px; - } - @include mobile { - flex: unset; - } - } &-remove-btn { position: absolute; width: 16px; @@ -1125,20 +1100,6 @@ height: 100%; } } - &-box { - display: flex; - margin-bottom: 2rem; - align-items: center; - justify-content: flex-start; - } - &-item { - min-width: 238px; - width: 100%; - margin-left: 1rem; - font-size: var(--text-size-xxs); - line-height: 1.5; - color: var(--text-prominent); - } } } @@ -1153,8 +1114,62 @@ padding-top: 0.8rem; position: relative; - li { - margin: 0 0 0.8rem 0; + .account-poa { + &__upload { + &-section { + margin-top: 0; + display: flex; + } + &-file { + width: 100%; + flex: 1; + height: 24rem; + position: relative; + margin: 0; + + .dc-file-dropzone { + border: 1px dashed var(--border-normal); + max-width: 40rem; + + &__message-subtitle { + font-size: unset; + font-weight: unset; + } + } + @include mobile { + flex: unset; + } + } + &-list { + display: unset; + + .account-poa__upload-box { + display: flex; + flex-direction: unset; + flex: unset; + align-items: center; + justify-content: flex-start; + margin: 0 1.6rem 0.8rem 0; + border: none; + border-radius: 0; + padding: 0; + text-align: unset; + } + } + &-icon { + width: 2.5rem; + margin-bottom: 0; + } + &-item { + min-width: 23.8rem; + width: 100%; + margin-left: 1rem; + font-size: var(--text-size-xxs); + line-height: 1.5; + color: var(--text-prominent); + padding: 0; + } + } } } &__field-area { @@ -1220,86 +1235,147 @@ @include mobile { display: unset; + position: relative; } - .proof-of-identity__container { - display: flex; - flex-direction: column; - align-items: center; - width: 45%; - - @include mobile { - width: 100%; - padding: 0 1.2rem; + .proof-of-identity { + &:is(span) { + width: unset; + height: unset; } - .icon { - width: 12.8rem; - height: 12.8rem; - margin: 1.6rem 0 2.4rem 0; - } - .dc-input__bottom-label { - margin: unset; - } - .btm-spacer { - margin-bottom: 1.6rem; + &__footer { + width: 45%; + display: inline-flex; + justify-content: flex-end; + height: unset; + position: unset; + bottom: unset; + left: unset; + padding: unset; + z-index: unset; + border-radius: unset; + border-top: unset; + background-color: unset; + align-items: unset; + flex-direction: unset; + + @include mobile { + width: 95%; + margin-top: 8px; + } + + &-alert { + margin-right: unset; + } } - .top-spacer { - margin-top: 1.6rem; + + &__container { + display: flex; + flex-direction: column; + align-items: center; + width: 45%; + justify-content: unset; + + @include mobile { + width: 100%; + padding: 0 1.2rem; + overflow-y: unset; + justify-content: unset; + } + + .icon { + width: 12.8rem; + height: 12.8rem; + margin: 1.6rem 0 2.4rem 0; + } + .dc-input__bottom-label { + margin: unset; + } + .btm-spacer { + margin-bottom: 1.6rem; + } + .top-spacer { + margin-top: 1.6rem; + } + + .proof-of-identity__footer { + // for cases when __footer is a child of proof-of-identity__container: + width: 100%; + margin-bottom: 8.6em; + + span.dc-text.dc-btn__text { + display: inline-flex; + align-items: center; + } + .back-btn { + margin-right: unset; + + &-icon { + margin-right: 0.8rem; + } + } + } } - .proof-of-identity__header { - margin-bottom: 1.6rem; + + &__header { + margin: 0 0 1.6rem; } - .proof-of-identity__country-text { + &__country-text { text-align: center; margin-bottom: 1.6rem; } - .proof-of-identity__inner-container { + &__inner-container { + display: unset; + flex-direction: unset; + justify-content: unset; + align-items: unset; width: 100%; - - .proof-of-identity__image { - width: 100%; - } } - .proof-of-identity__fieldset { + &__image { width: 100%; - @include mobile { - margin-bottom: 1.8rem; + max-width: unset; + border-radius: unset; + object-fit: unset; + + &-container { + width: unset; + height: unset; + padding: unset; + border-radius: unset; + background-color: unset; } } - .proof-of-identity__footer { + &__fieldset { width: 100%; - margin-bottom: 8.6em; - span.dc-text.dc-btn__text { - display: inline-flex; - align-items: center; + @include mobile { + margin: 0 0 1.8rem; } - .back-btn-icon { - margin-right: 0.8rem; + &-container { + display: unset; + flex-direction: unset; + justify-content: unset; + align-items: unset; } - - .proof-of-identity__submit-button { - margin-left: 0.8rem; + &-input { + width: unset; } } - .proof-of-identity__sample-container { + &__sample-container { margin-top: 2.4rem; + margin-left: unset; + width: unset; } - } - .proof-of-identity__footer { - display: inline-flex; - justify-content: flex-end; - width: 45%; - @include mobile { - width: 95%; - margin-top: 8px; + + &__submit-button { + margin-left: 0.8rem; + @include mobile { + margin-right: unset; + } } } - @include mobile { - position: relative; - } .dc-themed-scrollbars { height: 100%; } diff --git a/packages/trader/src/sass/app/modules/mt5/cfd.scss b/packages/trader/src/sass/app/modules/mt5/cfd.scss index 23b3e5ef71da..8b8da00191ca 100644 --- a/packages/trader/src/sass/app/modules/mt5/cfd.scss +++ b/packages/trader/src/sass/app/modules/mt5/cfd.scss @@ -114,6 +114,7 @@ background-color: var(--status-warning); } } + &__message { max-width: 32rem; margin: auto; @@ -325,7 +326,6 @@ margin-top: 2.4rem; } &__success { - width: 38.4rem; height: 28.4rem; display: flex; flex-direction: column; diff --git a/packages/translations/crowdin/messages.json b/packages/translations/crowdin/messages.json index b65edbbc7141..faf263508eb8 100644 --- a/packages/translations/crowdin/messages.json +++ b/packages/translations/crowdin/messages.json @@ -1 +1 @@ -{"0":"","1014140":"You may also call <0>+447723580049 to place your complaint.","3215342":"Last 30 days","7100308":"Hour must be between 0 and 23.","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","11872052":"Yes, I'll come back later","14365404":"Request failed for: {{ message_type }}, retrying in {{ delay }}s","15377251":"Profit amount: {{profit}}","17217397":"Cryptocurrency","17843034":"Check proof of identity document verification status","21035405":"Please tell us why you’re leaving. (Select up to {{ allowed_reasons }} reasons.)","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","27582767":"{{amount}} {{currency}}","39720204":"AUD Index","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45941470":"Where would you like to start?","46523711":"Your proof of identity is verified","49963458":"Choose an option","54185751":"Less than $100,000","55916349":"All","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","65185694":"Fiat onramp","65982042":"Total","66519591":"Investor password","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","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","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","81450871":"We couldn’t find that page","83202647":"Collapse Block","85343079":"Financial assessment","85389154":"Steps required to continue verification on your mobile","89062902":"Trade on MT5","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.","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","108916570":"Duration: {{duration}} days","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","113378532":"ETH/USD","113884303":"German Index","113933902":"Download the Deriv X app","115032488":"Buy price and P/L","116005488":"Indicators","117318539":"Password should have lower and uppercase English letters with numbers.","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125443840":"6. Restart last trade on error","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.","130567238":"THEN","133523018":"Please go to the Deposit page to get an address.","133536621":"and","139454343":"Confirm my limits","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145146541":"Our accounts and services are unavailable for the Jersey postal code","145736466":"Take a selfie","150486954":"Token name","151344063":"The exit spot is the market price when the contract is closed.","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 }}","160863687":"Camera not detected","162727973":"Please enter a valid payment agent ID.","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?","170185684":"Ignore","171307423":"Recovery","171579918":"Go to Self-exclusion","171638706":"Variables","173991459":"We’re sending your request to the blockchain.","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","181881956":"Contract Type: {{ contract_type }}","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","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195972178":"Get character","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.","201091938":"30 days","203271702":"Try again","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207824122":"Please withdraw your funds from the following Deriv account(s):","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","216650710":"You are using a demo account","217504255":"Financial assessment submitted successfully","220014242":"Upload a selfie from your computer","220186645":"Text Is empty","220232017":"demo CFDs","222468543":"The amount that you may add to your stake if you’re losing a trade.","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 }}","228079844":"Click here to upload","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. ","236642001":"Journal","240247367":"Profit table","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 }}","247418415":"Gaming trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","251445658":"Dark theme","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","258310842":"Workspace","258448370":"MT5","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.","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.","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.","270610771":"In this example, the open price of a candle is assigned to the variable \"candle_open_price\".","270712176":"descending","270727821":"Stock Indices","270780527":"You've reached the limit for uploading your documents.","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","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","284527272":"antimode","284772879":"Contract","287934290":"Are you sure you want to cancel this transaction?","289898640":"TERMS OF USE","292491635":"If you select “Stop loss” and specify an amount to limit your loss, your position will be closed automatically when your loss is more than or equals to this amount. Your loss may be more than the amount you entered depending on the market price at closing.","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","294305803":"Manage account settings","294335229":"Sell at market price","300762428":"Swiss Index","303959005":"Sell Price:","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.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","312318161":"Your contract will be closed automatically at the next available asset price when the duration exceeds <0>.","313298169":"Our cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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?","317601768":"Themes","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","319538091":"DMT5 Financial STP","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","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","333456603":"Withdrawal limits","334942497":"Buy time","335040248":"About us","335046131":"Switch to crypto account?","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.","345320063":"Invalid timestamp","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","351744408":"Tests if a given text string is empty","353731490":"Job done","354945172":"Submit document","357477280":"No face found","358266012":"Warning!","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","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","368160866":"in list","371151609":"Last used","372291654":"Exclude time must be after today.","372645383":"True if the market direction matches the selection","373021397":"random","373495360":"This block returns the entire SMA line, containing a list of all values for a given period.","373919918":"Your account will be opened with Deriv Investments (Europe) Limited, regulated by the Malta Financial Services Authority (MFSA), and will be subject to the laws of Malta.","374537470":"No results for \"{{text}}\"","375714803":"Deal Cancellation Error","379730150":"US Tech Index","380606668":"tick","380694312":"Maximum consecutive trades","382781785":"Your contract is closed automatically when your profit is more than or equals to this amount.","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.","386502387":"Bot is not running","389923099":"Zoom in","390647540":"Real account","390890891":"Last quarter","391915203":"Hedging","392582370":"Fall Equals","396418990":"Offline","396961806":"We do not support Polygon (Matic), to deposit please use only Ethereum ({{token}}).","399387585":"Please check your email for details. If you have any questions, please go to our <0>Help Centre.","401339495":"Verify address","402343402":"Due to an issue on our server, some of your {{platform}} accounts are unavailable at the moment. Please bear with us and thank you for your patience.","403456289":"The formula for SMA is:","404743411":"Total deposits","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.","420072489":"CFD trading frequency","422055502":"From","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","428709688":"Your preferred time interval between each report:","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","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","442520703":"$250,001 - $500,000","444484637":"Logic negation","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.","452662014":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and DMT5 accounts and between your Deriv fiat and Deriv X accounts.","453409608":"Your profit is the percentage change in market price times your stake and the multiplier of your choice.","454593402":"2. Please upload one of the following:","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.","459817765":"Pending","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","466369320":"Your gross profit is the percentage change in market price times your stake and the multiplier chosen here.","473154195":"Settings","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\".","479420576":"Tertiary","481276888":"Goes Outside","482028864":"Your contract will be closed automatically at the next available asset price when the duration exceeds {{ days }} {{ unit }} {{ timestamp }}.","483591040":"Delete all {{ delete_count }} blocks?","487239607":"Converts a given True or False to the opposite value","488150742":"Resend email","489768502":"Change investor password","491603904":"Unsupported browser","492198410":"Make sure everything is clear","496680295":"Choose country","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","502041595":"This block gives you a specific candle from within the selected time interval.","503137339":"Payout limit","505793554":"last letter","510815408":"Letters, numbers, spaces, hyphens only","514031715":"list {{ input_list }} is empty","514776243":"Your {{account_type}} password has been changed.","514948272":"Copy link","518955798":"7. Run Once at Start","520136698":"Boom 500 Index","521872670":"item","521947594":"Launch DTrader in seconds the next time you want to trade.","522283618":"Digital options trading experience","522703281":"divisible by","523123321":"- 10 to the power of a given number","527329988":"This is a top-100 common password","529056539":"Options","530953413":"Authorised applications","531114081":"3. Contract Type","531675669":"Euro","535041346":"Max. total stake per day","538228086":"Close-Low","541650045":"Manage {{platform}} password","542305026":"You must also submit a proof of identity.","545476424":"Total withdrawals","546534357":"If you select “Deal cancellation”, you’ll be able to cancel your trade within a chosen time frame should the market move against your favour. We’ll charge a small fee for this, but we’ll return your stake amount without profit or loss. If the stop-out amount is reached before the deal cancellation expires, your position will be cancelled automatically and we’ll return your stake amount without profit or loss. While “Deal cancellation” is active:","549348623":"Send only Tether Omni to this deposit address.<0 /><0 />Sending Tether ERC20 to this address will result in the loss of your deposit.","549479175":"Deriv Multipliers","551414637":"Click the <0>Change password button to change your DMT5 password.","551569133":"Learn more about trading limits","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.","556095366":"We'll process your details within a few minutes and notify its status via email.","556264438":"Time interval","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","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.","567755787":"Tax Identification Number is required.","569057236":"In which country was your document issued?","569923414":"If you have a DMT5 real account, log in to close any open positions.","571921777":"Funds protection level","573173477":"Is candle {{ input_candle }} black?","577215477":"count with {{ variable }} from {{ start_number }} to {{ end_number }} by {{ step_size }}","577779861":"Withdrawal","577883523":"4. Awards and orders","578099923":"Get a faster mobile trading experience with the <0>Deriv GO app!","578522309":"These trading limits and self-exclusion help you control the amount of money and time you spend on Deriv.com and exercise <0>responsible trading.","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","584025813":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and DMT5 accounts.","584028307":"Allow equals","587577425":"Secure my account","589609985":"Linked with {{identifier_title}}","593459109":"Try a different currency","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","606240547":"- Natural log","606877840":"Back to today","607807243":"Get candle","609650241":"Infinite loop detected","611020126":"View address on Blockchain","613877038":"Chart","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.","617400581":"Client login ID","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}}?","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","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.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","632398049":"This block assigns a null value to an item or statement.","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.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","637939279":"By default, all Deriv.com clients are retail clients but anyone can request to be treated as a professional client.","639382772":"Please upload supported file type.","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.","642546661":"Upload back of license from your computer","643014039":"The trade length of your purchased contract.","644150241":"The number of contracts you have won since you last cleared your stats.","645016681":"Trading frequency in other financial instruments","645902266":"EUR/NZD","647192851":"Contract will be sold at the prevailing market price when the request is received by our servers. This price may differ from the indicated price.","647745382":"Input List {{ input_list }}","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)","651284052":"Low Tick","651684094":"Notify","652298946":"Date of birth","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.","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.","657444253":"Sorry, account opening is unavailable in your region.","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","662609119":"Download the MT5 app","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\".","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","676159329":"Could not switch to default account.","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","678517581":"Units","680334348":"This block was required to correctly convert your old strategy.","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","687212287":"Amount is a required field.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","693396140":"Deal cancellation (expired)","694532392":"Deriv X Password","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698748892":"Let’s try that again","699159918":"1. Filing complaints","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","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","710123510":"repeat {{ while_or_until }} {{ boolean }}","711029377":"Please confirm the transaction details in order to complete the withdrawal:","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","715841616":"Please enter a valid phone number (e.g. +15417541234).","716428965":"(Closed)","718504300":"Postal/ZIP code","718710899":"We can't change your account currency as you've either made a deposit into your {{currency}} account or created a real account on DMT5 or Deriv X.","718724141":"Expires in","720293140":"Log out","720519019":"Reset my password","721011817":"- Raise the first number to the power of the second number","723961296":"Manage password","724203548":"You can send your complaint to the <0>European Commission's Online Dispute Resolution (ODR) platform. This is not applicable to UK clients.","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","734390964":"Insufficient balance","734881840":"false","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","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","756152377":"SMA places equal weight to the entire distribution of values.","758003269":"make list from text","759783233":"For more information and assistance to counselling and support services, please visit <0>begambleaware.org.","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.","762185380":"<0>Multiply returns by <0>risking only what you put in.","762871622":"{{remaining_time}}s","763019867":"Your Gaming account is scheduled to be closed","764366329":"Trading limits","764540515":"Stopping the bot is risky","766317539":"Language","770171141":"Go to {{hostname}}","772632060":"Do not send any other currency to the following address. Otherwise, you'll lose funds.","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)","776085955":"Strategies","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","790168327":"Deriv X accounts","792739000":"We’ll review your document and notify you of its status within 1 to 2 hours.","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","796845736":"To continue trading with us, you need to send us a copy of any one of these government-issued photo ID documents via <0>LiveChat.","797007873":"Follow these steps to recover camera access:","797500286":"negative","800521289":"Your personal details are incomplete","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","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","823186089":"A block that can contain text.","824797920":"Is list empty?","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830711697":"Driving license","830993327":"No current transactions available","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).","835058671":"Total buy price","835350845":"Add another word or two. Uncommon words are better.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839618971":"ADDRESS","839805709":"To smoothly verify you, we need a better photo","841434703":"Disable stack","841543189":"View transaction on Blockchain","845213721":"Logout","845304111":"Slow EMA Period {{ input_number }}","848172194":"Trade major (standard and micro-lots) and minor currency pairs, stocks, stock indices, commodities, and cryptocurrencies with high leverage.","849805216":"Choose an agent","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.","852583045":"Tick List String","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","860319618":"Tourism","862283602":"Phone number*","863328851":"Proof of identity","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","869611522":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts.","869823595":"Function","872549975":"You have {{number}} transfers remaining for today.","872817404":"Entry Spot Time","872957901":"Dark (Coming soon to DBot)","873166343":"1. 'Log' displays a regular message.","874461655":"Scan the QR code with your phone","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","877354242":"Trade on DTrader","879014472":"Reached maximum number of decimals","887328652":"As a precaution, we have disabled trading, deposits and withdrawals for this account. If you have any questions, please go to our <0>Help Centre.","888274063":"Town/City","890299833":"Go to Reports","891097078":"USD Index","891337947":"Select country","892341141":"Your trading statistics since: {{date_time}}","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.","895890867":"Your account will be opened with Deriv (SVG) LLC, and will be subject to the laws of Saint Vincent and the Grenadines.","897687778":"Your Deriv password is for logging in to your Deriv account.","898457777":"You have added a Deriv Financial account.","900111088":"You can <0>set a new currency before you deposit for the first time or create a real DMT5 or Deriv X account.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905134118":"Payout:","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","912344358":"I hereby confirm that the tax information I provided is true and complete. I will also inform Deriv Investments (Europe) Limited about any changes to this information.","915735109":"Back to {{platform_name}}","918447723":"Real","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","934835052":"Potential profit","934932936":"PERSONAL","936766426":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit.","937237342":"Strategy name cannot be empty","937831119":"Last name*","937992258":"Table","938988777":"High barrier","940950724":"This trade type is currently not supported on {{website_name}}. Please go to <0>Binary.com for details.","943535887":"Please close your positions in the following Deriv MT5 account(s):","944499219":"Max. open positions","945532698":"Contract sold","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.","946944859":"Hit the button below and we'll send you an email with a link. Click that link to verify your withdrawal request.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947758334":"City is required","948156236":"Create {{type}} password","949859957":"Submit","952655566":"Payment agent","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961692401":"Bot","964780376":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your identity.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","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","975950139":"Country of Residence","977929335":"Go to my account settings","981138557":"Redirect","982402892":"First line of address","982829181":"Barriers","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","992294492":"Your postal code is invalid","995563717":"not {{ boolean }}","999008199":"text","1001160515":"Sell","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006458411":"Errors","1006664890":"Silent","1008240921":"Choose a payment agent and contact them for instructions.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","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","1022934784":"1 minute","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}}.","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.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1035506236":"Choose a new password","1035893169":"Delete","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039755542":"Use a few words, avoid common phrases","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","1044230481":"This is an Ethereum ({{token}}) only address, please do not use {{prohibited_token}}.","1045242890":"Proof of identity verification failed","1045704971":"Jump 150 Index","1045782294":"Click the <0>Change password button to change your Deriv password.","1047389068":"Food Services","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050844889":"Reports","1052137359":"Family name*","1052779010":"You are on your demo account","1053153674":"Jump 50 Index","1053159279":"Level of education","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","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.","1061308507":"Purchase {{ contract_type }}","1062536855":"Equals","1065498209":"Iterate (1)","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1069576070":"Purchase lock","1070624871":"Check proof of address document verification status","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","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","1088138125":"Tick {{current_tick}} - ","1090191592":"Total assets in your Deriv and Deriv X demo accounts.","1090410775":"Contract Lost","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.","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","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.","1106261041":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC, Deriv (FX) Ltd, and Deriv (V) Ltd.","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.","1113292761":"Less than 8MB","1113808050":"Total assets in your Deriv and Deriv X real accounts.","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","1125090693":"Must be a number","1126934455":"Length of token name must be between 2 and 32 characters.","1127149819":"Make sure§","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.","1129296176":"IMPORTANT NOTICE TO RECEIVE YOUR FUNDS","1129842439":"Please enter a take profit amount.","1129984312":"Bank Wire","1130744117":"We shall try to resolve your complaint within 10 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.","1130791706":"N","1133651559":"Live chat","1134879544":"Example of a document with glare","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.","1147625645":"Please proceed to withdraw all your funds from your account before <0>30 November 2021.","1151964318":"both sides","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).","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","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","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.","1173187492":"Deactivate account","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174748431":"Payment channel","1176926166":"Experience with trading other financial instruments","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","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с.","1188980408":"5 minutes","1189368976":"Please complete your personal details before you verify your identity.","1191644656":"Predict the market direction and select either “Up” or “Down” to open a position. We will charge a commission when you open a position.","1192708099":"Duration unit","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1196458986":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and DMT5 accounts and between your Deriv fiat and Deriv X accounts.","1197326289":"You are no longer able to trade digital options on any of our platforms. Also, you can’t make deposits into your Options account.","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1203297580":"This block sends a message to a Telegram channel.","1204202371":"No open positions","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","1204919083":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC.","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","1218546232":"What is Fiat onramp?","1219844088":"do %1","1222096166":"Deposit via bank wire, credit card, and e-wallet","1222521778":"Making deposits and withdrawals is difficult.","1222544232":"We’ve sent you an email","1226027513":"Transfer from","1227074958":"random fraction","1227240509":"Trim spaces","1228208126":"Please Verify your address","1228534821":"Some currencies may not be supported by payment agents in your country.","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","1234292259":"Source of wealth","1237330017":"Pensioner","1238311538":"Admin","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1243064300":"Local","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.","1250495155":"Token copied!","1254565203":"set {{ variable }} to create list with","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1264096613":"Search for a given string","1265704976":"","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","1274819385":"3. Complaints and Disputes","1275474387":"Quick","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","1290525720":"Example: ","1291887623":"Digital options trading frequency","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","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.","1299479533":"8 hours","1301668579":"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 DMT5 Financial.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","1304620236":"Enable camera","1304788377":"<0/><1/>If your complaint relates to our data processing practices, you can submit a formal complaint to the <2>Information and Data Protection Commissioner (Malta) on their website or make a complaint to any supervisory authority within the European Union.","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","1311799109":"We do not support Binance Smart Chain tokens to deposit, please use only Ethereum ({{token}}).","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314671947":"DMT5 Accounts","1319217849":"Check your mobile","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.","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. ","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","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","1340314141":"Go to SmartTrader","1341840346":"View in Journal","1346204508":"Take profit","1346339408":"Managers","1347071802":"{{minutePast}}m ago","1348009461":"Please close your positions in the following Deriv X account(s):","1349142948":"DMT5 Financial","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351152200":"Welcome to Deriv MT5 (DMT5) dashboard","1353197182":"Please select","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357129681":"{{num_day}} days {{num_hour}} hours {{num_minute}} minutes","1357213116":"Identity card","1358543466":"Not available","1359424217":"You have sold this contract at <0 />","1359701341":"You’ll not be charged a transfer fee for transfers in the same currency between your Deriv fiat and DMT5 accounts.","1360929368":"Add a Deriv account","1362578283":"High","1363060668":"Your trading statistics since:","1363675688":"Duration is a required field.","1366244749":"Limits","1367023655":"To ensure your loss does not exceed your stake, your contract will be closed automatically when your loss equals to <0/>.","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1369709538":"Our terms of use","1371193412":"Cancel","1371641641":"Open the link on your mobile","1374627690":"Max. account balance","1376329801":"Last 60 days","1378419333":"Ether","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","1389197139":"Import error","1390792283":"Trade parameters","1390897177":"To deposit cryptocurrency, switch your account.","1391174838":"Potential payout:","1392966771":"Mrs","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","1397046738":"View in statement","1397628594":"Insufficient funds","1399620764":"We're legally obliged to ask for your financial information.","1400637999":"(All fields are required)","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1407191858":"DTrader","1408844944":"Click the plus icon to extend the functionality of this block.","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","1415006332":"get sub-list from first","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","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","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","1424741507":"See more","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","1429669335":"Indicators on the chart tab are for indicative purposes only and may vary slightly from the ones on the DBot workspace.","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.","1434382099":"Displays a dialog window with a message","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","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","1443544547":"Synthetic indices in the EU are offered by Deriv (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licensed and regulated by the Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) and by the Revenue Commissioners for clients in Ireland (<2>licence no. 1010285).","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","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.","1453362009":"Deriv Accounts","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.","1457603571":"No notifications","1461323093":"Display messages in the developer’s console.","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}}.","1465919899":"Pick an end date","1466430429":"Should be between {{min_value}} and {{max_value}}","1466900145":"Doe","1467421920":"with interval: %1","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","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1471070549":"Can contract be sold?","1471741480":"Severe error","1475513172":"Size","1475523125":"View the trading history.","1476301886":"Similar to SMA, this block gives you the entire SMA line containing a list of all values for a given period.","1481977420":"Please help us verify your withdrawal request.","1484336612":"This block is used to either terminate or continue a loop, and can be placed anywhere within a loop block.","1490583127":"DBot isn't quite ready for real accounts","1491392301":"<0>Sold for: {{sold_for}}","1496810530":"GBP/AUD","1499074768":"Add a real Deriv Multipliers account","1499080621":"Tried to perform an invalid operation.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503618738":"- Deal reference ID: the reference ID of the contract","1505898522":"Download stack","1506251760":"Wallets","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.","1515034599":"This complaints policy, which may change from time to time, applies to your account registered with Deriv (MX) Ltd, having its registered office address at First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, licensed and regulated respectively by (1) the Gambling Supervision Commission in the Isle of Man (current <0>licence issued on 31 August 2017) and (2) the Gambling Commission in the UK (<1>licence no. 39172).","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1519336051":"Try a different phone number","1520332426":"Net annual income","1524636363":"Authentication failed","1527251898":"Unsuccessful","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","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.","1539108340":"EUR Index","1540585098":"Decline","1541969455":"Both","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.","1548765374":"Verification of document number failed","1549098835":"Total withdrawn","1552080191":"Excluded from Deriv.com until","1552918367":"Send only {{currency}} ({{currency_symbol}}) to this address.","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1560302445":"Copied","1562374116":"Students","1565336048":"Contract Won","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1567076540":"Only use an address for which you have proof of residence - ","1567586204":"Self-exclusion","1569624004":"Dismiss alert","1570484627":"Ticks list","1572504270":"Rounding operation","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","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","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1594147169":"Please come back in","1594322503":"Sell is available","1596378630":"You have added a real Gaming account.<0/>Make a deposit now to start trading.","1598009247":"<0>a.You may file a complaint with the Financial Commission up to 45 days after the incident.","1598443642":"Transaction hash","1602894348":"Create a password","1604171868":"Please withdraw all your funds as soon as possible.","1604916224":"Absolute","1605292429":"Max. total loss","1612105450":"Get substring","1613633732":"Interval should be between 10-60 minutes","1615897837":"Signal EMA Period {{ input_number }}","1619070150":"You are being redirected to an external website.","1620278321":"Names and surnames by themselves are easy to guess","1620346110":"Set currency","1622662457":"Date from","1630372516":"Try our Fiat onramp","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1634594289":"Select language","1634903642":"Only your face can be in the selfie","1634969163":"Change currency","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.","1644656085":"Buy and sell contracts, renew expired purchases, and top up demo accounts.","1644908559":"Digit code is required.","1647186767":"The bot encountered an error while running.","1651513020":"Display remaining time for each interval","1651951220":"Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"","1652366857":"get and remove","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!","1653159197":"Payment agent withdrawal","1653180917":"We cannot verify you without using your camera","1654365787":"Unknown","1654496508":"Our system will finish any DBot trades that are running, and DBot will not place any new trades.","1654721858":"Upload anyway","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1656970322":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (Europe) Limited, having its registered office address at W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, licensed and regulated by the Malta Gaming Authority in Malta for gambling products only, <0>licence no. MGA/B2C/102/2000, and for clients residing in the UK by the UK Gambling Commission (account number 39495).","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1665272539":"Remember: You cannot log in to your account until the selected date.","1665738338":"Balance","1665756261":"Go to live chat","1667395210":"Your proof of identity was submitted successfully","1670426231":"End Time","1671232191":"You have set the following limits:","1677027187":"Forex","1677990284":"My apps","1682409128":"Untitled Strategy","1682636566":"Resend email in","1684419981":"What's this?","1686800117":"{{error_msg}}","1689103988":"Second Since Epoch","1689738742":"Gold Index","1690703448":"You may transfer between your Deriv fiat, cryptocurrency, DMT5, and Deriv X accounts.","1691335819":"To continue trading with us, please confirm who you are.","1691765860":"- Negation","1693614409":"Start time","1694331708":"You can switch between CFDs, digital options, and multipliers at any time.","1695807119":"Could not load Google Drive blocks","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","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","1722401148":"The amount that you may add to your stake after each successful trade.","1723398114":"A recent utility bill (e.g. electricity, water, gas, phone or internet)","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.","1724696797":"You are limited to one fiat account only.","1726472773":"Function with no return value","1728121741":"Transactions.csv","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1732891201":"Sell price","1734185104":"Balance: %1","1734264460":"Disclaimer","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738504192":"E-wallet","1738681493":"Remove your glasses, if necessary","1739384082":"Unemployed","1740371444":"Underlying market is not selected","1740843997":"Buy cryptocurrencies in an instant. Enjoy easy, quick, and secure exchanges using your local payment methods.","1743448290":"Payment agents","1743902050":"Complete your financial assessment","1745523557":"- Square root","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747523625":"Go back","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1750065391":"Login time:","1753226544":"remove","1753975551":"Upload passport photo page","1756678453":"break out","1761038852":"Let’s continue with providing proofs of address and identity.","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1766993323":"Only letters, numbers, and underscores are allowed.","1767726621":"Choose agent","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772532756":"Create and edit","1777847421":"This is a very common password","1778815073":"{{website_name}} is not affiliated with any Payment Agent. Customers deal with Payment Agents at their sole risk. Customers are advised to check the credentials of Payment Agents, and check the accuracy of any information about Payments Agents (on Deriv or elsewhere) before transferring funds.","1778893716":"Click here","1779519903":"Should be a valid number.","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","1787135187":"Postal/ZIP code is required","1788966083":"01-07-1999","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1791432284":"Search for country","1791971912":"Recent","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1801093206":"Get candle list","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","1806503050":"Please note that some payment methods might not be available in your country.","1808058682":"Blocks are loaded successfully","1808393236":"Login","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.","1810691615":"When you set your limits, they will be aggregated across all your account types in DTrader, DBot, and SmartTrader. For example, the losses made on all three platforms will add up and be counted towards the loss limit you set.","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815995250":"Buying contract","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1824193700":"This block gives you the last digit of the latest tick value.","1827607208":"File not uploaded.","1828994348":"DMT5 is not available in {{country}}","1832974109":"SmartTrader","1833481689":"Unlock","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1838639373":"Resources","1839497304":"If you have a DMT5 or Deriv X real account, go to your <0>DMT5 or <1>Deriv X dashboard to withdraw your funds","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1842862156":"Welcome to your Deriv X dashboard","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.","1844033601":"Self-exclusion on the website only applies to your Deriv.com account and does not include other companies or websites.","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","1849484058":"Any unsaved changes will be lost.","1850031313":"- Low: the lowest price","1850132581":"Country not found","1850659345":"- Payout: the payout of the contract","1850663784":"Submit proofs","1851052337":"Place of birth is required.","1851776924":"upper","1851951013":"Please switch to your demo account to run your DBot.","1854480511":"Cashier is locked","1855566768":"List item position","1858251701":"minute","1863053247":"Please upload your identity document.","1866811212":"Deposit in your local currency via an authorised, independent payment agent in your country.","1866836018":"<0/><1/>If your complaint relates to our data processing practices, you can submit a formal complaint to your local supervisory authority.","1867217564":"Index must be a positive integer","1867783237":"High-to-Close","1869315006":"See how we protect your funds to unlock the cashier.","1869787212":"Even","1869851061":"Passwords","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871664426":"Note","1873838570":"Please verify your address","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.","1875505777":"If you have a Deriv real account, go to <0>Reports to close or sell any open positions.","1876325183":"Minutes","1877225775":"Your proof of address is verified","1877410120":"What you need to do now","1877832150":"# from end","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880875522":"Create \"get %1\"","1881018702":"hour","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887852176":"Site is being updated","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.","1890284485":"Explore DTrader","1890332321":"Returns the number of characters of a given string of text, including numbers, spaces, punctuation marks, and symbols.","1894667135":"Please verify your proof of address","1898670234":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0> {{opening_date}}.","1903437648":"Blurry photo detected","1905032541":"We're now ready to verify your identity","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907884620":"Add a real Deriv Gaming account","1908239019":"Make sure all of the document is in the photo","1909647105":"TRX/USD","1909769048":"median","1913777654":"Switch account","1914014145":"Today","1914270645":"Default Candle Interval: {{ candle_interval_type }}","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1917804780":"You will lose access to your Options account when it gets closed, so be sure to withdraw all your funds. (If you have a CFDs account, you can also transfer the funds from your Options account to your CFDs account.)","1918796823":"Please enter a stop loss amount.","1919030163":"Tips to take a good selfie","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","1923431535":"“Stop loss” is deactivated and will only be available when “Deal cancellation” expires.","1924365090":"Maybe later","1924765698":"Place of birth*","1925090823":"Sorry, trading is unavailable in {{clients_country}}.","1927244779":"Use only the following special characters: . , ' : ; ( ) @ # / -","1928930389":"GBP/NOK","1929309951":"Employment Status","1930899934":"Tether","1931659123":"Run on every tick","1934302388":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your address.","1939902659":"Signal","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","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1952580688":"Submit passport photo page","1955219734":"Town/City*","1957759876":"Upload identity document","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","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","1982912252":"Relative Strength Index (RSI) from a list with a period","1983387308":"Preview","1983544897":"P.O. Box is not accepted in address","1983676099":"Please check your email for details.","1984700244":"Request an input","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.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1988601220":"Duration value","1990735316":"Rise Equals","1991448657":"Don't know your tax identification number? Click <0>here to learn more.","1991524207":"Jump 100 Index","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.","1998199587":"You can also exclude yourself entirely for a specified duration. If, at any time, you decide to trade again, you must then contact our Customer Support to remove this self-exclusion. There will be a 24-hour-cooling-off period before you can resume trading. ","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","2004792696":"If you are a UK resident, to self-exclude from all online gambling companies licensed in Great Britain, go to <0>www.gamstop.co.uk.","2007028410":"market, trade type, contract type","2007092908":"Trade with leverage and low spreads for better returns on successful trades.","2008809853":"Please proceed to withdraw your funds before 30 November 2021.","2009620100":"DBot will not proceed with any new trades. Any ongoing trades will be completed by our system. Any unsaved changes will be lost.<0>Note: Please check your statement to view completed transactions.","2009770416":"Address:","2010031213":"Trade on Deriv X","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","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.","2021037737":"Please update your details to continue.","2023659183":"Student","2023762268":"I prefer another trading website.","2024107855":"{{payment_agent}} agent contact details:","2025339348":"Move away from direct light — no glare","2027625329":"Simple Moving Average Array (SMAA)","2027696535":"Tax information","2028163119":"EOS/USD","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}}","2037481040":"Choose a way to fund your account","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2042050260":"- Purchase price: the purchase price (stake) of the contract","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","2048110615":"Email address*","2048134463":"File size exceeded.","2050080992":"Tron","2050170533":"Tick list","2051558666":"View transaction history","2054500647":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC and Deriv (V) Ltd.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2062912059":"function {{ function_name }} {{ function_params }}","2063655921":"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.","2063812316":"Text Statement","2063890788":"Cancelled","2070002739":"Don’t accept","2070752475":"Regulatory Information","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","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}}","2081088445":"When you set your limits or self-exclusion, they will be aggregated across all your account types in DTrader and DBot. For example, the losses made on both platforms will add up and be counted towards the loss limit you set.","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.","2084925123":"Use our fiat onramp services to buy and deposit cryptocurrency into your Deriv account.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","2086742952":"You have added a real Options account.<0/>Make a deposit now to start trading.","2086792088":"Both barriers should be relative or absolute","2088735355":"Your session and login limits","2089299875":"Total assets in your Deriv real accounts.","2091671594":"Status","2093167705":"You can only make deposits. Please contact us via live chat for more information.","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2100713124":"account","2101972779":"This is the same as the above example, using a tick list.","2102115846":"Financial products in the EU are offered by Deriv Investments (Europe) Limited, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>licence no. IS/70156).","2102572780":"Length of digit code must be 6 characters.","2104115663":"Last login","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2109208876":"Manage {{platform}} Demo {{account_title}} account password","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","2115007481":"Total assets in your Deriv demo accounts.","2115223095":"Loss","2117073379":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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","2118315870":"Where do you live?","2119449126":"Example output of the below example will be:","2120617758":"Set up your trade","2121227568":"NEO/USD","2127564856":"Withdrawals are locked","2131963005":"Please withdraw your funds from the following Deriv MT5 account(s):","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.","2133778783":"DMT5 Synthetic","2135563258":"Forex trading frequency","2136246996":"Selfie uploaded","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","2146892766":"Binary options trading experience","-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","-1497654315":"Our accounts and services are unavailable for the Jersey postal code.","-755626951":"Complete your address details","-1024240099":"Address","-584911871":"Select wallet currency","-1461267236":"Please choose your currency","-1352330125":"CURRENCY","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-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","-654781670":"Primary","-1717373258":"Secondary","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-739367071":"Employed","-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","-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","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-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.","-1356204661":"This Tax Identification Number (TIN) is invalid. You may continue with account creation, but to facilitate future payment processes, valid tax information will be required.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-204765990":"Terms of use","-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","-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","-883103549":"Account deactivated","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-1214803297":"Dashboard-only path","-526636259":"Error 404","-1030759620":"Government Officers","-612752984":"These are default limits that we apply to your accounts.","-1598263601":"To learn more about trading limits and how they apply, please go to the <0>Help Centre.","-1411635770":"Learn more about account limits","-1340125291":"Done","-1786659798":"Trading limits - Item","-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.","-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.","-1359847094":"Trading limits - Maximum daily turnover","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-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.","-190838815":"We need this for verification. If the information you provide is fake or inaccurate, you won’t be able to deposit and withdraw.","-223216785":"Second line of address*","-594456225":"Second line of address","-1315410953":"State/Province","-1940457555":"Postal/ZIP Code*","-1964954030":"Postal/ZIP Code","-1541554430":"Next","-71696502":"Previous","-231863107":"No","-786372363":"Learn more about API token","-55560916":"To access our mobile apps and other third-party apps, you'll first need to generate an API token.","-198329198":"API Token","-763859447":"Click here to copy token","-605778668":"Never","-32386760":"Name","-1628008897":"Token","-1238499897":"Last Used","-1049724201":"Scope","-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.","-1052849013":"View account activity such as settings, limits, balance sheets, trade purchase history, and more.","-1076138910":"Trade","-1666909852":"Payments","-147694447":"Withdraw to payment agents, and transfer funds between accounts.","-1927980053":"Open accounts, manage settings, manage token usage, and more.","-488597603":"Trading information","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-2115275974":"CFDs","-988523882":"DMT5","-359091713":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} or Deriv X account.","-460645791":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-561724665":"You are limited to one fiat currency only","-1319246342":"Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum, an open software platform where anyone can build and deploy decentralised applications.","-2087317410":"Oops, something went wrong.","-1437206131":"JPEG JPG PNG PDF GIF","-820458471":"1 - 6 months old","-155705811":"A clear colour photo or scanned image","-587941902":"Issued under your name with your current address","-438669274":"JPEG JPG PNG PDF GIF","-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","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1437017790":"Financial information","-39038029":"Trading experience","-1044962593":"Upload Document","-164448351":"Show less","-1361653502":"Show more","-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","-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.","-1120954663":"First name*","-1659980292":"First name","-1857534296":"John","-1485480657":"Other details","-1315571766":"Place of birth","-2040322967":"Citizenship","-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","-1451334536":"Continue trading","-1525879032":"Your documents for proof of address is expired. 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.","-2004327866":"Please select a valid country of document issuance.","-1664159494":"Country","-1552821634":"Try submitting an ID document instead.","-1176889260":"Please select a document type.","-1515286538":"Please enter your document number. ","-1785463422":"Verify your identity","-78467788":"Please select the document type and enter the ID number.","-1117345066":"Choose the document type","-651192353":"Sample:","-1263033978":"Please ensure all your personal details are the same as in your chosen document. If you wish to update your personal details, go to account settings.","-937707753":"Go Back","-1926456107":"The ID you submitted is expired.","-555047589":"It looks like your identity document has expired. Please try again with a valid document.","-841187054":"Try Again","-2097808873":"We were unable to verify your ID with the details you provided. ","-228284848":"We were unable to verify your ID with the details you provided.","-1443800801":"Your ID number was submitted successfully","-1391934478":"Your ID is verified. You will also need to submit proof of your address.","-118547687":"ID verification passed","-749870311":"Please contact us via <0>live chat.","-200989771":"Go to personal details","-1358357943":"Please check and update your postal code before submitting proof of identity.","-1401994581":"Your personal details are missing","-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.","-1909155192":"We were unable to verify your document automatically. We will try to verify your document manually. Please check back in 1-3 days.","-182918740":"Your proof of identity submission failed because:","-337979330":"We could not verify your proof of identity","-706528101":"As a precaution, we have disabled trading, deposits and withdrawals for this account. If you have any questions, please go to our Help Center.<0>Help Centre.","-856213726":"You must also submit a proof of address.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-1313806160":"Please request a new password and check your email for the new token.","-329713179":"Ok","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-2068479232":"{{platform}} password","-1332137219":"Strong passwords contain at least 8 characters that include uppercase and lowercase letters, numbers, and symbols.","-1597186502":"Reset {{platform}} password","-848721396":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. If you live in the United Kingdom, Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request. If you live in the Isle of Man, Customer Support can only remove or weaken your trading limits after your trading limit period has expired.","-469096390":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request.","-42808954":"You can also exclude yourself entirely for a specified duration. This can only be removed once your self-exclusion has expired. If you wish to continue trading once your self-exclusion period expires, you must contact Customer Support by calling <0>+447723580049 to lift this self-exclusion. Requests by chat or email shall not be entertained. There will be a 24-hour cooling-off period before you can resume trading.","-135354733":"These self-exclusion limits help you control the amount of money and time you spend trading on DTrader, DBot, and SmartTrader. The limits you set here will help you exercise <0>responsible trading.","-1702324712":"These limits are optional, and you can adjust them at any time. You decide how much and how long you’d like to trade. If you don’t wish to set a specific limit, leave the field blank.","-1819875658":"You can also exclude yourself entirely for a specified duration. Once the self-exclusion period has ended, you can either extend it further or resume trading immediately. If you wish to reduce or remove the self-exclusion period, contact our <0>Customer Support.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-933963283":"No, review my limits","-1759860126":"Yes, log me out immediately","-839094775":"Back","-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).","-2121421686":"To self-exclude from all online gambling companies licensed in Great Britain, go to <0>www.gamstop.co.uk.","-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","-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.","-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).","-1964320730":"Please click on the link in the email to change your <0>Deriv X password.","-976364600":"Please click on the link in the email to change your DMT5 password.","-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.","-679569665":"Your account will be opened with Deriv (MX) Ltd, regulated by the UK Gaming Commission (UKGC), and will be subject to the laws of the Isle of Man.","-1970096931":"Your account will be opened with Deriv (Europe) Limited, regulated by the Malta Gaming Authority, and will be subject to the laws of Malta.","-1300699650":"Your account will be opened with Deriv Capital International Ltd and will be subject to the laws of Samoa.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-428335668":"You will need to set a password to complete the process.","-1850792730":"Unlink from {{identifier_title}}","-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","-2145244263":"This field is required","-70342544":"We’re legally obliged to ask for your financial information.","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-179005984":"Save","-789291456":"Tax residence*","-1651554702":"Only alphabet is allowed","-1458676679":"You should enter 2-50 characters.","-1166111912":"Use only the following special characters: {{ permitted_characters }}","-884768257":"You should enter 0-35 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-874280157":"This Tax Identification Number (TIN) is invalid. You may continue using it, but to facilitate future payment processes, valid tax information will be required.","-1037916704":"Miss","-1113902570":"Details","-634958629":"We use the information you give us only for verification purposes. All information is kept confidential.","-731992635":"Title*","-352888977":"Title","-136976514":"Country of residence*","-945104751":"We’re legally obliged to ask for your tax information.","-1702919018":"Second line of address (optional)","-1124948631":"Professional Client","-1463348492":"I would like to be treated as a professional client.","-1958764604":"Email preference","-2121071263":"Check this box to receive updates via email.","-2068064150":"Get updates about Deriv products, services and events.","-1558679249":"Please make sure your information is correct or it may affect your trading experience.","-862399107":"We’re sorry to see you leave. Your account is now deactivated.","-1822545742":"Ether Classic","-1334641066":"Litecoin","-1214036543":"US Dollar","-1782590355":"No currency has been set for this account","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-2116332353":"Please close your positions in the following Deriv account(s):","-2048005267":"{{number_of_positions}} position(s)","-1923892687":"Please withdraw your funds from the following Deriv X account(s):","-684271315":"OK","-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.","-401778324":"I’m deactivating my account for other reasons.","-9323953":"Remaining characters: {{remaining_characters}}","-1248180182":"Deactivate account?","-136868676":"Deactivating your account will automatically log you out. You can reactivate your account by logging in at any time.","-1318334333":"Deactivate","-1219849101":"Please select at least one reason","-484540402":"An error occurred","-1911549768":"Inaccessible MT5 account(s)","-1869355019":"Action required","-1944396623":"Before you deactivate your account, you’ll need to:","-1427203041":"1. Ensure to close all your positions","-115851087":"If you have a DMT5 or Deriv X real account, log in to close any open positions.","-1191568235":"2. Withdraw your funds","-1323183253":"If you have a Deriv real account, go to <0>Cashier to withdraw your funds.","-72910365":"If you have a DMT5 real account, go to your <0>DMT5 dashboard to withdraw your funds","-249431422":"Continue to account deactivation","-1725454783":"Failed","-506510414":"Date and time","-1708927037":"IP address","-365847515":"Apps you can use with your Deriv login:","-26491905":"You're using your {{identifier_title}} account to log in to your Deriv account. To change your login method into using a username and password, click the <0>Unlink button.","-596920538":"Unlink","-1319725774":"DMT5 Password","-1403020742":"Your DMT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","-340060402":"Your Deriv X password is for logging in to your Deriv X accounts on the web and mobile apps.","-872790083":"Click the <0>Change password button to change your Deriv X password.","-412891493":"Disable 2FA","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-307075478":"6 digit 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.","-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:","-752939584":"How to set up 2FA for your Deriv account","-1691236701":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator. We do not support <2>Duo Mobile.","-90649785":"Click here to copy key","-206376148":"Key copied!","-650175948":"A recent bank statement or government-issued letter with your name and address.","-2006895756":"1. Address","-716361389":"An accurate and complete address helps to speed up your verification process.","-890084320":"Save and submit","-902076926":"Before uploading your document, please ensure that your personal details are updated to match your proof of identity. This will help to avoid delays during the verification process.","-1517325716":"Deposit via the following payment methods:","-1547606079":"We accept the following cryptocurrencies:","-42592103":"Deposit cryptocurrencies","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-72314872":"Deposit in your local currency via peer-to-peer exchange with fellow traders in your country.","-58126117":"Your simple access to crypto. Fast and secure way to exchange and purchase cryptocurrencies. 24/7 live chat support.","-1975494965":"Cashier","-1186807402":"Transfer","-1787304306":"Deriv P2P","-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.","-2021135479":"This field is required.","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1957498244":"more","-1684548351":"Switch to crypto account","-1345040662":"Looking for a way to buy cryptocurrency?","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-212277385":"You can no longer change your account currency because you've made a deposit into your fiat account or created a real DMT5 or Deriv X account. Please contact us via <0>live chat for clarification.","-1900848111":"This is your {{currency_code}} account.","-749765720":"Your fiat account currency is set to {{currency_code}}.","-803546115":"Manage your accounts ","-1463156905":"Learn more about payment methods","-486580863":"Transfer to","-1995606668":"Amount","-344403983":"Description","-1746825352":"Please confirm the transaction details in order to complete the transfer:","-1272778997":"We've sent you an email.","-89973258":"Resend email in {{seconds}}s","-2024958619":"This is to protect your account from unauthorised withdrawals.","-2061807537":"Something’s not right","-1675848843":"Error","-283017497":"Retry","-1157701227":"You need at least two accounts","-1366788579":"Please create another Deriv, DMT5, or Deriv X account.","-380740368":"Please create another Deriv or DMT5 account.","-417711545":"Create account","-1321645628":"Your cashier is currently locked. Please contact us via live chat to find out how to unlock it.","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-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. ","-1158467524":"Your account is temporarily disabled. Please contact us via live chat to enable deposits and withdrawals again.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-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.","-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.","-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.","-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.","-166472881":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.","-1037495888":"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 live chat.","-949074612":"Please contact us via live chat.","-127614820":"Unfortunately, you can only make deposits. Please contact us via live chat to enable withdrawals.","-759000391":"We were unable to verify your information automatically. To enable this function, you must complete the following:","-1638172550":"To enable this feature you must complete the following:","-1632668764":"I accept","-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.","-1332236294":"Please verify your identity","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-553249337":"Transfers are locked","-705272444":"Upload a proof of identity to verify your identity","-1196994774":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency accounts.","-1611462487":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts and between your Deriv cryptocurrency and Deriv X accounts.","-1059419768":"Notes","-1905569336":"You may transfer between your Deriv fiat, cryptocurrency, and DMT5 accounts.","-201770295":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts, up to {{ allowed_mt5 }} transfers between your Deriv and DMT5 accounts, and up to {{ allowed_dxtrade }} transfers between your Deriv and Deriv X accounts.","-1260947881":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts and up to {{ allowed_mt5 }} transfers between your Deriv and DMT5 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.","-1221972195":"DMT5 accounts","-1344870129":"Deriv accounts","-1156059326":"You have {{number}} transfer remaining for today.","-1593609508":"Transfer between your accounts in Deriv","-464965808":"Transfer limits: <0 /> - <1 />","-1077304626":"Amount ({{currency}})","-1559994981":"Approximate value","-190084602":"Transaction","-811190405":"Time","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-596416199":"By name","-1169636644":"By payment agent ID","-118683067":"Withdrawal limits: <0 />-<1 />","-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.","-1179992129":"All payment agents","-344959847":"A payment agent is authorised to process deposits and withdrawals for you if your local payment methods or currencies are not supported on {{website_name}}.","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-38063175":"{{account_text}} wallet","-1474202916":"Make a new withdrawal","-460879294":"You're not done yet. To receive the transferred funds, you must contact the payment agent for further instruction. A summary of this transaction has been emailed to you for your records.","-299033842":"Recent transactions","-348296830":"{{transaction_type}} {{currency}}","-1929538515":"{{amount}} {{currency}} on {{submit_date}}","-1534990259":"Transaction hash:","-1612346919":"View all","-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.","-2013448791":"Want to exchange between e-wallet currencies? Try <0>Ewallet.Exchange","-993393818":"Binance Smart Chain","-561858764":"Polygon (Matic)","-410890127":"Ethereum (ERC20)","-1059526741":"Ethereum (ETH)","-1615615253":"We do not support Tron, to deposit please use only Ethereum ({{token}}).","-1831000957":"Please select the network from where your deposit will come from.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-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","-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.","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-447037544":"Buy price:","-1342699195":"Total profit/loss:","-1511825574":"Profit/Loss:","-726626679":"Potential profit/loss:","-338379841":"Indicative price:","-1525144993":"Payout limit:","-1167474366":"Tick ","-555886064":"Won","-529060972":"Lost","-571642000":"Day","-155989831":"Decrement value","-1192773792":"Don't show this again","-1769852749":"N/A","-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","-1940333322":"DBot is not available for this account","-1210387519":"Go to DMT5 dashboard","-1223145005":"Loss amount: {{profit}}","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-668558002":"Journal.csv","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-1109191651":"Must be a number higher than 0","-1917772100":"Invalid number format","-689786738":"Minimum duration: {{ min }}","-184183432":"Maximum duration: {{ max }}","-1194719174":"The multiplier amount used to increase your stake if you’re losing a trade.","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-1322453991":"You need to log in to run the bot.","-1483938124":"This strategy is currently not compatible with DBot.","-1428017300":"THE","-1450728048":"OF","-255051108":"YOU","-1845434627":"IS","-931434605":"THIS","-740712821":"A","-254421190":"List: ({{message_length}})","-9461328":"Security and privacy","-418247251":"Download your journal.","-1616649196":"results","-90107030":"No results found","-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","-786915692":"You are connected to Google Drive","-1150107517":"Connect","-1759213415":"Find out how this app handles your data by reviewing Deriv's <0>Privacy policy, which is part of Deriv's <1>Terms and conditions.","-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","-1016171176":"Asset","-621128676":"Trade type","-671128668":"The amount that you pay to enter a trade.","-447853970":"Loss threshold","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-1823621139":"Quick Strategy","-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","-224804428":"Transactions","-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.","-305283152":"Strategy name","-1003476709":"Save as collection","-636521735":"Save strategy","-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","-686334932":"Build a bot from the start menu then hit the run button to run the bot.","-1696412885":"Import","-250192612":"Sort","-1566369363":"Zoom out","-2060170461":"Load","-1200116647":"Click here to start building your DBot.","-1040972299":"Purchase contract","-600546154":"Sell contract (optional)","-985351204":"Trade again","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1285759343":"Search","-1058262694":"Stopping the bot will prevent further trades. Any ongoing trades will be completed by our system.","-1473283434":"Please be aware that some completed transactions may not be displayed in the transaction table if the bot is stopped while placing trades.","-397015538":"You may refer to the statement page for details of all completed transactions.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-627895223":"Exit spot","-596238067":"Entry/Exit spot","-1717650468":"Online","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-215905387":"DBot","-981017278":"Automated trading at your fingertips. No coding needed.","-398198412":"Trade on Deriv MT5 (DMT5), the all-in-one FX and CFD trading platform.","-1793883644":"Trade FX and CFDs on a customisable, easy-to-use trading platform.","-1246992539":"Binary Bot","-563774117":"Dashboard","-773544978":"Home","-1003047246":"My Apps","-2024365882":"Explore","-2038666662":"About Us","-832198631":"Credit/Debit Cards","-1787820992":"Platforms","-837532140":"Trade Types","-663862998":"Markets","-947407631":"Synthetic Indices","-362324454":"Commodities","-821418875":"Trader","-1309011360":"Open positions","-679102561":"Contract Details","-430118939":"Complaints policy","-744999940":"Deriv account","-568280383":"Deriv Gaming","-1936757551":"Deriv Synthetic","-1546927062":"Deriv Financial","-895331276":"Complete your proof of address","-782679300":"Complete your proof of identity","-1019903756":"Synthetic","-328128497":"Financial","-1416247163":"Financial STP","-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","-700966800":"Dutch Index","-1863229260":"Australian Index","-946336619":"Wall Street Index","-945048133":"French Index","-1093355162":"UK Index","-932734062":"Hong Kong Index","-2030624691":"Japanese Index","-354063409":"US Index","-232855849":"Euro 50 Index","-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","-1800672151":"GBP Index","-563812039":"Volatility 10 (1s) Index","-764111252":"Volatility 100 (1s) Index","-1374309449":"Volatility 200 (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","-841561409":"Put Spread","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1072358250":"Letters, spaces, periods, hyphens, apostrophes only","-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","-681468758":"Your web browser is out of date and may affect your trading experience. Please <0>update your browser.","-577777971":"You have reached the rate limit of requests per second. Please try later.","-206321775":"Fiat","-522767852":"DEMO","-433761292":"Switching to default account.","-1590712279":"Gaming","-16448469":"Virtual","-540474806":"Your Options account is scheduled to be closed","-618539786":"Your account is scheduled to be closed","-945275490":"Withdraw all funds from your Options account.","-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.","-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.","-1738575826":"Please switch to your real account or create one to access the cashier.","-1204063440":"Set my account currency","-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.","-67021419":"Our cashier is temporarily down due to system maintenance. You can access the cashier in a few minutes when the maintenance is complete.","-219846634":"Let’s verify your ID","-367759751":"Your account has not been verified","-1175685940":"Please contact us via live chat to enable withdrawals.","-1852207910":"MT5 withdrawal disabled","-764323310":"MT5 withdrawals have been disabled on your account. Please check your email for more details.","-1585069798":"Please click the following link to complete your Appropriateness Test.","-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.","-156611181":"Please complete the financial assessment in your account settings to unlock it.","-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.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-904632610":"Reset your balance","-470018967":"Reset balance","-1435762703":"Please Verify your identity","-1164554246":"You submitted expired identification documents","-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.","-529038107":"Install","-87149410":"Install the DTrader web app","-1287141934":"Find out more","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-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}}","-557093123":"Virtual events based bets in the UK and the Isle of Man are offered by Deriv (MX) Ltd, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, licensed and regulated in Great Britain by the Gambling Commission under <0>account no. 39172 and by the Gambling Supervision Commission in the Isle of Man (<1>view licence).","-181484419":"Responsible trading","-650505513":"Full screen","-1823504435":"View notifications","-1954045170":"No currency assigned","-583559763":"Menu","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-2094580348":"Thanks for verifying your email","-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","-288996254":"Unavailable","-1815192976":"real CFDs","-1730264949":"Total assets in your Deriv, DMT5 and Deriv X demo accounts.","-1623652567":"Total assets in your Deriv and DMT5 demo accounts.","-1706681135":"Total assets in your Deriv, DMT5 and Deriv X real accounts.","-1650369677":"Total assets in your Deriv and DMT5 real accounts.","-697343663":"Deriv X Accounts","-1740162250":"Manage account","-1277942366":"Total assets","-1310654342":"As part of the changes in our product line-up, we will be closing Gaming accounts belonging to our UK clients.","-626152766":"As part of the changes in our product line-up, we are closing Options accounts belonging to our clients in Europe.","-490100162":"As part of the changes in our product line-up, we will be closing accounts belonging to our Isle of Man clients.","-1208958060":"You can no longer trade digital options on any of our platforms. You also can’t deposit funds into your account.<0/><1/>Any open positions on digital options have been closed with full payout.","-2050417883":"You’ll lose access to your Gaming account when it gets closed, so make sure to withdraw your funds as soon as possible.","-1950045402":"Withdraw all your funds","-168971942":"What this means for you","-905560792":"OK, I understand","-1197864059":"Create free demo account","-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","-2058256518":"We can't change your account currency as you've either made a deposit into your {{currency}} account or created a real account on DMT5.","-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.","-786091297":"Trade on demo","-228099749":"Please verify your identity and address","-1041852744":"We're processing your personal information","-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","-1557011219":"Add a real Deriv Options account","-259386249":"Add a Deriv Synthetic account","-241733171":"Add a Deriv Financial account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1016775979":"Choose an account","-1369294608":"Already signed up?","-617844567":"An account with your details already exists.","-292363402":"Trading statistics report","-1656860130":"Options trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","-28080461":"Would like to check your statement first? <0>Check Statement","-611059051":"Please specify your preferred interval reality check in minutes:","-1876891031":"Currency","-11615110":"Turnover","-1370419052":"Profit / Loss","-437320982":"Session duration:","-3959715":"Current time:","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-437918412":"No currency assigned to your account","-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","-1917706589":"Your Deriv account is unlinked from {{social_identity_provider}}. Use your email and password for future log in.","-2017825013":"Got it","-505449293":"Enter a new password for your Deriv account.","-184713104":"Earn fixed payouts with options, or trade multipliers to amplify your gains with limited risk.","-1571775875":"Our flagship options and multipliers trading platform.","-1107320163":"Automate your trading, no coding needed.","-196712726":"Trade on DBot","-820028470":"Options & Multipliers","-895091803":"If you're looking for CFDs","-1447215751":"Not sure? Try this","-2338797":"<0>Maximise returns by <0>risking more than you put in.","-1682067341":"Earn <0>fixed returns by <0>risking only what you put in.","-1184094048":"Let us introduce you to trading on Deriv.","-49067150":"Not sure?","-1125272179":"This complaints policy, which may change from time to time, applies to your account registered with Deriv Investments (Europe) Limited.","-974989415":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC and Deriv (FX) Ltd.","-1639808836":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Independent Betting Adjudication Service (IBAS) by filling the IBAS adjudication form. Please note that IBAS only deals with disputes that result from transactions.","-1505742956":"<0/><1/>You can also refer your dispute to the Malta Gaming Authority via the <2>Player Support Unit.","-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","-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.","-236548954":"Contract Update Error","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-337314714":"days","-442488432":"day","-175369516":"Welcome to Deriv X","-1667427537":"Run Deriv X on your browser or download the mobile app","-305915794":"Run MT5 from your browser or download the MT5 app for your devices","-1330036364":"Trade forex, commodities and cryptocurrencies at high leverage.","-811331160":"Trade CFDs on forex, stocks, stock indices, synthetic indices, and commodities with leverage.","-513103225":"Transaction time","-2066666313":"Credit/Debit","-2140412463":"Buy price","-1981004241":"Sell time","-600828210":"Indicative profit/loss","-706219815":"Indicative price","-339236213":"Multiplier","-1358367903":"Stake","-700280380":"Deal cancel. fee","-3423966":"Take profit<0 />Stop loss","-2082644096":"Current stake","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-1790089996":"NEW!","-590018519":"Contract Purchased","-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.","-405439829":"Sorry, you can't view this contract because it doesn't belong to this account.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1977959027":"hours","-1603581277":"minutes","-1658230823":"Contract was sold for <0 />.","-1905867404":"Contract cancelled","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-1691868913":"Touch/No Touch","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-330437517":"Matches/Differs","-657360193":"Over/Under","-558031309":"High Tick/Low Tick","-1237186896":"Only Ups/Only Downs","-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.","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-555592125":"Unfortunately, trading options isn't possible in your country","-1571816573":"Sorry, trading is unavailable in your current location.","-1455298001":"Now","-529846150":"Seconds","-256210543":"Trading is unavailable at this time.","-1050725091":"DTrader is not available for this account","-402175529":"History","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-880722426":"Market is closed","-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","-439389714":"We’re working on it","-732351158":"Stay on DTrader","-1530772005":"This market is not yet available on DTrader, but it is on SmartTrader.","-138538812":"Log in or create a free account to place a trade.","-2036388794":"Create free account","-590131162":"Stay on {{website_domain}}","-1444663817":"Go to Binary.com","-1526466612":"You’ve selected a trade type that is currently unsupported, but we’re working on it.","-1043795232":"Recent positions","-1572796316":"Purchase price:","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-153220091":"{{display_value}} Tick","-802374032":"Hour","-2039780875":"Purchase confirmation","-1672470173":"Require confirmation before purchasing a contract","-1342661765":"Lock contract purchase buttons","-939764287":"Charts","-1738427539":"Purchase","-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\".","-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.","-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.","-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.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-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).","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-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.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-705681870":"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.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1666375348":"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.","-2024955268":"If you select “Up”, you will earn a profit by closing your position when the market price is higher than the entry spot.","-1598433845":"If you select “Down”, you will earn a profit by closing your position when the market price is lower than the entry spot.","-1092777202":"The Stop-out level on the chart indicates the price at which your potential loss equals your entire stake. When the market price reaches this level, your position will be closed automatically. This ensures that your loss does not exceed the amount you paid to purchase the contract.","-885323297":"These are optional parameters for each position that you open:","-584696680":"If you select “Take profit” and specify an amount that you’d like to earn, your position will be closed automatically when your profit is more than or equals to this amount. Your profit may be more than the amount you entered depending on the market price at closing.","-178096090":"“Take profit” cannot be updated. You may update it only when “Deal cancellation” expires.","-206909651":"The entry spot is the market price when your contract is processed by our servers.","-673424733":"Demo account","-1066565281":"Server maintenance starts at 06:00 GMT every Sunday and may last up to 2 hours. Service may be disrupted during this time.","-1481390656":"Server maintenance starting 01:00 GMT every Sunday. This process may take up to 2 hours to complete. Service may be disrupted during this time.","-1199152768":"Please explore our other platforms.","-498346912":"Explore DBot","-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","-464262734":"Manage {{platform}} Real {{account_title}} account password","-1928229820":"Reset Deriv X investor password","-1917043724":"Reset DMT5 investor password","-1087845020":"main","-1950683866":"investor","-149836494":"Your transaction reference number is {{transaction_id}}","-1382749084":"Go back to trading","-538215347":"Net deposits","-280147477":"All transactions","-137444201":"Buy","-360975483":"You've made no transactions of this type during this period.","-1231210510":"Tick","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-8998663":"Digit: {{last_digit}} ","-1435392215":"About deal cancellation","-1280319153":"Cancel your trade anytime within a chosen time-frame. Triggered automatically if your trade reaches the stop out level within the chosen time-frame.","-471757681":"Risk management","-976258774":"Not set","-843831637":"Stop loss","-771725194":"Deal Cancellation","-945156951":"Are you sure you want to purchase this contract?","-45873457":"NEW","-127118348":"Choose {{contract_type}}","-543478618":"Try checking your spelling or use a different term","-338707425":"Minimum duration is 1 day","-1003473648":"Duration: {{duration}} day","-741395299":"{{value}}","-1527492178":"Purchase Locked","-725375562":"You can lock/unlock the purchase button from the Settings menu","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-629549519":"Commission <0/>","-2131859340":"Stop out <0/>","-1686280757":"<0>{{commission_percentage}}% of (<1/> * {{multiplier}})","-1043117679":"When your current loss equals or exceeds {{stop_out_percentage}}% of your stake, your contract will be closed at the nearest available asset price.","-477998532":"Your contract is closed automatically when your loss is more than or equals to this amount.","-243332856":"Last digit stats for latest 1000 ticks for {{ underlying_name }}","-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","-2004386410":"Win","-1072292603":"No Change","-1631669591":"string","-1768939692":"number","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-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","-151151292":"Asians","-1048378719":"Reset Call/Reset Put","-1282312809":"High/Low Ticks","-2035315547":"Low barrier","-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","-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","-2012970860":"This block gives you information about your last contract.","-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.","-1291088318":"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","-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","-1460794449":"This block gives you a list of candles within a selected time interval.","-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.","-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.","-625636913":"Amount must be a positive number.","-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","-908772734":"This block evaluates a statement and will perform an action only when the statement is true.","-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","-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\".","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1219239717":"One or more mandatory blocks are missing from your workspace. Please add the required block(s) and then try again.","-250761331":"One or more mandatory blocks are disabled in your workspace. Please enable the required block(s) and then try again.","-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","-2046396241":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open DBot.","-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. ","-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","-70949308":"4. Come back to DBot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","-311389920":"In this example, the open prices from a list of candles are assigned to a variable called \"cl\".","-1634242212":"Used within a function block, this block returns a value when a specific condition is true.","-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.","-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.","-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.","-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","-1723202824":"Please grant permission to view and manage Google Drive folders created with Binary Bot","-210953314":"There was an error retrieving data from Google Drive","-1521930919":"Select a Binary Bot strategy","-845301264":"There was an error listing files from Google Drive","-1452908801":"There was an error retrieving files from Google Drive","-232617824":"There was an error processing your request"} \ No newline at end of file +{"0":"","1014140":"You may also call <0>+447723580049 to place your complaint.","3215342":"Last 30 days","7100308":"Hour must be between 0 and 23.","11539750":"set {{ variable }} to Relative Strength Index Array {{ dummy }}","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","21035405":"Please tell us why you’re leaving. (Select up to {{ allowed_reasons }} reasons.)","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","27582767":"{{amount}} {{currency}}","39720204":"AUD Index","41737927":"Thank you","44877997":"Residence permit","45453595":"Binary Coin","45941470":"Where would you like to start?","46523711":"Your proof of identity is verified","49963458":"Choose an option","54185751":"Less than $100,000","55340304":"Keep your current contract?","55916349":"All","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","65185694":"Fiat onramp","65982042":"Total","66519591":"Investor password","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","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","76916358":"You have reached the withdrawal limit.<0/>Please upload your proof of identity and address to lift the limit to continue your withdrawal.","81450871":"We couldn’t find that page","83202647":"Collapse Block","85343079":"Financial assessment","85389154":"Steps required to continue verification on your mobile","89062902":"Trade on MT5","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.","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","108916570":"Duration: {{duration}} days","111215238":"Move away from direct light","111718006":"End date","111931529":"Max. total stake over 7 days","113378532":"ETH/USD","113884303":"German Index","115032488":"Buy price and P/L","116005488":"Indicators","117318539":"Password should have lower and uppercase English letters with numbers.","119261701":"Prediction:","119446122":"Contract type is not selected","120340777":"Complete your personal details","123454801":"{{withdraw_amount}} {{currency_symbol}}","124723298":"Upload a proof of address to verify your address","125443840":"6. Restart last trade on error","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.","130567238":"THEN","133523018":"Please go to the Deposit page to get an address.","133536621":"and","139454343":"Confirm my limits","141626595":"Make sure your device has a working camera","142050447":"set {{ variable }} to create text with","142390699":"Connected to your mobile","143970826":"Payment problems?","145146541":"Our accounts and services are unavailable for the Jersey postal code","145736466":"Take a selfie","150486954":"Token name","151344063":"The exit spot is the market price when the contract is closed.","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 }}","160863687":"Camera not detected","162727973":"Please enter a valid payment agent ID.","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?","170185684":"Ignore","171307423":"Recovery","171579918":"Go to Self-exclusion","171638706":"Variables","173991459":"We’re sending your request to the blockchain.","176319758":"Max. total stake over 30 days","176654019":"$100,000 - $250,000","178413314":"First name should be between 2 and 50 characters.","179083332":"Date","181881956":"Contract Type: {{ contract_type }}","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","191372501":"Accumulation of Income/Savings","192436105":"No need for symbols, digits, or uppercase letters","192573933":"Verification complete","195972178":"Get character","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.","201091938":"30 days","203271702":"Try again","204797764":"Transfer to client","204863103":"Exit time","206010672":"Delete {{ delete_count }} Blocks","207824122":"Please withdraw your funds from the following Deriv account(s):","210385770":"If you have an active account, please log in to continue. Otherwise, please sign up.","211224838":"Investment","211461880":"Common names and surnames are easy to guess","211847965":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.","216650710":"You are using a demo account","217504255":"Financial assessment submitted successfully","220014242":"Upload a selfie from your computer","220186645":"Text Is empty","220232017":"demo CFDs","222468543":"The amount that you may add to your stake if you’re losing a trade.","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 }}","228079844":"Click here to upload","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. ","236642001":"Journal","240247367":"Profit table","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 }}","247418415":"Gaming trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","248565468":"Check your {{ identifier_title }} account email and click the link in the email to proceed.","248909149":"Send a secure link to your phone","251445658":"Dark theme","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","258310842":"Workspace","258448370":"MT5","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.","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.","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.","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.","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","277469417":"Exclude time cannot be for more than five years.","278684544":"get sub-list from # from end","282319001":"Check your image","282564053":"Next, we'll need your proof of address.","284527272":"antimode","284772879":"Contract","287934290":"Are you sure you want to cancel this transaction?","289898640":"TERMS OF USE","292491635":"If you select “Stop loss” and specify an amount to limit your loss, your position will be closed automatically when your loss is more than or equals to this amount. Your loss may be more than the amount you entered depending on the market price at closing.","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","294305803":"Manage account settings","294335229":"Sell at market price","300762428":"Swiss Index","303959005":"Sell Price:","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.","312142140":"Save new limits?","312300092":"Trims the spaces within a given string or text.","312318161":"Your contract will be closed automatically at the next available asset price when the duration exceeds <0>.","313298169":"Our cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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?","317601768":"Themes","318865860":"close","318984807":"This block repeats the instructions contained within for a specific number of times.","323179846":"The time interval for each candle can be set from one minute to one day.","323209316":"Select a Deriv Bot Strategy","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","333456603":"Withdrawal limits","334942497":"Buy time","335040248":"About us","335046131":"Switch to crypto account?","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.","345320063":"Invalid timestamp","347039138":"Iterate (2)","348951052":"Your cashier is currently locked","349047911":"Over","351744408":"Tests if a given text string is empty","353731490":"Job done","354945172":"Submit document","357477280":"No face found","358266012":"Warning!","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","363576009":"- High price: the highest price","363738790":"Browser","363990763":"Sell price:","368160866":"in list","371151609":"Last used","372291654":"Exclude time must be after today.","372645383":"True if the market direction matches the selection","373021397":"random","373495360":"This block returns the entire SMA line, containing a list of all values for a given period.","373919918":"Your account will be opened with Deriv Investments (Europe) Limited, regulated by the Malta Financial Services Authority (MFSA), and will be subject to the laws of Malta.","374537470":"No results for \"{{text}}\"","375714803":"Deal Cancellation Error","379730150":"US Tech Index","380606668":"tick","380694312":"Maximum consecutive trades","382781785":"Your contract is closed automatically when your profit is more than or equals to this amount.","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.","386502387":"Bot is not running","389923099":"Zoom in","390890891":"Last quarter","391915203":"Hedging","392582370":"Fall Equals","396418990":"Offline","396961806":"We do not support Polygon (Matic), to deposit please use only Ethereum ({{token}}).","399387585":"Please check your email for details. If you have any questions, please go to our <0>Help Centre.","401339495":"Verify address","403456289":"The formula for SMA is:","404743411":"Total deposits","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.","420072489":"CFD trading frequency","422055502":"From","426031496":"Stop","427134581":"Try using another file type.","427617266":"Bitcoin","428709688":"Your preferred time interval between each report:","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","437138731":"Create a new {{platform}} password","437453244":"Choose your preferred cryptocurrency","437485293":"File type not supported","437904704":"Maximum open positions","438067535":"Over $500,000","442520703":"$250,001 - $500,000","444484637":"Logic negation","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.","452662014":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and DMT5 accounts and between your Deriv fiat and Deriv X accounts.","453409608":"Your profit is the percentage change in market price times your stake and the multiplier of your choice.","454593402":"2. Please upload one of the following:","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.","459817765":"Pending","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","466369320":"Your gross profit is the percentage change in market price times your stake and the multiplier chosen here.","473154195":"Settings","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\".","479420576":"Tertiary","481276888":"Goes Outside","482028864":"Your contract will be closed automatically at the next available asset price when the duration exceeds {{ days }} {{ unit }} {{ timestamp }}.","483591040":"Delete all {{ delete_count }} blocks?","487239607":"Converts a given True or False to the opposite value","488150742":"Resend email","489768502":"Change investor password","491603904":"Unsupported browser","492198410":"Make sure everything is clear","496680295":"Choose country","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","502041595":"This block gives you a specific candle from within the selected time interval.","503137339":"Payout limit","505793554":"last letter","510815408":"Letters, numbers, spaces, hyphens only","514031715":"list {{ input_list }} is empty","514948272":"Copy link","518955798":"7. Run Once at Start","520136698":"Boom 500 Index","521872670":"item","521947594":"Launch DTrader in seconds the next time you want to trade.","522283618":"Digital options trading experience","522703281":"divisible by","523123321":"- 10 to the power of a given number","527329988":"This is a top-100 common password","529056539":"Options","530953413":"Authorised applications","531114081":"3. Contract Type","531675669":"Euro","535041346":"Max. total stake per day","538228086":"Close-Low","541650045":"Manage {{platform}} password","542305026":"You must also submit a proof of identity.","545476424":"Total withdrawals","546534357":"If you select “Deal cancellation”, you’ll be able to cancel your trade within a chosen time frame should the market move against your favour. We’ll charge a small fee for this, but we’ll return your stake amount without profit or loss. If the stop-out amount is reached before the deal cancellation expires, your position will be cancelled automatically and we’ll return your stake amount without profit or loss. While “Deal cancellation” is active:","549348623":"Send only Tether Omni to this deposit address.<0 /><0 />Sending Tether ERC20 to this address will result in the loss of your deposit.","549479175":"Deriv Multipliers","551414637":"Click the <0>Change password button to change your DMT5 password.","551569133":"Learn more about trading limits","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.","556095366":"We'll process your details within a few minutes and notify its status via email.","556264438":"Time interval","559224320":"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users.","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.","567755787":"Tax Identification Number is required.","569057236":"In which country was your document issued?","569923414":"If you have a DMT5 real account, log in to close any open positions.","571921777":"Funds protection level","573173477":"Is candle {{ input_candle }} black?","577215477":"count with {{ variable }} from {{ start_number }} to {{ end_number }} by {{ step_size }}","577779861":"Withdrawal","577883523":"4. Awards and orders","578099923":"Get a faster mobile trading experience with the <0>Deriv GO app!","578522309":"These trading limits and self-exclusion help you control the amount of money and time you spend on Deriv.com and exercise <0>responsible trading.","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","584025813":"We’ll charge a 1% transfer fee for transfers in different currencies between your Deriv fiat and DMT5 accounts.","584028307":"Allow equals","587577425":"Secure my account","589609985":"Linked with {{identifier_title}}","593459109":"Try a different currency","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","606240547":"- Natural log","606877840":"Back to today","607807243":"Get candle","609650241":"Infinite loop detected","611020126":"View address on Blockchain","613877038":"Chart","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.","617400581":"Client login ID","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}}?","623192233":"Please complete the <0>Appropriateness Test to access your cashier.","623542160":"Exponential Moving Average Array (EMAA)","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.","629145209":"In case if the \"AND\" operation is selected, the block returns \"True\" only if both given values are \"True\"","632398049":"This block assigns a null value to an item or statement.","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.","636219628":"<0>c.If no settlement opportunity can be found, the complaint will proceed to the determination phase to be handled by the DRC.","637939279":"By default, all Deriv.com clients are retail clients but anyone can request to be treated as a professional client.","639382772":"Please upload supported file type.","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.","642546661":"Upload back of license from your computer","643014039":"The trade length of your purchased contract.","644150241":"The number of contracts you have won since you last cleared your stats.","645016681":"Trading frequency in other financial instruments","645902266":"EUR/NZD","647192851":"Contract will be sold at the prevailing market price when the request is received by our servers. This price may differ from the indicated price.","647745382":"Input List {{ input_list }}","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)","651284052":"Low Tick","651684094":"Notify","652298946":"Date of birth","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.","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.","657444253":"Sorry, account opening is unavailable in your region.","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","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\".","672008428":"ZEC/USD","673915530":"Jurisdiction and choice of law","676159329":"Could not switch to default account.","677918431":"Market: {{ input_market }} > {{ input_submarket }} > {{ input_symbol }}","678517581":"Units","680334348":"This block was required to correctly convert your old strategy.","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","687212287":"Amount is a required field.","689137215":"Purchase price","691956534":"<0>You have added a {{currency}} account.<0> Make a deposit now to start trading.","693396140":"Deal cancellation (expired)","694532392":"Deriv X Password","696870196":"- Open time: the opening time stamp","697630556":"This market is presently closed.","698748892":"Let’s try that again","699159918":"1. Filing complaints","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","706727320":"Binary options trading frequency","706755289":"This block performs trigonometric functions.","710123510":"repeat {{ while_or_until }} {{ boolean }}","711029377":"Please confirm the transaction details in order to complete the withdrawal:","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","715841616":"Please enter a valid phone number (e.g. +15417541234).","716428965":"(Closed)","718504300":"Postal/ZIP code","718710899":"We can't change your account currency as you've either made a deposit into your {{currency}} account or created a real account on DMT5 or Deriv X.","718724141":"Expires in","720293140":"Log out","720519019":"Reset my password","721011817":"- Raise the first number to the power of the second number","723961296":"Manage password","724203548":"You can send your complaint to the <0>European Commission's Online Dispute Resolution (ODR) platform. This is not applicable to UK clients.","728042840":"To continue trading with us, please confirm where you live.","728824018":"Spanish Index","730473724":"This block performs the \"AND\" or the \"OR\" logic operation with the given values.","731382582":"BNB/USD","734390964":"Insufficient balance","734881840":"false","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","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","756152377":"SMA places equal weight to the entire distribution of values.","758003269":"make list from text","759783233":"For more information and assistance to counselling and support services, please visit <0>begambleaware.org.","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.","762185380":"<0>Multiply returns by <0>risking only what you put in.","762871622":"{{remaining_time}}s","763019867":"Your Gaming account is scheduled to be closed","764366329":"Trading limits","764540515":"Stopping the bot is risky","766317539":"Language","770171141":"Go to {{hostname}}","772632060":"Do not send any other currency to the following address. Otherwise, you'll lose funds.","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)","776085955":"Strategies","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","790168327":"Deriv X accounts","792739000":"We’ll review your document and notify you of its status within 1 to 2 hours.","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","796845736":"To continue trading with us, you need to send us a copy of any one of these government-issued photo ID documents via <0>LiveChat.","797007873":"Follow these steps to recover camera access:","797500286":"negative","800521289":"Your personal details are incomplete","802436811":"View transaction details","802438383":"New proof of address is needed","802556390":"seconds","802989607":"Drag your XML file here","803500173":"Initial stake","807499069":"Financial commission complaints procedure","808323704":"You can also use \"Compare\" and \"Logic operation\" blocks to make test variables.","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","823186089":"A block that can contain text.","824797920":"Is list empty?","826511719":"USD/SEK","827688195":"Disable Block","828219890":"then","828602451":"Returns the list of tick values in string format","830164967":"Last name","830711697":"Driving license","830993327":"No current transactions available","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).","835058671":"Total buy price","835350845":"Add another word or two. Uncommon words are better.","837066896":"Your document is being reviewed, please check back in 1-3 days.","839618971":"ADDRESS","839805709":"To smoothly verify you, we need a better photo","841434703":"Disable stack","841543189":"View transaction on Blockchain","845213721":"Logout","845304111":"Slow EMA Period {{ input_number }}","848172194":"Trade major (standard and micro-lots) and minor currency pairs, stocks, stock indices, commodities, and cryptocurrencies with high leverage.","849805216":"Choose an agent","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.","852583045":"Tick List String","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","860319618":"Tourism","862283602":"Phone number*","863328851":"Proof of identity","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","869611522":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts.","869823595":"Function","872549975":"You have {{number}} transfers remaining for today.","872817404":"Entry Spot Time","872957901":"Dark (Coming soon to DBot)","873166343":"1. 'Log' displays a regular message.","874461655":"Scan the QR code with your phone","874484887":"Take profit must be a positive number.","875532284":"Restart process on a different device","876086855":"Complete the financial assessment form","876292912":"Exit","877354242":"Trade on DTrader","879014472":"Reached maximum number of decimals","887328652":"As a precaution, we have disabled trading, deposits and withdrawals for this account. If you have any questions, please go to our <0>Help Centre.","888274063":"Town/City","890299833":"Go to Reports","891097078":"USD Index","891337947":"Select country","892341141":"Your trading statistics since: {{date_time}}","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.","895890867":"Your account will be opened with Deriv (SVG) LLC, and will be subject to the laws of Saint Vincent and the Grenadines.","897687778":"Your Deriv password is for logging in to your Deriv account.","898457777":"You have added a Deriv Financial account.","900111088":"You can <0>set a new currency before you deposit for the first time or create a real DMT5 or Deriv X account.","902045490":"3 minutes","903429103":"In candles list read {{ candle_property }} # from end {{ input_number }}","904696726":"API token","905134118":"Payout:","905227556":"Strong passwords contain at least 8 characters, combine uppercase and lowercase letters and numbers.","912344358":"I hereby confirm that the tax information I provided is true and complete. I will also inform Deriv Investments (Europe) Limited about any changes to this information.","915735109":"Back to {{platform_name}}","918447723":"Real","930346117":"Capitalization doesn't help very much","930546422":"Touch","933126306":"Enter some text here","933193610":"Only letters, periods, hyphens, apostrophes, and spaces, please.","934835052":"Potential profit","934932936":"PERSONAL","936766426":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit.","937237342":"Strategy name cannot be empty","937831119":"Last name*","937992258":"Table","938988777":"High barrier","940950724":"This trade type is currently not supported on {{website_name}}. Please go to <0>Binary.com for details.","943535887":"Please close your positions in the following Deriv MT5 account(s):","944499219":"Max. open positions","945532698":"Contract sold","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.","946944859":"Hit the button below and we'll send you an email with a link. Click that link to verify your withdrawal request.","947046137":"Your withdrawal will be processed within 24 hours","947363256":"Create list","947758334":"City is required","949859957":"Submit","952655566":"Payment agent","956448295":"Cut-off image detected","957182756":"Trigonometric functions","958430760":"In/Out","959031082":"set {{ variable }} to MACD Array {{ dropdown }} {{ dummy }}","960201789":"3. Sell conditions","961692401":"Bot","964780376":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your identity.","966457287":"set {{ variable }} to Exponential Moving Average {{ dummy }}","968576099":"Up/Down","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","975950139":"Country of Residence","977929335":"Go to my account settings","981138557":"Redirect","982402892":"First line of address","982829181":"Barriers","988361781":"You have no trading activity yet.","988934465":"When prompted, you must enable camera access to continue","992294492":"Your postal code is invalid","995563717":"not {{ boolean }}","999008199":"text","1001160515":"Sell","1003876411":"Should start with letter or number and may contain a hyphen, period and slash.","1004127734":"Send email","1006458411":"Errors","1006664890":"Silent","1008240921":"Choose a payment agent and contact them for instructions.","1009032439":"All time","1010198306":"This block creates a list with strings and numbers.","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","1022934784":"1 minute","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}}.","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.","1030021206":"change {{ variable }} by {{ number }}","1031602624":"We've sent a secure link to %{number}","1031731167":"Pound Sterling","1032173180":"Deriv","1032907147":"AUD/NZD","1035506236":"Choose a new password","1035893169":"Delete","1036867749":"The desired duration, stake, prediction, and/or barrier(s) for the contract is defined here.","1038575777":"Change password","1039755542":"Use a few words, avoid common phrases","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","1044230481":"This is an Ethereum ({{token}}) only address, please do not use {{prohibited_token}}.","1045242890":"Proof of identity verification failed","1045704971":"Jump 150 Index","1045782294":"Click the <0>Change password button to change your Deriv password.","1047389068":"Food Services","1048947317":"Sorry, this app is unavailable in {{clients_country}}.","1049384824":"Rise","1050844889":"Reports","1052137359":"Family name*","1052779010":"You are on your demo account","1053153674":"Jump 50 Index","1053159279":"Level of education","1055313820":"No document detected","1056381071":"Return to trade","1056821534":"Are you sure?","1057216772":"text {{ input_text }} is empty","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.","1061308507":"Purchase {{ contract_type }}","1062536855":"Equals","1065498209":"Iterate (1)","1069347258":"The verification link you used is invalid or expired. Please request for a new one.","1069576070":"Purchase lock","1070624871":"Check proof of address document verification status","1076006913":"Profit/loss on the last {{item_count}} contracts","1077515534":"Date to","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","1088138125":"Tick {{current_tick}} - ","1090191592":"Total assets in your Deriv and Deriv X demo accounts.","1090410775":"Contract Lost","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.","1100870148":"To learn more about account limits and how they apply, please go to the <0>Help Centre.","1101560682":"stack","1101712085":"Buy Price","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.","1106261041":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC, Deriv (FX) Ltd, and Deriv (V) Ltd.","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.","1113292761":"Less than 8MB","1113808050":"Total assets in your Deriv and Deriv X real accounts.","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","1125090693":"Must be a number","1126934455":"Length of token name must be between 2 and 32 characters.","1127149819":"Make sure§","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.","1129296176":"IMPORTANT NOTICE TO RECEIVE YOUR FUNDS","1129842439":"Please enter a take profit amount.","1130744117":"We shall try to resolve your complaint within 10 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.","1130791706":"N","1133651559":"Live chat","1134879544":"Example of a document with glare","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.","1147625645":"Please proceed to withdraw all your funds from your account before <0>30 November 2021.","1151964318":"both sides","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).","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","1163836811":"Real Estate","1164773983":"Take profit and/or stop loss are not available while deal cancellation is active.","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.","1173187492":"Deactivate account","1174542625":"- Find the chat ID property in the response, and copy the value of the id property","1174748431":"Payment channel","1176926166":"Experience with trading other financial instruments","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","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с.","1188980408":"5 minutes","1189368976":"Please complete your personal details before you verify your identity.","1191644656":"Predict the market direction and select either “Up” or “Down” to open a position. We will charge a commission when you open a position.","1192708099":"Duration unit","1195393249":"Notify {{ notification_type }} with sound: {{ notification_sound }} {{ input_message }}","1196006480":"Profit threshold","1196458986":"We do not charge a transfer fee for transfers in the same currency between your Deriv fiat and DMT5 accounts and between your Deriv fiat and Deriv X accounts.","1197326289":"You are no longer able to trade digital options on any of our platforms. Also, you can’t make deposits into your Options account.","1198368641":"Relative Strength Index (RSI)","1199281499":"Last Digits List","1201533528":"Contracts won","1201773643":"numeric","1203297580":"This block sends a message to a Telegram channel.","1204202371":"No open positions","1204223111":"In this example, the open prices from a list of candles are assigned to a variable called \"candle_list\".","1204919083":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC.","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","1218546232":"What is Fiat onramp?","1219844088":"do %1","1222096166":"Deposit via bank wire, credit card, and e-wallet","1222521778":"Making deposits and withdrawals is difficult.","1222544232":"We’ve sent you an email","1226027513":"Transfer from","1227074958":"random fraction","1227240509":"Trim spaces","1228208126":"Please Verify your address","1228534821":"Some currencies may not be supported by payment agents in your country.","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","1234292259":"Source of wealth","1237330017":"Pensioner","1238311538":"Admin","1239940690":"Restarts the bot when an error is encountered.","1240027773":"Please Log in","1243064300":"Local","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.","1250495155":"Token copied!","1254565203":"set {{ variable }} to create list with","1255909792":"last","1255963623":"To date/time {{ input_timestamp }} {{ dummy }}","1258097139":"What could we do to improve?","1258198117":"positive","1259598687":"GBP/JPY","1260259925":"Phone is not in a proper format.","1264096613":"Search for a given string","1265704976":"","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","1274819385":"3. Complaints and Disputes","1275474387":"Quick","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","1290525720":"Example: ","1291887623":"Digital options trading frequency","1292891860":"Notify Telegram","1293660048":"Max. total loss per day","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","1301668579":"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 DMT5 Financial.","1302691457":"Occupation","1303016265":"Yes","1303530014":"We’re processing your withdrawal.","1304083330":"copy","1304620236":"Enable camera","1304788377":"<0/><1/>If your complaint relates to our data processing practices, you can submit a formal complaint to the <2>Information and Data Protection Commissioner (Malta) on their website or make a complaint to any supervisory authority within the European Union.","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","1311799109":"We do not support Binance Smart Chain tokens to deposit, please use only Ethereum ({{token}}).","1313167179":"Please log in","1313302450":"The bot will stop trading if your total loss exceeds this amount.","1314671947":"DMT5 Accounts","1319217849":"Check your mobile","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.","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. ","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","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","1340314141":"Go to SmartTrader","1341840346":"View in Journal","1346204508":"Take profit","1346339408":"Managers","1347071802":"{{minutePast}}m ago","1348009461":"Please close your positions in the following Deriv X account(s):","1349289354":"Great, that's everything we need","1349295677":"in text {{ input_text }} get substring from {{ position1 }} {{ index1 }} to {{ position2 }} {{ index2 }}","1351152200":"Welcome to Deriv MT5 (DMT5) dashboard","1353197182":"Please select","1355250245":"{{ calculation }} of list {{ input_list }}","1356574493":"Returns a specific portion of a given string of text.","1356607862":"Deriv password","1357129681":"{{num_day}} days {{num_hour}} hours {{num_minute}} minutes","1357213116":"Identity card","1358543466":"Not available","1359424217":"You have sold this contract at <0 />","1359701341":"You’ll not be charged a transfer fee for transfers in the same currency between your Deriv fiat and DMT5 accounts.","1360929368":"Add a Deriv account","1362578283":"High","1363060668":"Your trading statistics since:","1363675688":"Duration is a required field.","1366244749":"Limits","1367023655":"To ensure your loss does not exceed your stake, your contract will be closed automatically when your loss equals to <0/>.","1367488817":"4. Restart trading conditions","1367990698":"Volatility 10 Index","1369709538":"Our terms of use","1371193412":"Cancel","1371641641":"Open the link on your mobile","1374627690":"Max. account balance","1376329801":"Last 60 days","1378419333":"Ether","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","1389197139":"Import error","1390792283":"Trade parameters","1390897177":"To deposit cryptocurrency, switch your account.","1391174838":"Potential payout:","1392966771":"Mrs","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","1397046738":"View in statement","1397628594":"Insufficient funds","1399620764":"We're legally obliged to ask for your financial information.","1400637999":"(All fields are required)","1400732866":"View from camera","1400962248":"High-Close","1402208292":"Change text case","1403376207":"Update my details","1405584799":"with interval: {{ candle_interval_type }}","1407191858":"DTrader","1408844944":"Click the plus icon to extend the functionality of this block.","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","1415006332":"get sub-list from first","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","1417914636":"Login ID","1418115525":"This block repeats instructions as long as a given condition is true.","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","1424741507":"See more","1424779296":"If you've recently used bots but don't see them in this list, it may be because you:","1429669335":"Indicators on the chart tab are for indicative purposes only and may vary slightly from the ones on the DBot workspace.","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.","1434382099":"Displays a dialog window with a message","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","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","1443544547":"Synthetic indices in the EU are offered by Deriv (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licensed and regulated by the Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) and by the Revenue Commissioners for clients in Ireland (<2>licence no. 1010285).","1445592224":"You accidentally gave us another email address (Usually a work or a personal one instead of the one you meant).","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.","1453362009":"Deriv Accounts","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.","1457603571":"No notifications","1461323093":"Display messages in the developer’s console.","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}}.","1465919899":"Pick an end date","1466430429":"Should be between {{min_value}} and {{max_value}}","1466900145":"Doe","1467421920":"with interval: %1","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","1469150826":"Take Profit","1469764234":"Cashier Error","1469814942":"- Division","1470319695":"Returns either True or False","1471070549":"Can contract be sold?","1471741480":"Severe error","1475513172":"Size","1475523125":"View the trading history.","1476301886":"Similar to SMA, this block gives you the entire SMA line containing a list of all values for a given period.","1481977420":"Please help us verify your withdrawal request.","1484336612":"This block is used to either terminate or continue a loop, and can be placed anywhere within a loop block.","1490583127":"DBot isn't quite ready for real accounts","1491392301":"<0>Sold for: {{sold_for}}","1496810530":"GBP/AUD","1499074768":"Add a real Deriv Multipliers account","1499080621":"Tried to perform an invalid operation.","1502039206":"Over {{barrier}}","1502325741":"Your password cannot be the same as your email address.","1503618738":"- Deal reference ID: the reference ID of the contract","1505898522":"Download stack","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.","1515034599":"This complaints policy, which may change from time to time, applies to your account registered with Deriv (MX) Ltd, having its registered office address at First Floor, Millennium House, Victoria Road, Douglas, Isle of Man, IM2 4RW, licensed and regulated respectively by (1) the Gambling Supervision Commission in the Isle of Man (current <0>licence issued on 31 August 2017) and (2) the Gambling Commission in the UK (<1>licence no. 39172).","1516676261":"Deposit","1517503814":"Drop file or click here to upload","1519336051":"Try a different phone number","1520332426":"Net annual income","1524636363":"Authentication failed","1527251898":"Unsuccessful","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","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.","1539108340":"EUR Index","1540585098":"Decline","1541969455":"Both","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.","1548765374":"Verification of document number failed","1549098835":"Total withdrawn","1552080191":"Excluded from Deriv.com until","1552918367":"Send only {{currency}} ({{currency_symbol}}) to this address.","1557682012":"Account Settings","1558972889":"set {{ variable }} to Simple Moving Average {{ dummy }}","1560302445":"Copied","1562374116":"Students","1565336048":"Contract Won","1566037033":"Bought: {{longcode}} (ID: {{transaction_id}})","1567076540":"Only use an address for which you have proof of residence - ","1567586204":"Self-exclusion","1569624004":"Dismiss alert","1570484627":"Ticks list","1572504270":"Rounding operation","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","1579484521":"Trading hub","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","1589640950":"Resale of this contract is not offered.","1589702653":"Proof of address","1594147169":"Please come back in","1594322503":"Sell is available","1596378630":"You have added a real Gaming account.<0/>Make a deposit now to start trading.","1598009247":"<0>a.You may file a complaint with the Financial Commission up to 45 days after the incident.","1598443642":"Transaction hash","1602894348":"Create a password","1604171868":"Please withdraw all your funds as soon as possible.","1604916224":"Absolute","1605292429":"Max. total loss","1612105450":"Get substring","1613633732":"Interval should be between 10-60 minutes","1615897837":"Signal EMA Period {{ input_number }}","1619070150":"You are being redirected to an external website.","1620278321":"Names and surnames by themselves are easy to guess","1620346110":"Set currency","1622662457":"Date from","1623706874":"Use this block when you want to use multipliers as your trade type.","1630372516":"Try our Fiat onramp","1630417358":"Please go to your account settings and complete your personal details to enable withdrawals.","1634594289":"Select language","1634903642":"Only your face can be in the selfie","1634969163":"Change currency","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.","1644656085":"Buy and sell contracts, renew expired purchases, and top up demo accounts.","1644908559":"Digit code is required.","1647186767":"The bot encountered an error while running.","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!","1653159197":"Payment agent withdrawal","1653180917":"We cannot verify you without using your camera","1654365787":"Unknown","1654496508":"Our system will finish any DBot trades that are running, and DBot will not place any new trades.","1654721858":"Upload anyway","1655627840":"UPPER CASE","1656155124":"Resend in <0 /> seconds","1656970322":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (Europe) Limited, having its registered office address at W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, licensed and regulated by the Malta Gaming Authority in Malta for gambling products only, <0>licence no. MGA/B2C/102/2000, and for clients residing in the UK by the UK Gambling Commission (account number 39495).","1658954996":"Plant and Machine Operators and Assemblers","1659074761":"Reset Put","1665272539":"Remember: You cannot log in to your account until the selected date.","1665738338":"Balance","1665756261":"Go to live chat","1667395210":"Your proof of identity was submitted successfully","1670016002":"Multiplier: {{ multiplier }}","1670426231":"End Time","1671232191":"You have set the following limits:","1677027187":"Forex","1677990284":"My apps","1682409128":"Untitled Strategy","1682636566":"Resend email in","1684419981":"What's this?","1686800117":"{{error_msg}}","1689103988":"Second Since Epoch","1689738742":"Gold Index","1690703448":"You may transfer between your Deriv fiat, cryptocurrency, DMT5, and Deriv X accounts.","1691335819":"To continue trading with us, please confirm who you are.","1691765860":"- Negation","1693614409":"Start time","1694331708":"You can switch between CFDs, digital options, and multipliers at any time.","1695807119":"Could not load Google Drive blocks","1700233813":"Transfer from {{selected_value}} is not allowed, Please choose another account from dropdown","1708413635":"For your {{currency_name}} ({{currency}}) account","1709859601":"Exit Spot Time","1711013665":"Anticipated account turnover","1711676335":"square root","1711929663":"Your funds have been transferred","1712357617":"Invalid email address.","1715011380":"Jump 25 Index","1715630945":"Returns the total profit in string format","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","1722401148":"The amount that you may add to your stake after each successful trade.","1723398114":"A recent utility bill (e.g. electricity, water, gas, phone or internet)","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.","1724696797":"You are limited to one fiat account only.","1726472773":"Function with no return value","1728121741":"Transactions.csv","1728183781":"About Tether","1729145421":"Risk warning","1731747596":"The block(s) highlighted in red are missing input values. Please update them and click \"Run bot\".","1732891201":"Sell price","1734185104":"Balance: %1","1734264460":"Disclaimer","1736292549":"Update postal code","1737352280":"Bot.init is not called","1738681493":"Remove your glasses, if necessary","1739384082":"Unemployed","1740371444":"Underlying market is not selected","1740843997":"Buy cryptocurrencies in an instant. Enjoy easy, quick, and secure exchanges using your local payment methods.","1743448290":"Payment agents","1743902050":"Complete your financial assessment","1745523557":"- Square root","1746273643":"Moving Average Convergence Divergence","1747501260":"Sell conditions","1747523625":"Go back","1747674345":"Please use `.` as a decimal separator for fractional numbers.","1747682136":"Contract was cancelled.","1748754976":"Run","1750065391":"Login time:","1753226544":"remove","1753975551":"Upload passport photo page","1756678453":"break out","1761038852":"Let’s continue with providing proofs of address and identity.","1761762171":"Restart last trade on error (bot ignores the unsuccessful trade): {{ checkbox }}","1762707297":"Phone number","1766993323":"Only letters, numbers, and underscores are allowed.","1767726621":"Choose agent","1768861315":"Minute","1768918213":"Only letters, space, hyphen, period, and apostrophe are allowed.","1769068935":"Choose any of these exchanges to buy cryptocurrencies:","1771037549":"Add a Deriv real account","1771592738":"Conditional block","1772532756":"Create and edit","1777847421":"This is a very common password","1778815073":"{{website_name}} is not affiliated with any Payment Agent. Customers deal with Payment Agents at their sole risk. Customers are advised to check the credentials of Payment Agents, and check the accuracy of any information about Payments Agents (on Deriv or elsewhere) before transferring funds.","1778893716":"Click here","1779519903":"Should be a valid number.","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","1787135187":"Postal/ZIP code is required","1788966083":"01-07-1999","1789497185":"Make sure your passport details are clear to read, with no blur or glare","1791432284":"Search for country","1791971912":"Recent","1793913365":"To deposit money, please switch to your {{currency_symbol}} account.","1794815502":"Download your transaction history.","1801093206":"Get candle list","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","1806503050":"Please note that some payment methods might not be available in your country.","1808058682":"Blocks are loaded successfully","1808393236":"Login","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.","1810691615":"When you set your limits, they will be aggregated across all your account types in DTrader, DBot, and SmartTrader. For example, the losses made on all three platforms will add up and be counted towards the loss limit you set.","1811972349":"Market","1811973475":"Returns a specific character from a given string","1812582011":"Connecting to server","1813700208":"Boom 300 Index","1813958354":"Remove comment","1815034361":"alphabetic","1815995250":"Buying contract","1817154864":"This block gives you a random number from within a set range.","1820242322":"e.g. United States","1820332333":"Top up","1824193700":"This block gives you the last digit of the latest tick value.","1827607208":"File not uploaded.","1832974109":"SmartTrader","1833481689":"Unlock","1837762008":"Please submit your proof of identity and proof of address to verify your account in your account settings to access the cashier.","1838639373":"Resources","1839497304":"If you have a DMT5 or Deriv X real account, go to your <0>DMT5 or <1>Deriv X dashboard to withdraw your funds","1840865068":"set {{ variable }} to Simple Moving Average Array {{ dummy }}","1841788070":"Palladium/USD","1841996888":"Daily loss limit","1842266423":"back","1842862156":"Welcome to your Deriv X dashboard","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.","1844033601":"Self-exclusion on the website only applies to your Deriv.com account and does not include other companies or websites.","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","1849484058":"Any unsaved changes will be lost.","1850031313":"- Low: the lowest price","1850132581":"Country not found","1850659345":"- Payout: the payout of the contract","1850663784":"Submit proofs","1851052337":"Place of birth is required.","1851776924":"upper","1851951013":"Please switch to your demo account to run your DBot.","1854480511":"Cashier is locked","1855566768":"List item position","1858251701":"minute","1863053247":"Please upload your identity document.","1866811212":"Deposit in your local currency via an authorised, independent payment agent in your country.","1866836018":"<0/><1/>If your complaint relates to our data processing practices, you can submit a formal complaint to your local supervisory authority.","1867217564":"Index must be a positive integer","1867783237":"High-to-Close","1869315006":"See how we protect your funds to unlock the cashier.","1869787212":"Even","1869851061":"Passwords","1870933427":"Crypto","1871196637":"True if the result of the last trade matches the selection","1871664426":"Note","1873838570":"Please verify your address","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.","1875505777":"If you have a Deriv real account, go to <0>Reports to close or sell any open positions.","1876325183":"Minutes","1877225775":"Your proof of address is verified","1877410120":"What you need to do now","1877832150":"# from end","1879042430":"Appropriateness Test, WARNING:","1879412976":"Profit amount: <0>{{profit}}","1880029566":"Australian Dollar","1880097605":"prompt for {{ string_or_number }} with message {{ input_text }}","1880875522":"Create \"get %1\"","1881018702":"hour","1881587673":"Total stake since you last cleared your stats.","1882825238":"Restart trading conditions","1883531976":"Clerks","1885708031":"#","1887852176":"Site is being updated","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.","1894667135":"Please verify your proof of address","1898670234":"{{formatted_opening_time}} (GMT) on {{opening_day}},<0> {{opening_date}}.","1903437648":"Blurry photo detected","1905032541":"We're now ready to verify your identity","1906639368":"If this is the first time you try to create a password, or you have forgotten your password, please reset it.","1907884620":"Add a real Deriv Gaming account","1908239019":"Make sure all of the document is in the photo","1909647105":"TRX/USD","1909769048":"median","1913777654":"Switch account","1914014145":"Today","1914270645":"Default Candle Interval: {{ candle_interval_type }}","1917523456":"This block sends a message to a Telegram channel. You will need to create your own Telegram bot to use this block.","1917804780":"You will lose access to your Options account when it gets closed, so be sure to withdraw all your funds. (If you have a CFDs account, you can also transfer the funds from your Options account to your CFDs account.)","1918796823":"Please enter a stop loss amount.","1919030163":"Tips to take a good selfie","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","1923431535":"“Stop loss” is deactivated and will only be available when “Deal cancellation” expires.","1924365090":"Maybe later","1924765698":"Place of birth*","1925090823":"Sorry, trading is unavailable in {{clients_country}}.","1927244779":"Use only the following special characters: . , ' : ; ( ) @ # / -","1928930389":"GBP/NOK","1929309951":"Employment Status","1930899934":"Tether","1931659123":"Run on every tick","1934302388":"We couldn’t verify your personal details with our records, to enable deposit, withdrawals and trading, you need to upload proof of your address.","1939902659":"Signal","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","1948092185":"GBP/CAD","1949719666":"Here are the possible reasons:","1950413928":"Submit identity documents","1952580688":"Submit passport photo page","1955219734":"Town/City*","1957759876":"Upload identity document","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","1971898712":"Add or manage account","1973536221":"You have no open positions yet.","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.","1983387308":"Preview","1983544897":"P.O. Box is not accepted in address","1983676099":"Please check your email for details.","1984700244":"Request an input","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.","1986498784":"BTC/LTC","1987080350":"Demo","1987447369":"Your cashier is locked","1988153223":"Email address","1988302483":"Take profit:","1988601220":"Duration value","1990735316":"Rise Equals","1991448657":"Don't know your tax identification number? Click <0>here to learn more.","1991524207":"Jump 100 Index","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.","1998199587":"You can also exclude yourself entirely for a specified duration. If, at any time, you decide to trade again, you must then contact our Customer Support to remove this self-exclusion. There will be a 24-hour-cooling-off period before you can resume trading. ","2001222130":"Check your spam or junk folder. If it's not there, try resending the email.","2004792696":"If you are a UK resident, to self-exclude from all online gambling companies licensed in Great Britain, go to <0>www.gamstop.co.uk.","2007028410":"market, trade type, contract type","2007092908":"Trade with leverage and low spreads for better returns on successful trades.","2008809853":"Please proceed to withdraw your funds before 30 November 2021.","2009620100":"DBot will not proceed with any new trades. Any ongoing trades will be completed by our system. Any unsaved changes will be lost.<0>Note: Please check your statement to view completed transactions.","2009770416":"Address:","2010031213":"Trade on Deriv X","2010759971":"Uploads successful","2010866561":"Returns the total profit/loss","2011609940":"Please input number greater than 0","2011808755":"Purchase Time","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.","2021037737":"Please update your details to continue.","2023659183":"Student","2023762268":"I prefer another trading website.","2024107855":"{{payment_agent}} agent contact details:","2025339348":"Move away from direct light — no glare","2027625329":"Simple Moving Average Array (SMAA)","2027696535":"Tax information","2028163119":"EOS/USD","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}}","2037481040":"Choose a way to fund your account","2037665157":"Expand All Blocks","2037906477":"get sub-list from #","2042050260":"- Purchase price: the purchase price (stake) of the contract","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","2048110615":"Email address*","2048134463":"File size exceeded.","2050080992":"Tron","2050170533":"Tick list","2051558666":"View transaction history","2054500647":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC and Deriv (V) Ltd.","2054889300":"Create \"%1\"","2055317803":"Copy the link to your mobile browser","2057082550":"Accept our updated <0>terms and conditions","2057419639":"Exit Spot","2062912059":"function {{ function_name }} {{ function_params }}","2063655921":"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.","2063812316":"Text Statement","2063890788":"Cancelled","2070002739":"Don’t accept","2070752475":"Regulatory Information","2074235904":"Last name is required.","2074497711":"The Telegram notification could not be sent","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}}","2081088445":"When you set your limits or self-exclusion, they will be aggregated across all your account types in DTrader and DBot. For example, the losses made on both platforms will add up and be counted towards the loss limit you set.","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.","2084925123":"Use our fiat onramp services to buy and deposit cryptocurrency into your Deriv account.","2085387371":"Must be numbers, letters, and special characters . , ' -","2085602195":"- Entry value: the value of the first tick of the contract","2086742952":"You have added a real Options account.<0/>Make a deposit now to start trading.","2086792088":"Both barriers should be relative or absolute","2088735355":"Your session and login limits","2089299875":"Total assets in your Deriv real accounts.","2091671594":"Status","2093167705":"You can only make deposits. Please contact us via live chat for more information.","2093675079":"- Close: the closing price","2096014107":"Apply","2096456845":"Date of birth*","2097170986":"About Tether (Omni)","2097381850":"Calculates Simple Moving Average line from a list with a period","2100713124":"account","2101972779":"This is the same as the above example, using a tick list.","2102115846":"Financial products in the EU are offered by Deriv Investments (Europe) Limited, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>licence no. IS/70156).","2102572780":"Length of digit code must be 6 characters.","2104115663":"Last login","2104397115":"Please go to your account settings and complete your personal details to enable deposits and withdrawals.","2107381257":"Scheduled cashier system maintenance","2109208876":"Manage {{platform}} Demo {{account_title}} account password","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","2115007481":"Total assets in your Deriv demo accounts.","2115223095":"Loss","2117073379":"Our cryptocurrency cashier is temporarily down due to system maintenance. You can access the Cashier in a few minutes when the maintenance is complete.","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","2118315870":"Where do you live?","2119449126":"Example output of the below example will be:","2120617758":"Set up your trade","2121227568":"NEO/USD","2127564856":"Withdrawals are locked","2131963005":"Please withdraw your funds from the following Deriv MT5 account(s):","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.","2133778783":"DMT5 Synthetic","2135563258":"Forex trading frequency","2136246996":"Selfie uploaded","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","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","2146892766":"Binary options trading experience","-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","-1497654315":"Our accounts and services are unavailable for the Jersey postal code.","-755626951":"Complete your address details","-1024240099":"Address","-584911871":"Select wallet currency","-1461267236":"Please choose your currency","-1352330125":"CURRENCY","-1027595143":"Less than $25,000","-40491332":"$25,000 - $50,000","-1139806939":"$50,001 - $100,000","-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","-654781670":"Primary","-1717373258":"Secondary","-996132458":"Construction","-915003867":"Health","-1430012453":"Information & Communications Technology","-987824916":"Science & Engineering","-146630682":"Social & Cultural","-761306973":"Manufacturing","-739367071":"Employed","-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","-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","-2137323480":"Company Ownership","-1590574533":"Divorce Settlement","-1667683002":"Inheritance","-1237843731":"Investment Income","-777506574":"Sale of Property","-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.","-1356204661":"This Tax Identification Number (TIN) is invalid. You may continue with account creation, but to facilitate future payment processes, valid tax information will be required.","-1823540512":"Personal details","-1227878799":"Speculative","-1174064217":"Mr","-855506127":"Ms","-204765990":"Terms of use","-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","-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","-883103549":"Account deactivated","-1466827732":"Self exclusion","-1498206510":"Account limits","-241588481":"Login history","-966136867":"Connected apps","-213009361":"Two-factor authentication","-1214803297":"Dashboard-only path","-526636259":"Error 404","-1030759620":"Government Officers","-612752984":"These are default limits that we apply to your accounts.","-1598263601":"To learn more about trading limits and how they apply, please go to the <0>Help Centre.","-1411635770":"Learn more about account limits","-1340125291":"Done","-1786659798":"Trading limits - Item","-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.","-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.","-1359847094":"Trading limits - Maximum daily turnover","-1502578110":"Your account is fully authenticated and your withdrawal limits have been lifted.","-854023608":"To increase limit please verify your identity","-1500958859":"Verify","-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.","-190838815":"We need this for verification. If the information you provide is fake or inaccurate, you won’t be able to deposit and withdraw.","-223216785":"Second line of address*","-594456225":"Second line of address","-1315410953":"State/Province","-1940457555":"Postal/ZIP Code*","-1964954030":"Postal/ZIP Code","-1541554430":"Next","-71696502":"Previous","-231863107":"No","-786372363":"Learn more about API token","-55560916":"To access our mobile apps and other third-party apps, you'll first need to generate an API token.","-198329198":"API Token","-763859447":"Click here to copy token","-605778668":"Never","-32386760":"Name","-1628008897":"Token","-1238499897":"Last Used","-1049724201":"Scope","-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.","-1052849013":"View account activity such as settings, limits, balance sheets, trade purchase history, and more.","-1076138910":"Trade","-1666909852":"Payments","-147694447":"Withdraw to payment agents, and transfer funds between accounts.","-1927980053":"Open accounts, manage settings, manage token usage, and more.","-488597603":"Trading information","-1117963487":"Name your token and click on 'Create' to generate your token.","-2005211699":"Create","-2115275974":"CFDs","-988523882":"DMT5","-359091713":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} or Deriv X account.","-460645791":"You are limited to one fiat account. You won’t be able to change your account currency if you have already made your first deposit or created a real {{dmt5_label}} account.","-1146960797":"Fiat currencies","-1959484303":"Cryptocurrencies","-561724665":"You are limited to one fiat currency only","-1319246342":"Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum, an open software platform where anyone can build and deploy decentralised applications.","-2087317410":"Oops, something went wrong.","-1437206131":"JPEG JPG PNG PDF GIF","-820458471":"1 - 6 months old","-155705811":"A clear colour photo or scanned image","-587941902":"Issued under your name with your current address","-438669274":"JPEG JPG PNG PDF GIF","-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","-601903492":"Forex trading experience","-1012699451":"CFD trading experience","-1437017790":"Financial information","-39038029":"Trading experience","-1044962593":"Upload Document","-164448351":"Show less","-1361653502":"Show more","-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","-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.","-1120954663":"First name*","-1659980292":"First name","-1857534296":"John","-1485480657":"Other details","-1315571766":"Place of birth","-2040322967":"Citizenship","-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","-1451334536":"Continue trading","-1525879032":"Your documents for proof of address is expired. 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.","-2004327866":"Please select a valid country of document issuance.","-1664159494":"Country","-1552821634":"Try submitting an ID document instead.","-1176889260":"Please select a document type.","-1515286538":"Please enter your document number. ","-1785463422":"Verify your identity","-78467788":"Please select the document type and enter the ID number.","-1117345066":"Choose the document type","-651192353":"Sample:","-1263033978":"Please ensure all your personal details are the same as in your chosen document. If you wish to update your personal details, go to account settings.","-937707753":"Go Back","-1926456107":"The ID you submitted is expired.","-555047589":"It looks like your identity document has expired. Please try again with a valid document.","-841187054":"Try Again","-2097808873":"We were unable to verify your ID with the details you provided. ","-228284848":"We were unable to verify your ID with the details you provided.","-1443800801":"Your ID number was submitted successfully","-1391934478":"Your ID is verified. You will also need to submit proof of your address.","-118547687":"ID verification passed","-749870311":"Please contact us via <0>live chat.","-200989771":"Go to personal details","-1358357943":"Please check and update your postal code before submitting proof of identity.","-1401994581":"Your personal details are missing","-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.","-1909155192":"We were unable to verify your document automatically. We will try to verify your document manually. Please check back in 1-3 days.","-182918740":"Your proof of identity submission failed because:","-337979330":"We could not verify your proof of identity","-706528101":"As a precaution, we have disabled trading, deposits and withdrawals for this account. If you have any questions, please go to our Help Center.<0>Help Centre.","-856213726":"You must also submit a proof of address.","-1389323399":"You should enter {{min_number}}-{{max_number}} characters.","-1313806160":"Please request a new password and check your email for the new token.","-329713179":"Ok","-1598167506":"Success","-1077809489":"You have a new {{platform}} password to log in to your {{platform}} accounts on the web and mobile apps.","-2068479232":"{{platform}} password","-1332137219":"Strong passwords contain at least 8 characters that include uppercase and lowercase letters, numbers, and symbols.","-1597186502":"Reset {{platform}} password","-848721396":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. If you live in the United Kingdom, Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request. If you live in the Isle of Man, Customer Support can only remove or weaken your trading limits after your trading limit period has expired.","-469096390":"These trading limits are optional, and you can strengthen them at any time. If you don’t wish to set a specific limit, leave the field blank. Customer Support can only remove or weaken your trading limits after 24 hours of receiving the request.","-42808954":"You can also exclude yourself entirely for a specified duration. This can only be removed once your self-exclusion has expired. If you wish to continue trading once your self-exclusion period expires, you must contact Customer Support by calling <0>+447723580049 to lift this self-exclusion. Requests by chat or email shall not be entertained. There will be a 24-hour cooling-off period before you can resume trading.","-135354733":"These self-exclusion limits help you control the amount of money and time you spend trading on DTrader, DBot, and SmartTrader. The limits you set here will help you exercise <0>responsible trading.","-1702324712":"These limits are optional, and you can adjust them at any time. You decide how much and how long you’d like to trade. If you don’t wish to set a specific limit, leave the field blank.","-1819875658":"You can also exclude yourself entirely for a specified duration. Once the self-exclusion period has ended, you can either extend it further or resume trading immediately. If you wish to reduce or remove the self-exclusion period, contact our <0>Customer Support.","-1031814119":"About trading limits and self-exclusion","-183468698":"Trading limits and self-exclusion","-933963283":"No, review my limits","-1759860126":"Yes, log me out immediately","-839094775":"Back","-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).","-2121421686":"To self-exclude from all online gambling companies licensed in Great Britain, go to <0>www.gamstop.co.uk.","-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","-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.","-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).","-1964320730":"Please click on the link in the email to change your <0>Deriv X password.","-976364600":"Please click on the link in the email to change your DMT5 password.","-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.","-679569665":"Your account will be opened with Deriv (MX) Ltd, regulated by the UK Gaming Commission (UKGC), and will be subject to the laws of the Isle of Man.","-1970096931":"Your account will be opened with Deriv (Europe) Limited, regulated by the Malta Gaming Authority, and will be subject to the laws of Malta.","-1300699650":"Your account will be opened with Deriv Capital International Ltd and will be subject to the laws of Samoa.","-1125193491":"Add account","-2068229627":"I am not a PEP, and I have not been a PEP in the last 12 months.","-428335668":"You will need to set a password to complete the process.","-1850792730":"Unlink from {{identifier_title}}","-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","-2145244263":"This field is required","-70342544":"We’re legally obliged to ask for your financial information.","-1894668798":"Other trading instruments experience","-1026468600":"Other trading instruments frequency","-179005984":"Save","-789291456":"Tax residence*","-1651554702":"Only alphabet is allowed","-1458676679":"You should enter 2-50 characters.","-1166111912":"Use only the following special characters: {{ permitted_characters }}","-884768257":"You should enter 0-35 characters.","-2113555886":"Only letters, numbers, space, and hyphen are allowed.","-874280157":"This Tax Identification Number (TIN) is invalid. You may continue using it, but to facilitate future payment processes, valid tax information will be required.","-1037916704":"Miss","-1113902570":"Details","-634958629":"We use the information you give us only for verification purposes. All information is kept confidential.","-731992635":"Title*","-352888977":"Title","-136976514":"Country of residence*","-945104751":"We’re legally obliged to ask for your tax information.","-1702919018":"Second line of address (optional)","-1124948631":"Professional Client","-1463348492":"I would like to be treated as a professional client.","-1958764604":"Email preference","-2121071263":"Check this box to receive updates via email.","-2068064150":"Get updates about Deriv products, services and events.","-1558679249":"Please make sure your information is correct or it may affect your trading experience.","-862399107":"We’re sorry to see you leave. Your account is now deactivated.","-1822545742":"Ether Classic","-1334641066":"Litecoin","-1214036543":"US Dollar","-1782590355":"No currency has been set for this account","-536187647":"Confirm revoke access?","-1357606534":"Permission","-570222048":"Revoke access","-2116332353":"Please close your positions in the following Deriv account(s):","-2048005267":"{{number_of_positions}} position(s)","-1923892687":"Please withdraw your funds from the following Deriv X account(s):","-684271315":"OK","-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.","-401778324":"I’m deactivating my account for other reasons.","-9323953":"Remaining characters: {{remaining_characters}}","-1248180182":"Deactivate account?","-136868676":"Deactivating your account will automatically log you out. You can reactivate your account by logging in at any time.","-1318334333":"Deactivate","-1219849101":"Please select at least one reason","-484540402":"An error occurred","-1911549768":"Inaccessible MT5 account(s)","-1869355019":"Action required","-1944396623":"Before you deactivate your account, you’ll need to:","-1427203041":"1. Ensure to close all your positions","-115851087":"If you have a DMT5 or Deriv X real account, log in to close any open positions.","-1191568235":"2. Withdraw your funds","-1323183253":"If you have a Deriv real account, go to <0>Cashier to withdraw your funds.","-72910365":"If you have a DMT5 real account, go to your <0>DMT5 dashboard to withdraw your funds","-249431422":"Continue to account deactivation","-1725454783":"Failed","-506510414":"Date and time","-1708927037":"IP address","-365847515":"Apps you can use with your Deriv login:","-26491905":"You're using your {{identifier_title}} account to log in to your Deriv account. To change your login method into using a username and password, click the <0>Unlink button.","-596920538":"Unlink","-1319725774":"DMT5 Password","-1403020742":"Your DMT5 password is for logging in to your Deriv MT5 accounts on the desktop, web, and mobile apps.","-340060402":"Your Deriv X password is for logging in to your Deriv X accounts on the web and mobile apps.","-872790083":"Click the <0>Change password button to change your Deriv X password.","-412891493":"Disable 2FA","-200487676":"Enable","-1840392236":"That's not the right code. Please try again.","-307075478":"6 digit 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.","-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:","-752939584":"How to set up 2FA for your Deriv account","-1691236701":"Scan the QR code below with your 2FA app. We recommend <0>Authy or <1>Google Authenticator. We do not support <2>Duo Mobile.","-90649785":"Click here to copy key","-206376148":"Key copied!","-650175948":"A recent bank statement or government-issued letter with your name and address.","-2006895756":"1. Address","-716361389":"An accurate and complete address helps to speed up your verification process.","-890084320":"Save and submit","-902076926":"Before uploading your document, please ensure that your personal details are updated to match your proof of identity. This will help to avoid delays during the verification process.","-1517325716":"Deposit via the following payment methods:","-1547606079":"We accept the following cryptocurrencies:","-42592103":"Deposit cryptocurrencies","-639677539":"Buy cryptocurrencies","-1560098002":"Buy cryptocurrencies via fiat onramp","-541870313":"Deposit via payment agents","-72314872":"Deposit in your local currency via peer-to-peer exchange with fellow traders in your country.","-58126117":"Your simple access to crypto. Fast and secure way to exchange and purchase cryptocurrencies. 24/7 live chat support.","-1975494965":"Cashier","-1186807402":"Transfer","-1787304306":"Deriv P2P","-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.","-2021135479":"This field is required.","-1870909526":"Our server cannot retrieve an address.","-582721696":"The current allowed withdraw amount is {{format_min_withdraw_amount}} to {{format_max_withdraw_amount}} {{currency}}","-1957498244":"more","-1684548351":"Switch to crypto account","-197251450":"Don't want to trade in {{currency_code}}? You can open another cryptocurrency account.","-212277385":"You can no longer change your account currency because you've made a deposit into your fiat account or created a real DMT5 or Deriv X account. Please contact us via <0>live chat for clarification.","-1900848111":"This is your {{currency_code}} account.","-749765720":"Your fiat account currency is set to {{currency_code}}.","-803546115":"Manage your accounts ","-1463156905":"Learn more about payment methods","-486580863":"Transfer to","-1995606668":"Amount","-344403983":"Description","-1746825352":"Please confirm the transaction details in order to complete the transfer:","-1272778997":"We've sent you an email.","-89973258":"Resend email in {{seconds}}s","-2024958619":"This is to protect your account from unauthorised withdrawals.","-2061807537":"Something’s not right","-1675848843":"Error","-283017497":"Retry","-1157701227":"You need at least two accounts","-1366788579":"Please create another Deriv, DMT5, or Deriv X account.","-380740368":"Please create another Deriv or DMT5 account.","-417711545":"Create account","-1321645628":"Your cashier is currently locked. Please contact us via live chat to find out how to unlock it.","-60779216":"Withdrawals are temporarily unavailable due to system maintenance. You can make your withdrawals when the maintenance is complete.","-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. ","-1158467524":"Your account is temporarily disabled. Please contact us via live chat to enable deposits and withdrawals again.","-929148387":"Please set your account currency to enable deposits and withdrawals.","-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.","-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.","-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.","-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.","-166472881":"Your <0>personal details are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.","-1037495888":"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 live chat.","-949074612":"Please contact us via live chat.","-127614820":"Unfortunately, you can only make deposits. Please contact us via live chat to enable withdrawals.","-759000391":"We were unable to verify your information automatically. To enable this function, you must complete the following:","-1638172550":"To enable this feature you must complete the following:","-1632668764":"I accept","-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.","-1332236294":"Please verify your identity","-203002433":"Deposit now","-720315013":"You have no funds in your {{currency}} account","-2052373215":"Please make a deposit to use this feature.","-553249337":"Transfers are locked","-705272444":"Upload a proof of identity to verify your identity","-1196994774":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency accounts.","-1611462487":"We’ll charge a 2% transfer fee or {{minimum_fee}} {{currency}}, whichever is higher, for transfers between your Deriv cryptocurrency and DMT5 accounts and between your Deriv cryptocurrency and Deriv X accounts.","-1059419768":"Notes","-1905569336":"You may transfer between your Deriv fiat, cryptocurrency, and DMT5 accounts.","-201770295":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts, up to {{ allowed_mt5 }} transfers between your Deriv and DMT5 accounts, and up to {{ allowed_dxtrade }} transfers between your Deriv and Deriv X accounts.","-1260947881":"Each day, you can make up to {{ allowed_internal }} transfers between your Deriv accounts and up to {{ allowed_mt5 }} transfers between your Deriv and DMT5 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.","-1221972195":"DMT5 accounts","-1344870129":"Deriv accounts","-1156059326":"You have {{number}} transfer remaining for today.","-1593609508":"Transfer between your accounts in Deriv","-464965808":"Transfer limits: <0 /> - <1 />","-1077304626":"Amount ({{currency}})","-1559994981":"Approximate value","-190084602":"Transaction","-811190405":"Time","-2004264970":"Your wallet address should have 25 to 64 characters.","-1707299138":"Your {{currency_symbol}} wallet address","-1179992129":"All payment agents","-922432739":"Please enter a valid client login ID.","-1024241603":"Insufficient balance.","-1979554765":"Please enter a valid description.","-596416199":"By name","-1169636644":"By payment agent ID","-118683067":"Withdrawal limits: <0 />-<1 />","-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.","-344959847":"A payment agent is authorised to process deposits and withdrawals for you if your local payment methods or currencies are not supported on {{website_name}}.","-1232852916":"We’re switching over to your {{currency}} account to view the transaction.","-38063175":"{{account_text}} wallet","-1474202916":"Make a new withdrawal","-460879294":"You're not done yet. To receive the transferred funds, you must contact the payment agent for further instruction. A summary of this transaction has been emailed to you for your records.","-299033842":"Recent transactions","-348296830":"{{transaction_type}} {{currency}}","-1929538515":"{{amount}} {{currency}} on {{submit_date}}","-1534990259":"Transaction hash:","-1612346919":"View all","-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.","-2013448791":"Want to exchange between e-wallet currencies? Try <0>Ewallet.Exchange","-993393818":"Binance Smart Chain","-561858764":"Polygon (Matic)","-410890127":"Ethereum (ERC20)","-1059526741":"Ethereum (ETH)","-1615615253":"We do not support Tron, to deposit please use only Ethereum ({{token}}).","-1831000957":"Please select the network from where your deposit will come from.","-314177745":"Unfortunately, we couldn't get the address since our server was down. Please click Refresh to reload the address or try again later.","-1345040662":"Looking for a way to buy cryptocurrency?","-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","-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.","-113940416":"Current stake:","-1999539705":"Deal cancel. fee:","-447037544":"Buy price:","-1342699195":"Total profit/loss:","-1511825574":"Profit/Loss:","-726626679":"Potential profit/loss:","-338379841":"Indicative price:","-1525144993":"Payout limit:","-1167474366":"Tick ","-555886064":"Won","-529060972":"Lost","-571642000":"Day","-155989831":"Decrement value","-1192773792":"Don't show this again","-1769852749":"N/A","-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.","-1940333322":"DBot is not available for this account","-1210387519":"Go to DMT5 dashboard","-1223145005":"Loss amount: {{profit}}","-1062922595":"Reference ID (buy)","-2068574600":"Reference ID (sell)","-994038153":"Start Time","-1979852400":"Entry Spot","-427802309":"Profit/Loss","-668558002":"Journal.csv","-746652890":"Notifications","-824109891":"System","-507620484":"Unsaved","-764102808":"Google Drive","-1109191651":"Must be a number higher than 0","-1917772100":"Invalid number format","-689786738":"Minimum duration: {{ min }}","-184183432":"Maximum duration: {{ max }}","-1194719174":"The multiplier amount used to increase your stake if you’re losing a trade.","-749186458":"Account switching is disabled while your bot is running. Please stop your bot before switching accounts.","-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.","-597939268":"Keep my contract","-1322453991":"You need to log in to run the bot.","-1483938124":"This strategy is currently not compatible with DBot.","-236548954":"Contract Update Error","-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","-2046396241":"This block is mandatory. Only one copy of this block is allowed. It is added to the canvas by default when you open DBot.","-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","-70949308":"4. Come back to DBot and add the Notify Telegram block to the workspace. Paste the Telegram API token and chat ID into the block fields accordingly.","-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}})","-9461328":"Security and privacy","-418247251":"Download your journal.","-1616649196":"results","-90107030":"No results found","-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","-786915692":"You are connected to Google Drive","-1150107517":"Connect","-1759213415":"Find out how this app handles your data by reviewing Deriv's <0>Privacy policy, which is part of Deriv's <1>Terms and conditions.","-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","-1016171176":"Asset","-621128676":"Trade type","-671128668":"The amount that you pay to enter a trade.","-447853970":"Loss threshold","-410856998":"The bot will stop trading if your total profit exceeds this amount.","-1823621139":"Quick Strategy","-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","-224804428":"Transactions","-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.","-305283152":"Strategy name","-1003476709":"Save as collection","-636521735":"Save strategy","-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","-686334932":"Build a bot from the start menu then hit the run button to run the bot.","-1696412885":"Import","-250192612":"Sort","-1566369363":"Zoom out","-2060170461":"Load","-1200116647":"Click here to start building your DBot.","-1040972299":"Purchase contract","-600546154":"Sell contract (optional)","-985351204":"Trade again","-112876186":"Analysis","-1769584466":"Stats","-1133736197":"Utility","-1682372359":"Text","-907562847":"Lists","-1646497683":"Loops","-251326965":"Miscellaneous","-1285759343":"Search","-1058262694":"Stopping the bot will prevent further trades. Any ongoing trades will be completed by our system.","-1473283434":"Please be aware that some completed transactions may not be displayed in the transaction table if the bot is stopped while placing trades.","-397015538":"You may refer to the statement page for details of all completed transactions.","-1442034178":"Contract bought","-2020280751":"Bot is stopping","-1436403979":"Contract closed","-1711732508":"Reference IDs","-386141434":"(Buy)","-482272687":"(Sell)","-1983189496":"ticks","-694277729":"(High)","-2028564707":"(Low)","-627895223":"Exit spot","-596238067":"Entry/Exit spot","-1717650468":"Online","-1825471709":"A whole new trading experience on a powerful yet easy to use platform.","-215905387":"DBot","-981017278":"Automated trading at your fingertips. No coding needed.","-398198412":"Trade on Deriv MT5 (DMT5), the all-in-one FX and CFD trading platform.","-1793883644":"Trade FX and CFDs on a customisable, easy-to-use trading platform.","-1246992539":"Binary Bot","-821418875":"Trader","-1309011360":"Open positions","-679102561":"Contract Details","-430118939":"Complaints policy","-744999940":"Deriv account","-568280383":"Deriv Gaming","-1936757551":"Deriv Synthetic","-1546927062":"Deriv Financial","-895331276":"Complete your proof of address","-782679300":"Complete your proof of identity","-1019903756":"Synthetic","-328128497":"Financial","-1416247163":"Financial STP","-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","-700966800":"Dutch Index","-1863229260":"Australian Index","-946336619":"Wall Street Index","-945048133":"French Index","-1093355162":"UK Index","-932734062":"Hong Kong Index","-2030624691":"Japanese Index","-354063409":"US Index","-232855849":"Euro 50 Index","-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","-1800672151":"GBP Index","-563812039":"Volatility 10 (1s) Index","-764111252":"Volatility 100 (1s) Index","-1374309449":"Volatility 200 (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","-841561409":"Put Spread","-144803045":"Only numbers and these special characters are allowed: {{permitted_characters}}","-1450516268":"Only letters, numbers, space, hyphen, period, and apostrophe are allowed.","-1072358250":"Letters, spaces, periods, hyphens, apostrophes only","-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","-681468758":"Your web browser is out of date and may affect your trading experience. Please <0>update your browser.","-577777971":"You have reached the rate limit of requests per second. Please try later.","-206321775":"Fiat","-522767852":"DEMO","-433761292":"Switching to default account.","-1590712279":"Gaming","-16448469":"Virtual","-540474806":"Your Options account is scheduled to be closed","-618539786":"Your account is scheduled to be closed","-945275490":"Withdraw all funds from your Options account.","-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.","-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","-1164554246":"You submitted expired identification documents","-219846634":"Let’s verify your ID","-529038107":"Install","-87149410":"Install the DTrader web app","-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.","-1435762703":"Please Verify your identity","-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.","-1125797291":"Password updated.","-157145612":"Please log in with your updated password.","-87177461":"Please go to your account settings and complete your personal details to enable deposits.","-904632610":"Reset your balance","-470018967":"Reset 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.","-67021419":"Our cashier is temporarily down due to system maintenance. You can access the cashier in a few minutes when the maintenance is complete.","-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.","-822888359":"Your withdrawal is locked","-1197701578":"Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.","-2087822170":"You are offline","-1669693571":"Check your connection.","-1998049070":"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.","-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}}","-557093123":"Virtual events based bets in the UK and the Isle of Man are offered by Deriv (MX) Ltd, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, licensed and regulated in Great Britain by the Gambling Commission under <0>account no. 39172 and by the Gambling Supervision Commission in the Isle of Man (<1>view licence).","-181484419":"Responsible trading","-650505513":"Full screen","-1823504435":"View notifications","-1954045170":"No currency assigned","-583559763":"Menu","-1396326507":"Unfortunately, {{website_name}} is not available in your country.","-2094580348":"Thanks for verifying your email","-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","-288996254":"Unavailable","-1815192976":"real CFDs","-1730264949":"Total assets in your Deriv, DMT5 and Deriv X demo accounts.","-1623652567":"Total assets in your Deriv and DMT5 demo accounts.","-1706681135":"Total assets in your Deriv, DMT5 and Deriv X real accounts.","-1650369677":"Total assets in your Deriv and DMT5 real accounts.","-697343663":"Deriv X Accounts","-1740162250":"Manage account","-1277942366":"Total assets","-1310654342":"As part of the changes in our product line-up, we will be closing Gaming accounts belonging to our UK clients.","-626152766":"As part of the changes in our product line-up, we are closing Options accounts belonging to our clients in Europe.","-490100162":"As part of the changes in our product line-up, we will be closing accounts belonging to our Isle of Man clients.","-1208958060":"You can no longer trade digital options on any of our platforms. You also can’t deposit funds into your account.<0/><1/>Any open positions on digital options have been closed with full payout.","-2050417883":"You’ll lose access to your Gaming account when it gets closed, so make sure to withdraw your funds as soon as possible.","-1950045402":"Withdraw all your funds","-168971942":"What this means for you","-905560792":"OK, I understand","-2024365882":"Explore","-1197864059":"Create free demo account","-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","-2058256518":"We can't change your account currency as you've either made a deposit into your {{currency}} account or created a real account on DMT5.","-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.","-786091297":"Trade on demo","-228099749":"Please verify your identity and address","-1041852744":"We're processing your personal information","-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","-1557011219":"Add a real Deriv Options account","-259386249":"Add a Deriv Synthetic account","-241733171":"Add a Deriv Financial account","-1329687645":"Create a cryptocurrency account","-1429178373":"Create a new account","-1016775979":"Choose an account","-1369294608":"Already signed up?","-617844567":"An account with your details already exists.","-292363402":"Trading statistics report","-1656860130":"Options trading can become a real addiction, as can any other activity pushed to its limits. To avoid the danger of such an addiction, we provide a reality-check that gives you a summary of your trades and accounts on a regular basis.","-28080461":"Would like to check your statement first? <0>Check Statement","-611059051":"Please specify your preferred interval reality check in minutes:","-1876891031":"Currency","-11615110":"Turnover","-1370419052":"Profit / Loss","-437320982":"Session duration:","-3959715":"Current time:","-1534648620":"Your password has been changed","-596199727":"We will now redirect you to the login page.","-437918412":"No currency assigned to your account","-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","-1917706589":"Your Deriv account is unlinked from {{social_identity_provider}}. Use your email and password for future log in.","-2017825013":"Got it","-505449293":"Enter a new password for your Deriv account.","-1787820992":"Platforms","-184713104":"Earn fixed payouts with options, or trade multipliers to amplify your gains with limited risk.","-1571775875":"Our flagship options and multipliers trading platform.","-1107320163":"Automate your trading, no coding needed.","-196712726":"Trade on DBot","-820028470":"Options & Multipliers","-895091803":"If you're looking for CFDs","-1447215751":"Not sure? Try this","-2338797":"<0>Maximise returns by <0>risking more than you put in.","-1682067341":"Earn <0>fixed returns by <0>risking only what you put in.","-1184094048":"Let us introduce you to trading on Deriv.","-49067150":"Not sure?","-1125272179":"This complaints policy, which may change from time to time, applies to your account registered with Deriv Investments (Europe) Limited.","-974989415":"This complaints policy, which may change from time to time, applies to your account(s) registered with Deriv (SVG) LLC and Deriv (FX) Ltd.","-1639808836":"If you are not satisfied with the outcome, you can escalate your complaint to the <0>Independent Betting Adjudication Service (IBAS) by filling the IBAS adjudication form. Please note that IBAS only deals with disputes that result from transactions.","-1505742956":"<0/><1/>You can also refer your dispute to the Malta Gaming Authority via the <2>Player Support Unit.","-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","-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.","-1282933308":"Not {{barrier}}","-968190634":"Equals {{barrier}}","-1747377543":"Under {{barrier}}","-337314714":"days","-442488432":"day","-175369516":"Welcome to Deriv X","-1667427537":"Run Deriv X on your browser or download the mobile app","-305915794":"Run MT5 from your browser or download the MT5 app for your devices","-1330036364":"Trade forex, commodities and cryptocurrencies at high leverage.","-811331160":"Trade CFDs on forex, stocks, stock indices, synthetic indices, and commodities with leverage.","-513103225":"Transaction time","-2066666313":"Credit/Debit","-2140412463":"Buy price","-1981004241":"Sell time","-600828210":"Indicative profit/loss","-706219815":"Indicative price","-339236213":"Multiplier","-1358367903":"Stake","-700280380":"Deal cancel. fee","-3423966":"Take profit<0 />Stop loss","-2082644096":"Current stake","-1572548510":"Ups & Downs","-71301554":"Ins & Outs","-952298801":"Look Backs","-763273340":"Digits","-1790089996":"NEW!","-590018519":"Contract Purchased","-405439829":"Sorry, you can't view this contract because it doesn't belong to this account.","-1714959941":"This chart display is not ideal for tick contracts","-1254554534":"Please change the chart duration to tick for a better trading experience.","-1977959027":"hours","-1603581277":"minutes","-1658230823":"Contract was sold for <0 />.","-1905867404":"Contract cancelled","-922253974":"Rise/Fall","-1361254291":"Higher/Lower","-1691868913":"Touch/No Touch","-335816381":"Ends In/Ends Out","-1789807039":"Asian Up/Asian Down","-330437517":"Matches/Differs","-657360193":"Over/Under","-558031309":"High Tick/Low Tick","-1237186896":"Only Ups/Only Downs","-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.","-2092611555":"Sorry, this app is unavailable in your current location.","-1488537825":"If you have an account, log in to continue.","-555592125":"Unfortunately, trading options isn't possible in your country","-1571816573":"Sorry, trading is unavailable in your current location.","-1455298001":"Now","-529846150":"Seconds","-256210543":"Trading is unavailable at this time.","-1050725091":"DTrader is not available for this account","-402175529":"History","-902712434":"Deal cancellation","-988484646":"Deal cancellation (executed)","-444882676":"Deal cancellation (active)","-13423018":"Reference ID","-1551639437":"No history","-1214703885":"You have yet to update either take profit or stop loss","-880722426":"Market is closed","-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","-439389714":"We’re working on it","-732351158":"Stay on DTrader","-1530772005":"This market is not yet available on DTrader, but it is on SmartTrader.","-138538812":"Log in or create a free account to place a trade.","-2036388794":"Create free account","-590131162":"Stay on {{website_domain}}","-1444663817":"Go to Binary.com","-1526466612":"You’ve selected a trade type that is currently unsupported, but we’re working on it.","-1043795232":"Recent positions","-1572796316":"Purchase price:","-130601012":"Please select duration","-232254547":"Custom","-1577570698":"Start date","-1251526905":"Last 7 days","-153220091":"{{display_value}} Tick","-802374032":"Hour","-2039780875":"Purchase confirmation","-1672470173":"Require confirmation before purchasing a contract","-1342661765":"Lock contract purchase buttons","-939764287":"Charts","-1738427539":"Purchase","-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\".","-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.","-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.","-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.","-1281286610":"If you select \"Matches\", you will win the payout if the last digit of the last tick is the same as your prediction.","-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).","-1416078023":"If you select \"Touch\", you win the payout if the market touches the barrier at any time during the contract period.","-1272255095":"If the exit spot is equal to the barrier or the new barrier (if a reset occurs), you don't win the payout.","-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.","-299450697":"If you select \"High Tick\", you win the payout if the selected tick is the highest among the next five ticks.","-705681870":"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.","-420387848":"The high is the highest point ever reached by the market during the contract period.","-1666375348":"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.","-2024955268":"If you select “Up”, you will earn a profit by closing your position when the market price is higher than the entry spot.","-1598433845":"If you select “Down”, you will earn a profit by closing your position when the market price is lower than the entry spot.","-1092777202":"The Stop-out level on the chart indicates the price at which your potential loss equals your entire stake. When the market price reaches this level, your position will be closed automatically. This ensures that your loss does not exceed the amount you paid to purchase the contract.","-885323297":"These are optional parameters for each position that you open:","-584696680":"If you select “Take profit” and specify an amount that you’d like to earn, your position will be closed automatically when your profit is more than or equals to this amount. Your profit may be more than the amount you entered depending on the market price at closing.","-178096090":"“Take profit” cannot be updated. You may update it only when “Deal cancellation” expires.","-206909651":"The entry spot is the market price when your contract is processed by our servers.","-464262734":"Manage {{platform}} Real {{account_title}} account password","-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","-149836494":"Your transaction reference number is {{transaction_id}}","-1382749084":"Go back to trading","-538215347":"Net deposits","-280147477":"All transactions","-137444201":"Buy","-360975483":"You've made no transactions of this type during this period.","-1231210510":"Tick","-1239477911":"second","-1585766960":"min","-1652791614":"mins","-8998663":"Digit: {{last_digit}} ","-1435392215":"About deal cancellation","-1280319153":"Cancel your trade anytime within a chosen time-frame. Triggered automatically if your trade reaches the stop out level within the chosen time-frame.","-471757681":"Risk management","-976258774":"Not set","-843831637":"Stop loss","-771725194":"Deal Cancellation","-945156951":"Are you sure you want to purchase this contract?","-45873457":"NEW","-127118348":"Choose {{contract_type}}","-543478618":"Try checking your spelling or use a different term","-338707425":"Minimum duration is 1 day","-1003473648":"Duration: {{duration}} day","-741395299":"{{value}}","-1527492178":"Purchase Locked","-725375562":"You can lock/unlock the purchase button from the Settings menu","-1513281069":"Barrier 2","-390994177":"Should be between {{min}} and {{max}}","-2055106024":"Toggle between advanced and simple duration settings","-1012793015":"End time","-629549519":"Commission <0/>","-2131859340":"Stop out <0/>","-1686280757":"<0>{{commission_percentage}}% of (<1/> * {{multiplier}})","-1043117679":"When your current loss equals or exceeds {{stop_out_percentage}}% of your stake, your contract will be closed at the nearest available asset price.","-477998532":"Your contract is closed automatically when your loss is more than or equals to this amount.","-243332856":"Last digit stats for latest 1000 ticks for {{ underlying_name }}","-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","-2004386410":"Win","-1072292603":"No Change","-1631669591":"string","-1768939692":"number","-795152863":"green","-1640576332":"blue","-804983649":"yellow","-94281841":"red","-1242470654":"Earned money","-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","-151151292":"Asians","-1048378719":"Reset Call/Reset Put","-1282312809":"High/Low Ticks","-2035315547":"Low barrier","-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","-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","-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.","-1291088318":"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","-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 }}","-1214929127":"Stop loss must be a positive number.","-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","-1821552998":"trim spaces from {{ side }} of {{ input_text }}","-801766026":"right side","-474779821":"Trims spaces","-1219239717":"One or more mandatory blocks are missing from your workspace. Please add the required block(s) and then try again.","-250761331":"One or more mandatory blocks are disabled in your workspace. Please enable the required block(s) and then try again.","-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","-1723202824":"Please grant permission to view and manage Google Drive folders created with Binary Bot","-210953314":"There was an error retrieving data from Google Drive","-1521930919":"Select a Binary Bot strategy","-845301264":"There was an error listing files from Google Drive","-1452908801":"There was an error retrieving files from Google Drive","-232617824":"There was an error processing your request"} \ No newline at end of file diff --git a/packages/translations/scripts/extract-string.js b/packages/translations/scripts/extract-string.js index 3fce0fdaa81b..5bad935e5dbe 100644 --- a/packages/translations/scripts/extract-string.js +++ b/packages/translations/scripts/extract-string.js @@ -33,8 +33,17 @@ const getStringsFromXmlFile = input => { }; const getTranslatableFiles = () => { - const packages_with_translations = ['account', 'cashier', 'bot-web-ui', 'core', 'dashboard', 'trader', 'bot-skeleton']; - const globs = ['**/*.js', '**/*.jsx', '**/xml/*.xml']; + const packages_with_translations = [ + 'account', + // TODO: add appstore package once it's done and merged + // 'appstore', + 'cashier', + 'bot-web-ui', + 'core', + 'trader', + 'bot-skeleton', + ]; + const globs = ['**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx', '**/xml/*.xml']; const file_paths = []; for (let i = 0; i < packages_with_translations.length; i++) { diff --git a/packages/translations/src/translations/ach.json b/packages/translations/src/translations/ach.json index bf0fc30401d1..9805106f68f3 100644 --- a/packages/translations/src/translations/ach.json +++ b/packages/translations/src/translations/ach.json @@ -7,7 +7,6 @@ "11872052": "crwdns120568:0crwdne120568:0", "14365404": "crwdns157260:0{{ message_type }}crwdnd157260:0{{ delay }}crwdne157260:0", "15377251": "crwdns125068:0{{profit}}crwdne125068:0", - "17217397": "crwdns161068:0crwdne161068:0", "17843034": "crwdns160284:0crwdne160284:0", "21035405": "crwdns163608:0{{ allowed_reasons }}crwdne163608:0", "25854018": "crwdns117724:0crwdne117724:0", @@ -22,6 +21,7 @@ "46523711": "crwdns79969:0crwdne79969:0", "49963458": "crwdns168843:0crwdne168843:0", "54185751": "crwdns79971:0crwdne79971:0", + "55340304": "crwdns170440:0crwdne170440:0", "55916349": "crwdns120922:0crwdne120922:0", "58254854": "crwdns120924:0crwdne120924:0", "59169515": "crwdns89180:0crwdne89180:0", @@ -61,7 +61,6 @@ "111931529": "crwdns123570:0crwdne123570:0", "113378532": "crwdns162618:0crwdne162618:0", "113884303": "crwdns79991:0crwdne79991:0", - "113933902": "crwdns163236:0crwdne163236:0", "115032488": "crwdns85861:0crwdne85861:0", "116005488": "crwdns163996:0crwdne163996:0", "117318539": "crwdns125070:0crwdne125070:0", @@ -163,7 +162,6 @@ "270339490": "crwdns89202:0crwdne89202:0", "270610771": "crwdns89204:0crwdne89204:0", "270712176": "crwdns68994:0crwdne68994:0", - "270727821": "crwdns161070:0crwdne161070:0", "270780527": "crwdns160008:0crwdne160008:0", "272179372": "crwdns84835:0crwdne84835:0", "273350342": "crwdns120930:0crwdne120930:0", @@ -197,7 +195,6 @@ "317601768": "crwdns80041:0crwdne80041:0", "318865860": "crwdns156280:0crwdne156280:0", "318984807": "crwdns70426:0crwdne70426:0", - "319538091": "crwdns161072:0crwdne161072:0", "323179846": "crwdns84841:0crwdne84841:0", "323209316": "crwdns69006:0crwdne69006:0", "325662004": "crwdns69008:0crwdne69008:0", @@ -248,7 +245,6 @@ "384303768": "crwdns89224:0crwdne89224:0", "386502387": "crwdns69038:0crwdne69038:0", "389923099": "crwdns69040:0crwdne69040:0", - "390647540": "crwdns80065:0crwdne80065:0", "390890891": "crwdns80067:0crwdne80067:0", "391915203": "crwdns80069:0crwdne80069:0", "392582370": "crwdns69042:0crwdne69042:0", @@ -256,7 +252,6 @@ "396961806": "crwdns168887:0{{token}}crwdne168887:0", "399387585": "crwdns80079:0crwdne80079:0", "401339495": "crwdns80081:0crwdne80081:0", - "402343402": "crwdns163248:0{{platform}}crwdne163248:0", "403456289": "crwdns84855:0crwdne84855:0", "404743411": "crwdns123614:0crwdne123614:0", "406359555": "crwdns70428:0crwdne70428:0", @@ -271,6 +266,7 @@ "427134581": "crwdns156294:0crwdne156294:0", "427617266": "crwdns80085:0crwdne80085:0", "428709688": "crwdns123626:0crwdne123626:0", + "432508385": "crwdns170442:0{{ currency }}crwdnd170442:0{{ take_profit }}crwdne170442:0", "432519573": "crwdns156296:0crwdne156296:0", "433348384": "crwdns80087:0crwdne80087:0", "433616983": "crwdns123630:0crwdne123630:0", @@ -326,7 +322,6 @@ "505793554": "crwdns69076:0crwdne69076:0", "510815408": "crwdns162020:0crwdne162020:0", "514031715": "crwdns156980:0{{ input_list }}crwdne156980:0", - "514776243": "crwdns120936:0{{account_type}}crwdne120936:0", "514948272": "crwdns156314:0crwdne156314:0", "518955798": "crwdns84859:0crwdne84859:0", "520136698": "crwdns158186:0crwdne158186:0", @@ -438,7 +433,6 @@ "659482342": "crwdns167513:0crwdne167513:0", "660481941": "crwdns156992:0crwdne156992:0", "660991534": "crwdns159494:0crwdne159494:0", - "662609119": "crwdns158956:0crwdne158956:0", "665089217": "crwdns169283:0crwdne169283:0", "665777772": "crwdns162626:0crwdne162626:0", "665872465": "crwdns89254:0crwdne89254:0", @@ -590,6 +584,7 @@ "872957901": "crwdns80235:0crwdne80235:0", "873166343": "crwdns117732:0crwdne117732:0", "874461655": "crwdns156364:0crwdne156364:0", + "874484887": "crwdns170444:0crwdne170444:0", "875532284": "crwdns156366:0crwdne156366:0", "876086855": "crwdns160324:0crwdne160324:0", "876292912": "crwdns123710:0crwdne123710:0", @@ -637,7 +632,6 @@ "947046137": "crwdns165817:0crwdne165817:0", "947363256": "crwdns69222:0crwdne69222:0", "947758334": "crwdns123730:0crwdne123730:0", - "948156236": "crwdns120950:0{{type}}crwdne120950:0", "949859957": "crwdns80273:0crwdne80273:0", "952655566": "crwdns160328:0crwdne160328:0", "956448295": "crwdns158692:0crwdne158692:0", @@ -765,7 +759,6 @@ "1129124569": "crwdns89302:0crwdne89302:0", "1129296176": "crwdns160344:0crwdne160344:0", "1129842439": "crwdns89304:0crwdne89304:0", - "1129984312": "crwdns161074:0crwdne161074:0", "1130744117": "crwdns158960:0crwdne158960:0", "1130791706": "crwdns85873:0crwdne85873:0", "1133651559": "crwdns123750:0crwdne123750:0", @@ -878,6 +871,7 @@ "1293660048": "crwdns123788:0crwdne123788:0", "1294756261": "crwdns70460:0crwdne70460:0", "1295284664": "crwdns80439:0crwdne80439:0", + "1296380713": "crwdns170446:0crwdne170446:0", "1299479533": "crwdns69338:0crwdne69338:0", "1301668579": "crwdns124334:0crwdne124334:0", "1302691457": "crwdns80441:0crwdne80441:0", @@ -921,7 +915,6 @@ "1346339408": "crwdns80465:0crwdne80465:0", "1347071802": "crwdns117820:0{{minutePast}}crwdne117820:0", "1348009461": "crwdns165245:0crwdne165245:0", - "1349142948": "crwdns123796:0crwdne123796:0", "1349289354": "crwdns156414:0crwdne156414:0", "1349295677": "crwdns157026:0{{ input_text }}crwdnd157026:0{{ position1 }}crwdnd157026:0{{ index1 }}crwdnd157026:0{{ position2 }}crwdnd157026:0{{ index2 }}crwdne157026:0", "1351152200": "crwdns162060:0crwdne162060:0", @@ -1024,6 +1017,7 @@ "1467421920": "crwdns69402:0%1crwdne69402:0", "1468308734": "crwdns70476:0crwdne70476:0", "1468419186": "crwdns160376:0crwdne160376:0", + "1469150826": "crwdns170448:0crwdne170448:0", "1469764234": "crwdns160378:0crwdne160378:0", "1469814942": "crwdns84955:0crwdne84955:0", "1470319695": "crwdns69404:0crwdne69404:0", @@ -1043,7 +1037,6 @@ "1502325741": "crwdns125086:0crwdne125086:0", "1503618738": "crwdns84959:0crwdne84959:0", "1505898522": "crwdns85881:0crwdne85881:0", - "1506251760": "crwdns161076:0crwdne161076:0", "1509570124": "crwdns117828:0{{buy_value}}crwdne117828:0", "1509678193": "crwdns80541:0crwdne80541:0", "1510075920": "crwdns80543:0crwdne80543:0", @@ -1085,6 +1078,7 @@ "1577480486": "crwdns156448:0crwdne156448:0", "1577527507": "crwdns165637:0crwdne165637:0", "1577612026": "crwdns69446:0crwdne69446:0", + "1579484521": "crwdns170474:0crwdne170474:0", "1580498808": "crwdns156450:0crwdne156450:0", "1584109614": "crwdns69448:0crwdne69448:0", "1584936297": "crwdns70482:0crwdne70482:0", @@ -1107,6 +1101,7 @@ "1620278321": "crwdns157658:0crwdne157658:0", "1620346110": "crwdns80573:0crwdne80573:0", "1622662457": "crwdns80575:0crwdne80575:0", + "1623706874": "crwdns170450:0crwdne170450:0", "1630372516": "crwdns165835:0crwdne165835:0", "1630417358": "crwdns167985:0crwdne167985:0", "1634594289": "crwdns80579:0crwdne80579:0", @@ -1126,6 +1121,7 @@ "1651513020": "crwdns80589:0crwdne80589:0", "1651951220": "crwdns157660:0crwdne157660:0", "1652366857": "crwdns69464:0crwdne69464:0", + "1652968048": "crwdns170452:0crwdne170452:0", "1652976865": "crwdns89342:0crwdne89342:0", "1653136377": "crwdns160170:0crwdne160170:0", "1653159197": "crwdns160388:0crwdne160388:0", @@ -1142,6 +1138,7 @@ "1665738338": "crwdns80597:0crwdne80597:0", "1665756261": "crwdns167987:0crwdne167987:0", "1667395210": "crwdns80599:0crwdne80599:0", + "1670016002": "crwdns170454:0{{ multiplier }}crwdne170454:0", "1670426231": "crwdns80601:0crwdne80601:0", "1671232191": "crwdns123836:0crwdne123836:0", "1677027187": "crwdns80603:0crwdne80603:0", @@ -1183,7 +1180,6 @@ "1734264460": "crwdns160396:0crwdne160396:0", "1736292549": "crwdns160020:0crwdne160020:0", "1737352280": "crwdns69500:0crwdne69500:0", - "1738504192": "crwdns161078:0crwdne161078:0", "1738681493": "crwdns156466:0crwdne156466:0", "1739384082": "crwdns80625:0crwdne80625:0", "1740371444": "crwdns69502:0crwdne69502:0", @@ -1250,7 +1246,6 @@ "1820332333": "crwdns159274:0crwdne159274:0", "1824193700": "crwdns69544:0crwdne69544:0", "1827607208": "crwdns156478:0crwdne156478:0", - "1828994348": "crwdns158194:0{{country}}crwdne158194:0", "1832974109": "crwdns89358:0crwdne89358:0", "1833481689": "crwdns80665:0crwdne80665:0", "1837762008": "crwdns167991:0crwdne167991:0", @@ -1308,7 +1303,6 @@ "1887852176": "crwdns80691:0crwdne80691:0", "1889357660": "crwdns123856:0crwdne123856:0", "1890171328": "crwdns120982:0crwdne120982:0", - "1890284485": "crwdns158196:0crwdne158196:0", "1890332321": "crwdns69580:0crwdne69580:0", "1894667135": "crwdns124348:0crwdne124348:0", "1898670234": "crwdns160178:0{{formatted_opening_time}}crwdnd160178:0{{opening_day}}crwdnd160178:0{{opening_date}}crwdne160178:0", @@ -1365,6 +1359,7 @@ "1971898712": "crwdns80725:0crwdne80725:0", "1973536221": "crwdns80729:0crwdne80729:0", "1982912252": "crwdns69602:0crwdne69602:0", + "1983001416": "crwdns170456:0crwdne170456:0", "1983387308": "crwdns89386:0crwdne89386:0", "1983544897": "crwdns125210:0crwdne125210:0", "1983676099": "crwdns80735:0crwdne80735:0", @@ -1491,7 +1486,6 @@ "2138861911": "crwdns156520:0crwdne156520:0", "2139171480": "crwdns89406:0crwdne89406:0", "2139362660": "crwdns69652:0crwdne69652:0", - "2141055709": "crwdns120984:0{{type}}crwdne120984:0", "2143803283": "crwdns80791:0crwdne80791:0", "2144609616": "crwdns89408:0crwdne89408:0", "2145690912": "crwdns80793:0crwdne80793:0", @@ -1948,7 +1942,6 @@ "-582721696": "crwdns169119:0{{format_min_withdraw_amount}}crwdnd169119:0{{format_max_withdraw_amount}}crwdnd169119:0{{currency}}crwdne169119:0", "-1957498244": "crwdns169121:0crwdne169121:0", "-1684548351": "crwdns167713:0crwdne167713:0", - "-1345040662": "crwdns165885:0crwdne165885:0", "-197251450": "crwdns168863:0{{currency_code}}crwdne168863:0", "-212277385": "crwdns168865:0crwdne168865:0", "-1900848111": "crwdns168859:0{{currency_code}}crwdne168859:0", @@ -2022,6 +2015,7 @@ "-811190405": "crwdns125116:0crwdne125116:0", "-2004264970": "crwdns165963:0crwdne165963:0", "-1707299138": "crwdns165865:0{{currency_symbol}}crwdne165865:0", + "-1179992129": "crwdns160520:0crwdne160520:0", "-922432739": "crwdns160500:0crwdne160500:0", "-1024241603": "crwdns160482:0crwdne160482:0", "-1979554765": "crwdns160502:0crwdne160502:0", @@ -2033,7 +2027,6 @@ "-1388977563": "crwdns160514:0crwdne160514:0", "-1962894999": "crwdns160516:0crwdne160516:0", "-451858550": "crwdns160518:0{{ service }}crwdnd160518:0{{ website_name }}crwdnd160518:0{{ service }}crwdnd160518:0{{ service }}crwdnd160518:0{{ service }}crwdne160518:0", - "-1179992129": "crwdns160520:0crwdne160520:0", "-344959847": "crwdns160522:0{{website_name}}crwdne160522:0", "-1232852916": "crwdns165867:0{{currency}}crwdne165867:0", "-38063175": "crwdns165869:0{{account_text}}crwdne165869:0", @@ -2056,6 +2049,7 @@ "-1615615253": "crwdns168897:0{{token}}crwdne168897:0", "-1831000957": "crwdns168855:0crwdne168855:0", "-314177745": "crwdns168609:0crwdne168609:0", + "-1345040662": "crwdns165885:0crwdne165885:0", "-2005265642": "crwdns160540:0crwdne160540:0", "-1593063457": "crwdns160542:0crwdne160542:0", "-130833284": "crwdns168547:0crwdne168547:0", @@ -2093,6 +2087,8 @@ "-1354485738": "crwdns69724:0crwdne69724:0", "-376148198": "crwdns69726:0crwdne69726:0", "-1337379177": "crwdns69722:0crwdne69722:0", + "-328036042": "crwdns89534:0crwdne89534:0", + "-2127699317": "crwdns89536:0crwdne89536:0", "-1940333322": "crwdns124360:0crwdne124360:0", "-1210387519": "crwdns124362:0crwdne124362:0", "-1223145005": "crwdns125108:0{{profit}}crwdne125108:0", @@ -2112,14 +2108,96 @@ "-184183432": "crwdns117854:0{{ max }}crwdne117854:0", "-1194719174": "crwdns117856:0crwdne117856:0", "-749186458": "crwdns89482:0crwdne89482:0", + "-662836330": "crwdns170458:0crwdne170458:0", + "-597939268": "crwdns170460:0crwdne170460:0", "-1322453991": "crwdns70258:0crwdne70258:0", "-1483938124": "crwdns70588:0crwdne70588:0", + "-236548954": "crwdns89512:0crwdne89512:0", "-1428017300": "crwdns121800:0crwdne121800:0", "-1450728048": "crwdns121802:0crwdne121802:0", "-255051108": "crwdns121804:0crwdne121804:0", "-1845434627": "crwdns121806:0crwdne121806:0", "-931434605": "crwdns121808:0crwdne121808:0", "-740712821": "crwdns121810:0crwdne121810:0", + "-187634388": "crwdns85017:0crwdne85017:0", + "-2105473795": "crwdns89432:0crwdne89432:0", + "-1800436138": "crwdns89434:0crwdne89434:0", + "-2046396241": "crwdns85021:0crwdne85021:0", + "-530632460": "crwdns89436:0crwdne89436:0", + "-1875717842": "crwdns85023:0crwdne85023:0", + "-890079872": "crwdns89438:0crwdne89438:0", + "-489739641": "crwdns124766:0crwdne124766:0", + "-2116076360": "crwdns117760:0crwdne117760:0", + "-1421941045": "crwdns117762:0crwdne117762:0", + "-277850921": "crwdns89440:0crwdne89440:0", + "-1918487001": "crwdns85029:0crwdne85029:0", + "-2139916657": "crwdns89442:0crwdne89442:0", + "-1238900333": "crwdns89444:0crwdne89444:0", + "-1729479576": "crwdns89446:0crwdne89446:0", + "-1474636594": "crwdns120632:0crwdne120632:0", + "-908772734": "crwdns70074:0crwdne70074:0", + "-334040831": "crwdns85039:0crwdne85039:0", + "-444267958": "crwdns89450:0crwdne89450:0", + "-447522129": "crwdns85041:0crwdne85041:0", + "-1488259879": "crwdns89452:0crwdne89452:0", + "-2020693608": "crwdns85047:0crwdne85047:0", + "-62728852": "crwdns85049:0crwdne85049:0", + "-1247744334": "crwdns85051:0crwdne85051:0", + "-1386365697": "crwdns85053:0crwdne85053:0", + "-1498732382": "crwdns85055:0crwdne85055:0", + "-1871864755": "crwdns85057:0crwdne85057:0", + "-1029671512": "crwdns89454:0crwdne89454:0", + "-210295176": "crwdns85059:0crwdne85059:0", + "-1385862125": "crwdns85061:0crwdne85061:0", + "-983721613": "crwdns85063:0crwdne85063:0", + "-854750243": "crwdns85065:0crwdne85065:0", + "-1394815185": "crwdns85067:0crwdne85067:0", + "-1034564248": "crwdns85069:0crwdne85069:0", + "-2009817572": "crwdns85071:0crwdne85071:0", + "-671300479": "crwdns85073:0crwdne85073:0", + "-514610724": "crwdns85075:0crwdne85075:0", + "-1923861818": "crwdns85077:0crwdne85077:0", + "-1556344549": "crwdns85079:0crwdne85079:0", + "-1061127827": "crwdns85081:0crwdne85081:0", + "-70949308": "crwdns85083:0crwdne85083:0", + "-311389920": "crwdns89456:0crwdne89456:0", + "-1460794449": "crwdns70534:0crwdne70534:0", + "-1634242212": "crwdns85089:0crwdne85089:0", + "-2012970860": "crwdns70524:0crwdne70524:0", + "-1504783522": "crwdns85091:0crwdne85091:0", + "-10612039": "crwdns85093:0crwdne85093:0", + "-555996976": "crwdns120754:0crwdne120754:0", + "-1391071125": "crwdns117228:0crwdne117228:0", + "-1961642424": "crwdns85097:0crwdne85097:0", + "-111312913": "crwdns85099:0crwdne85099:0", + "-674283099": "crwdns89458:0crwdne89458:0", + "-704543890": "crwdns85103:0crwdne85103:0", + "-482281200": "crwdns89460:0crwdne89460:0", + "-364621012": "crwdns85105:0crwdne85105:0", + "-232477769": "crwdns85107:0crwdne85107:0", + "-610736310": "crwdns85109:0crwdne85109:0", + "-1307657508": "crwdns89462:0crwdne89462:0", + "-1921072225": "crwdns85111:0crwdne85111:0", + "-955397705": "crwdns85113:0crwdne85113:0", + "-1424923010": "crwdns85115:0crwdne85115:0", + "-1835384051": "crwdns85117:0crwdne85117:0", + "-749487251": "crwdns85119:0crwdne85119:0", + "-1996062088": "crwdns85121:0crwdne85121:0", + "-1866751721": "crwdns85123:0crwdne85123:0", + "-1097076512": "crwdns120634:0crwdne120634:0", + "-1254849504": "crwdns85127:0crwdne85127:0", + "-1190046167": "crwdns89428:0crwdne89428:0", + "-859028989": "crwdns85131:0crwdne85131:0", + "-1452086215": "crwdns85133:0crwdne85133:0", + "-1765276625": "crwdns170462:0crwdne170462:0", + "-1872233077": "crwdns170464:0crwdne170464:0", + "-614454953": "crwdns170466:0crwdne170466:0", + "-2078588404": "crwdns85135:0crwdne85135:0", + "-2037446013": "crwdns85137:0crwdne85137:0", + "-533927844": "crwdns85139:0crwdne85139:0", + "-1192411640": "crwdns85141:0crwdne85141:0", + "-485434772": "crwdns85143:0crwdne85143:0", + "-1827646586": "crwdns85145:0crwdne85145:0", "-254421190": "crwdns121900:0{{message_length}}crwdne121900:0", "-9461328": "crwdns125120:0crwdne125120:0", "-418247251": "crwdns125122:0crwdne125122:0", @@ -2209,17 +2287,6 @@ "-398198412": "crwdns168607:0crwdne168607:0", "-1793883644": "crwdns163338:0crwdne163338:0", "-1246992539": "crwdns161086:0crwdne161086:0", - "-563774117": "crwdns158752:0crwdne158752:0", - "-773544978": "crwdns161080:0crwdne161080:0", - "-1003047246": "crwdns161082:0crwdne161082:0", - "-2024365882": "crwdns158754:0crwdne158754:0", - "-2038666662": "crwdns158756:0crwdne158756:0", - "-832198631": "crwdns161084:0crwdne161084:0", - "-1787820992": "crwdns157158:0crwdne157158:0", - "-837532140": "crwdns161088:0crwdne161088:0", - "-663862998": "crwdns161092:0crwdne161092:0", - "-947407631": "crwdns161094:0crwdne161094:0", - "-362324454": "crwdns161096:0crwdne161096:0", "-821418875": "crwdns81433:0crwdne81433:0", "-1309011360": "crwdns81411:0crwdne81411:0", "-679102561": "crwdns80823:0crwdne80823:0", @@ -2317,41 +2384,47 @@ "-618539786": "crwdns168117:0crwdne168117:0", "-945275490": "crwdns168643:0crwdne168643:0", "-705744796": "crwdns158018:0crwdne158018:0", - "-2067423661": "crwdns169599:0crwdne169599:0", - "-1719731099": "crwdns169601:0crwdne169601:0", - "-1738575826": "crwdns168039:0crwdne168039:0", + "-1585069798": "crwdns168057:0crwdne168057:0", + "-1287141934": "crwdns168073:0crwdne168073:0", + "-367759751": "crwdns168053:0crwdne168053:0", + "-596690079": "crwdns170552:0crwdne170552:0", + "-265932467": "crwdns170554:0crwdne170554:0", + "-1815573792": "crwdns170556:0crwdne170556:0", + "-823349637": "crwdns170558:0crwdne170558:0", "-1204063440": "crwdns168041:0crwdne168041:0", + "-1164554246": "crwdns168071:0crwdne168071:0", + "-219846634": "crwdns169287:0crwdne169287:0", + "-529038107": "crwdns158030:0crwdne158030:0", + "-87149410": "crwdns158032:0crwdne158032:0", + "-1738575826": "crwdns168039:0crwdne168039:0", + "-1329329028": "crwdns168059:0crwdne168059:0", + "-132893998": "crwdns168061:0crwdne168061:0", + "-1852207910": "crwdns81449:0crwdne81449:0", + "-764323310": "crwdns81451:0crwdne81451:0", + "-1435762703": "crwdns123956:0crwdne123956:0", + "-1902997828": "crwdns117768:0crwdne117768:0", + "-753791937": "crwdns117770:0crwdne117770:0", + "-1775108444": "crwdns117772:0crwdne117772:0", + "-1175685940": "crwdns168055:0crwdne168055:0", + "-1125797291": "crwdns81471:0crwdne81471:0", + "-157145612": "crwdns81473:0crwdne81473:0", + "-87177461": "crwdns168069:0crwdne168069:0", + "-904632610": "crwdns158026:0crwdne158026:0", + "-470018967": "crwdns158028:0crwdne158028:0", + "-156611181": "crwdns168063:0crwdne168063:0", "-1925176811": "crwdns168043:0crwdne168043:0", "-980696193": "crwdns168045:0crwdne168045:0", "-1647226944": "crwdns168047:0crwdne168047:0", "-488032975": "crwdns168049:0crwdne168049:0", "-67021419": "crwdns168051:0crwdne168051:0", - "-219846634": "crwdns169287:0crwdne169287:0", - "-367759751": "crwdns168053:0crwdne168053:0", - "-1175685940": "crwdns168055:0crwdne168055:0", - "-1852207910": "crwdns81449:0crwdne81449:0", - "-764323310": "crwdns81451:0crwdne81451:0", - "-1585069798": "crwdns168057:0crwdne168057:0", - "-1329329028": "crwdns168059:0crwdne168059:0", - "-132893998": "crwdns168061:0crwdne168061:0", - "-156611181": "crwdns168063:0crwdne168063:0", "-849587074": "crwdns168065:0crwdne168065:0", "-47462430": "crwdns168067:0crwdne168067:0", - "-87177461": "crwdns168069:0crwdne168069:0", + "-2067423661": "crwdns169599:0crwdne169599:0", + "-1719731099": "crwdns169601:0crwdne169601:0", + "-822888359": "crwdns170548:0crwdne170548:0", + "-1197701578": "crwdns170550:0crwdne170550:0", "-2087822170": "crwdns81467:0crwdne81467:0", "-1669693571": "crwdns81469:0crwdne81469:0", - "-1125797291": "crwdns81471:0crwdne81471:0", - "-157145612": "crwdns81473:0crwdne81473:0", - "-904632610": "crwdns158026:0crwdne158026:0", - "-470018967": "crwdns158028:0crwdne158028:0", - "-1435762703": "crwdns123956:0crwdne123956:0", - "-1164554246": "crwdns168071:0crwdne168071:0", - "-1902997828": "crwdns117768:0crwdne117768:0", - "-753791937": "crwdns117770:0crwdne117770:0", - "-1775108444": "crwdns117772:0crwdne117772:0", - "-529038107": "crwdns158030:0crwdne158030:0", - "-87149410": "crwdns158032:0crwdne158032:0", - "-1287141934": "crwdns168073:0crwdne168073:0", "-1998049070": "crwdns123964:0crwdne123964:0", "-1721181859": "crwdns123966:0{{deriv_account}}crwdne123966:0", "-1989074395": "crwdns167523:0{{deriv_account}}crwdnd167523:0{{dmt5_account}}crwdnd167523:0{{dmt5_label}}crwdnd167523:0{{deriv_label}}crwdne167523:0", @@ -2386,6 +2459,7 @@ "-1950045402": "crwdns168649:0crwdne168649:0", "-168971942": "crwdns168123:0crwdne168123:0", "-905560792": "crwdns168127:0crwdne168127:0", + "-2024365882": "crwdns158754:0crwdne158754:0", "-1197864059": "crwdns158966:0crwdne158966:0", "-1485242688": "crwdns117304:0{{step}}crwdnd117304:0{{step_title}}crwdnd117304:0{{step}}crwdnd117304:0{{steps}}crwdne117304:0", "-1829842622": "crwdns124778:0crwdne124778:0", @@ -2439,6 +2513,7 @@ "-1917706589": "crwdns162106:0{{social_identity_provider}}crwdne162106:0", "-2017825013": "crwdns124770:0crwdne124770:0", "-505449293": "crwdns162108:0crwdne162108:0", + "-1787820992": "crwdns157158:0crwdne157158:0", "-184713104": "crwdns163516:0crwdne163516:0", "-1571775875": "crwdns163518:0crwdne163518:0", "-1107320163": "crwdns163520:0crwdne163520:0", @@ -2470,7 +2545,6 @@ "-1500907666": "crwdns124112:0crwdne124112:0", "-429248139": "crwdns124114:0crwdne124114:0", "-818926350": "crwdns124116:0crwdne124116:0", - "-236548954": "crwdns89512:0crwdne89512:0", "-1282933308": "crwdns117860:0{{barrier}}crwdne117860:0", "-968190634": "crwdns117862:0{{barrier}}crwdne117862:0", "-1747377543": "crwdns117864:0{{barrier}}crwdne117864:0", @@ -2498,8 +2572,6 @@ "-763273340": "crwdns69754:0crwdne69754:0", "-1790089996": "crwdns89532:0crwdne89532:0", "-590018519": "crwdns81017:0crwdne81017:0", - "-328036042": "crwdns89534:0crwdne89534:0", - "-2127699317": "crwdns89536:0crwdne89536:0", "-405439829": "crwdns81019:0crwdne81019:0", "-1714959941": "crwdns81021:0crwdne81021:0", "-1254554534": "crwdns81023:0crwdne81023:0", @@ -2593,22 +2665,13 @@ "-584696680": "crwdns89618:0crwdne89618:0", "-178096090": "crwdns89620:0crwdne89620:0", "-206909651": "crwdns89622:0crwdne89622:0", - "-673424733": "crwdns81371:0crwdne81371:0", - "-1066565281": "crwdns163364:0crwdne163364:0", - "-1481390656": "crwdns160952:0crwdne160952:0", - "-1199152768": "crwdns158208:0crwdne158208:0", - "-498346912": "crwdns158210:0crwdne158210:0", + "-464262734": "crwdns163370:0{{platform}}crwdnd163370:0{{account_title}}crwdne163370:0", "-2042845290": "crwdns120672:0crwdne120672:0", "-1882295407": "crwdns120674:0crwdne120674:0", "-254497873": "crwdns120678:0crwdne120678:0", "-161656683": "crwdns81379:0crwdne81379:0", "-374736923": "crwdns81381:0crwdne81381:0", "-1793894323": "crwdns81383:0crwdne81383:0", - "-464262734": "crwdns163370:0{{platform}}crwdnd163370:0{{account_title}}crwdne163370:0", - "-1928229820": "crwdns163378:0crwdne163378:0", - "-1917043724": "crwdns162122:0crwdne162122:0", - "-1087845020": "crwdns121000:0crwdne121000:0", - "-1950683866": "crwdns121002:0crwdne121002:0", "-149836494": "crwdns117888:0{{transaction_id}}crwdne117888:0", "-1382749084": "crwdns81321:0crwdne81321:0", "-538215347": "crwdns123902:0crwdne123902:0", @@ -2737,7 +2800,6 @@ "-1588406981": "crwdns70522:0crwdne70522:0", "-1459154781": "crwdns157084:0{{ contract_detail }}crwdne157084:0", "-1652241017": "crwdns69886:0crwdne69886:0", - "-2012970860": "crwdns70524:0crwdne70524:0", "-2082345383": "crwdns159498:0crwdne159498:0", "-172574065": "crwdns69894:0crwdne69894:0", "-403103225": "crwdns121794:0crwdne121794:0", @@ -2780,7 +2842,6 @@ "-1556495906": "crwdns69962:0crwdne69962:0", "-166816850": "crwdns69964:0crwdne69964:0", "-1261436901": "crwdns69968:0crwdne69968:0", - "-1460794449": "crwdns70534:0crwdne70534:0", "-1174859923": "crwdns69974:0crwdne69974:0", "-1972165119": "crwdns69976:0crwdne69976:0", "-1956100732": "crwdns69980:0crwdne69980:0", @@ -2830,10 +2891,13 @@ "-702370957": "crwdns70058:0crwdne70058:0", "-982729677": "crwdns70558:0crwdne70558:0", "-311268215": "crwdns70560:0crwdne70560:0", + "-1797602591": "crwdns170468:0{{ currency }}crwdnd170468:0{{ stop_loss }}crwdne170468:0", + "-1214929127": "crwdns170470:0crwdne170470:0", + "-2142851225": "crwdns170472:0crwdne170472:0", + "-625636913": "crwdns117222:0crwdne117222:0", "-1466383897": "crwdns157120:0{{ duration_unit }}crwdnd157120:0{{ duration_value }}crwdne157120:0", "-440702280": "crwdns70064:0crwdne70064:0", "-1193894978": "crwdns70066:0crwdne70066:0", - "-625636913": "crwdns117222:0crwdne117222:0", "-46523443": "crwdns117846:0{{min}}crwdnd117846:0{{max}}crwdne117846:0", "-1483427522": "crwdns157122:0{{ trade_type_category }}crwdnd157122:0{{ trade_type }}crwdne157122:0", "-323348124": "crwdns89416:0crwdne89416:0", @@ -2841,7 +2905,6 @@ "-783173909": "crwdns89420:0crwdne89420:0", "-376956832": "crwdns70070:0crwdne70070:0", "-1244007240": "crwdns157124:0{{ condition }}crwdne157124:0", - "-908772734": "crwdns70074:0crwdne70074:0", "-1577206704": "crwdns70076:0crwdne70076:0", "-33796979": "crwdns70078:0crwdne70078:0", "-1434883449": "crwdns70080:0crwdne70080:0", @@ -2903,84 +2966,11 @@ "-1133072029": "crwdns70194:0crwdne70194:0", "-1109723338": "crwdns157144:0{{ input_text }}crwdne157144:0", "-736668830": "crwdns70198:0crwdne70198:0", - "-1190046167": "crwdns89428:0crwdne89428:0", "-1821552998": "crwdns157146:0{{ side }}crwdnd157146:0{{ input_text }}crwdne157146:0", "-801766026": "crwdns70206:0crwdne70206:0", "-474779821": "crwdns70208:0crwdne70208:0", "-1219239717": "crwdns120986:0crwdne120986:0", "-250761331": "crwdns160954:0crwdne160954:0", - "-187634388": "crwdns85017:0crwdne85017:0", - "-2105473795": "crwdns89432:0crwdne89432:0", - "-1800436138": "crwdns89434:0crwdne89434:0", - "-2046396241": "crwdns85021:0crwdne85021:0", - "-530632460": "crwdns89436:0crwdne89436:0", - "-1875717842": "crwdns85023:0crwdne85023:0", - "-890079872": "crwdns89438:0crwdne89438:0", - "-489739641": "crwdns124766:0crwdne124766:0", - "-2116076360": "crwdns117760:0crwdne117760:0", - "-1421941045": "crwdns117762:0crwdne117762:0", - "-277850921": "crwdns89440:0crwdne89440:0", - "-1918487001": "crwdns85029:0crwdne85029:0", - "-2139916657": "crwdns89442:0crwdne89442:0", - "-1238900333": "crwdns89444:0crwdne89444:0", - "-1729479576": "crwdns89446:0crwdne89446:0", - "-1474636594": "crwdns120632:0crwdne120632:0", - "-334040831": "crwdns85039:0crwdne85039:0", - "-444267958": "crwdns89450:0crwdne89450:0", - "-447522129": "crwdns85041:0crwdne85041:0", - "-1488259879": "crwdns89452:0crwdne89452:0", - "-2020693608": "crwdns85047:0crwdne85047:0", - "-62728852": "crwdns85049:0crwdne85049:0", - "-1247744334": "crwdns85051:0crwdne85051:0", - "-1386365697": "crwdns85053:0crwdne85053:0", - "-1498732382": "crwdns85055:0crwdne85055:0", - "-1871864755": "crwdns85057:0crwdne85057:0", - "-1029671512": "crwdns89454:0crwdne89454:0", - "-210295176": "crwdns85059:0crwdne85059:0", - "-1385862125": "crwdns85061:0crwdne85061:0", - "-983721613": "crwdns85063:0crwdne85063:0", - "-854750243": "crwdns85065:0crwdne85065:0", - "-1394815185": "crwdns85067:0crwdne85067:0", - "-1034564248": "crwdns85069:0crwdne85069:0", - "-2009817572": "crwdns85071:0crwdne85071:0", - "-671300479": "crwdns85073:0crwdne85073:0", - "-514610724": "crwdns85075:0crwdne85075:0", - "-1923861818": "crwdns85077:0crwdne85077:0", - "-1556344549": "crwdns85079:0crwdne85079:0", - "-1061127827": "crwdns85081:0crwdne85081:0", - "-70949308": "crwdns85083:0crwdne85083:0", - "-311389920": "crwdns89456:0crwdne89456:0", - "-1634242212": "crwdns85089:0crwdne85089:0", - "-1504783522": "crwdns85091:0crwdne85091:0", - "-10612039": "crwdns85093:0crwdne85093:0", - "-555996976": "crwdns120754:0crwdne120754:0", - "-1391071125": "crwdns117228:0crwdne117228:0", - "-1961642424": "crwdns85097:0crwdne85097:0", - "-111312913": "crwdns85099:0crwdne85099:0", - "-674283099": "crwdns89458:0crwdne89458:0", - "-704543890": "crwdns85103:0crwdne85103:0", - "-482281200": "crwdns89460:0crwdne89460:0", - "-364621012": "crwdns85105:0crwdne85105:0", - "-232477769": "crwdns85107:0crwdne85107:0", - "-610736310": "crwdns85109:0crwdne85109:0", - "-1307657508": "crwdns89462:0crwdne89462:0", - "-1921072225": "crwdns85111:0crwdne85111:0", - "-955397705": "crwdns85113:0crwdne85113:0", - "-1424923010": "crwdns85115:0crwdne85115:0", - "-1835384051": "crwdns85117:0crwdne85117:0", - "-749487251": "crwdns85119:0crwdne85119:0", - "-1996062088": "crwdns85121:0crwdne85121:0", - "-1866751721": "crwdns85123:0crwdne85123:0", - "-1097076512": "crwdns120634:0crwdne120634:0", - "-1254849504": "crwdns85127:0crwdne85127:0", - "-859028989": "crwdns85131:0crwdne85131:0", - "-1452086215": "crwdns85133:0crwdne85133:0", - "-2078588404": "crwdns85135:0crwdne85135:0", - "-2037446013": "crwdns85137:0crwdne85137:0", - "-533927844": "crwdns85139:0crwdne85139:0", - "-1192411640": "crwdns85141:0crwdne85141:0", - "-485434772": "crwdns85143:0crwdne85143:0", - "-1827646586": "crwdns85145:0crwdne85145:0", "-1687036846": "crwdns85897:0crwdne85897:0", "-1266781295": "crwdns125106:0crwdne125106:0", "-894560707": "crwdns162022:0crwdne162022:0", diff --git a/packages/translations/src/translations/es.json b/packages/translations/src/translations/es.json index 021980d1c031..284882f6ed00 100644 --- a/packages/translations/src/translations/es.json +++ b/packages/translations/src/translations/es.json @@ -7,7 +7,6 @@ "11872052": "Sí, volveré más tarde", "14365404": "La solicitud falló para: {{ message_type }}, volviendo a intentarlo en {{ delay }}s", "15377251": "Cantidad de ganancia: {{profit}}", - "17217397": "Criptomonedas", "17843034": "Ver estado de la verificación del comprobante de identidad", "21035405": "Cuéntenos por qué se va (seleccione hasta {{ allowed_reasons }} razones.)", "25854018": "Este bloque muestra mensajes en la consola del desarrollador con una entrada que puede ser una cadena de texto, un número, un booleano o una matriz de datos.", @@ -22,6 +21,7 @@ "46523711": "Su comprobante de identidad está verificado", "49963458": "Selecciones una opción", "54185751": "Menos de $100.000", + "55340304": "¿Mantener su contrato actual?", "55916349": "Todo", "58254854": "Finalidad", "59169515": "Si selecciona \"Asiáticas - Alza\", ganará el pago si el último intervalo es más superior a la media de los ticks.", @@ -61,7 +61,6 @@ "111931529": "Inversión máx. total durante 7 días", "113378532": "ETH/USD", "113884303": "Índice alemán", - "113933902": "Descargar la aplicación Deriv X", "115032488": "Precio de compra y P / L", "116005488": "Indicadores", "117318539": "La contraseña debe tener letras minúsculas y mayúsculas, del alfabeto inglés, con números.", @@ -163,7 +162,6 @@ "270339490": "Si selecciona \"Sobre\", ganará el pago si el último dígito del último tick es mayor que su predicción.", "270610771": "En este ejemplo, el precio de apertura de una vela se asigna a la variable \"candle_open_price\".", "270712176": "descendiendo", - "270727821": "Indices bursátiles", "270780527": "Ha alcanzado el límite para cargar sus documentos.", "272179372": "Este bloque se usa comúnmente para ajustar los parámetros de su próxima operación y para implementar la lógica de stop loss / take profit.", "273350342": "Copie y pegue el token en la aplicación.", @@ -197,7 +195,6 @@ "317601768": "Temas", "318865860": "cerrar", "318984807": "Este bloque repite las instrucciones que contiene durante un número específico de veces.", - "319538091": "Financiera STP DMT5", "323179846": "El intervalo de tiempo para cada vela se puede configurar de un minuto a un día.", "323209316": "Seleccione una estrategia de Deriv Bot", "325662004": "Expandir bloque", @@ -248,7 +245,6 @@ "384303768": "Este bloque devuelve \"Verdadero\" si la última vela es negra. Se puede colocar en cualquier lugar del lienzo, excepto dentro del bloque raíz Parámetros comerciales.", "386502387": "El Bot no está funcionando", "389923099": "Acercar", - "390647540": "Cuenta real", "390890891": "Último trimestre", "391915203": "Cobertura", "392582370": "Fall Equals", @@ -256,7 +252,6 @@ "396961806": "No admitimos Polygon (Matic), para depositar por favor utilice sólo Ethereum ({{token}}).", "399387585": "Por favor revise su correo electrónico para más detalles. Si tiene alguna pregunta, diríjase a nuestro <0>Centro de ayuda.", "401339495": "Verificar la dirección", - "402343402": "Debido a un problema en nuestro servidor, algunas de sus cuentas {{platform}} no están disponibles en este momento. Por favor, tenga paciencia con nosotros y gracias por su cooperación.", "403456289": "La fórmula para la SMA es:", "404743411": "Total de depósitos", "406359555": "Detalles del contrato", @@ -271,6 +266,7 @@ "427134581": "Intente utilizar otro tipo de archivo.", "427617266": "Bitcoin", "428709688": "Su intervalo de tiempo preferido entre cada informe:", + "432508385": "Take Profit: {{ currency }} {{ take_profit }}", "432519573": "Documento subido", "433348384": "Las cuentas reales no están disponibles para personas expuestas políticamente (PEP).", "433616983": "2. Fase de investigación", @@ -326,7 +322,6 @@ "505793554": "la última letra", "510815408": "Letras, números, espacios, guiones únicamente", "514031715": "lista {{ input_list }} está vacía", - "514776243": "La contraseña de su {{account_type}} ha sido cambiada.", "514948272": "Copiar enlace", "518955798": "7. Ejecutar una vez al iniciar", "520136698": "Índice Boom 500", @@ -438,7 +433,6 @@ "659482342": "Recuerde que es su responsabilidad mantener sus respuestas exactas y actualizadas. Puede actualizar sus datos personales en cualquier momento en la configuración de su cuenta.", "660481941": "Para acceder a sus aplicaciones móviles y otras aplicaciones de terceros, primero deberá generar un token API.", "660991534": "Terminar", - "662609119": "Descargar la aplicación MT5", "665089217": "Por favor, presente su <0>proof of identity para autenticar su cuenta y acceder a su Cajero.", "665777772": "XLM/USD", "665872465": "En el siguiente ejemplo, se selecciona el precio de apertura, que luego se asigna a una variable llamada \"op\".", @@ -590,6 +584,7 @@ "872957901": "Modo oscuro (próximamente en DBot)", "873166343": "1. 'Registro' muestra un mensaje regular.", "874461655": "Escanee el código QR con su teléfono", + "874484887": "El take profit debe ser un número positivo.", "875532284": "Reiniciar el proceso en un dispositivo diferente", "876086855": "Complete el formulario de evaluación financiera", "876292912": "Salir", @@ -637,7 +632,6 @@ "947046137": "Su retiro se procesará en 24 horas", "947363256": "Crear lista", "947758334": "Se requiere la ciudad", - "948156236": "Crear {{type}} contraseña", "949859957": "Enviar", "952655566": "Agente de pago", "956448295": "Foto cortada detectada", @@ -765,7 +759,6 @@ "1129124569": "Si selecciona \"Debajo\", ganará el pago si el último dígito del último tick es menor a su predicción.", "1129296176": "AVISO IMPORTANTE PARA RECIBIR SUS FONDOS", "1129842439": "Por favor, inserte la cantidad de take profit.", - "1129984312": "Transferencia Bancaria", "1130744117": "Intentaremos resolver su queja dentro de 10 días hábiles. Le informaremos sobre el resultado junto con una explicación de nuestra posición y la proposición de las medidas correctivas que tengamos la intención de tomar.", "1130791706": "N", "1133651559": "Chat en vivo", @@ -878,6 +871,7 @@ "1293660048": "Pérdida máx. total por día", "1294756261": "Este bloque crea una función, que es un grupo de instrucciones que se pueden ejecutar en cualquier momento. Coloque otros bloques aquí para realizar cualquier tipo de acción que necesite en su estrategia. Cuando se hayan llevado a cabo todas las instrucciones en una función, su bot continuará con los bloques restantes en su estrategia. Haga clic en el campo \"hacer algo\" para darle un nombre de su elección. Haga clic en el ícono más para enviar un valor (como una variable con nombre) a su función.", "1295284664": "Por favor, acepte nuestros <0>Términos y Condiciones actualizados para proceder.", + "1296380713": "Cerrar mi contrato", "1299479533": "8 horas", "1301668579": "Estamos trabajando para tenerlo disponible pronto. Si tiene otra cuenta, cambie a esa cuenta para continuar operando. Puede agregar una Financiera DMT5.", "1302691457": "Ocupación", @@ -921,7 +915,6 @@ "1346339408": "Gerentes", "1347071802": "Hace {{minutePast}}m", "1348009461": "Por favor, cierre sus posiciones en la(s) siguiente(s) cuenta(s) Deriv X:", - "1349142948": "DMT5 Financiera", "1349289354": "Genial, eso es todo lo que necesitamos", "1349295677": "en el texto {{ input_text }} obtener subcadena de {{ position1 }} {{ index1 }} a {{ position2 }} {{ index2 }}", "1351152200": "Bienvenidos al panel de Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "con intervalo: %1", "1468308734": "Este bloque repite instrucciones siempre que una condición dada sea verdadera", "1468419186": "Deriv actualmente admite retiros de Tether USDT a la billetera Omni. Para garantizar una transacción exitosa, ingrese una dirección de billetera compatible con los tokens que desea retirar. <0>Más información", + "1469150826": "Take Profit", "1469764234": "Error de cajero", "1469814942": "- División", "1470319695": "Devuelve verdadero o falso", @@ -1043,7 +1037,6 @@ "1502325741": "Su contraseña no puede ser igual a su dirección de correo electrónico.", "1503618738": "- ID de referencia del acuerdo: el ID de referencia del contrato", "1505898522": "Descargar montón", - "1506251760": "Billeteras", "1509570124": "{{buy_value}} (Comprar)", "1509678193": "Educación", "1510075920": "Oro/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Su enlace móvil caducará en una hora", "1577527507": "Se requiere el motivo de apertura de la cuenta.", "1577612026": "Seleccione una carpeta", + "1579484521": "Centro de operaciones", "1580498808": "Varias caras encontradas", "1584109614": "Lista de cadenas de ticks", "1584936297": "El archivo XML contiene elementos no soportados. Por favor, compruebe o modifique el archivo.", @@ -1107,6 +1101,7 @@ "1620278321": "Los nombres y apellidos por sí mismos son fáciles de adivinar", "1620346110": "Definir moneda", "1622662457": "Desde fecha", + "1623706874": "Utilice este bloque cuando quiera utilizar multiplicadores como tipo de operación.", "1630372516": "Pruebe Fiat onramp", "1630417358": "Vaya a la configuración de su cuenta y complete los datos personales para permitir los retiros.", "1634594289": "Seleccionar idioma", @@ -1126,6 +1121,7 @@ "1651513020": "Mostrar el tiempo restante para cada intervalo", "1651951220": "Las repeticiones como \"abcabcabc\" son solo un poco más difíciles de adivinar que \"abc\"", "1652366857": "obtener y eliminar", + "1652968048": "Defina sus opciones de operación, como el multiplicador y la inversión.", "1652976865": "En este ejemplo, este bloque se usa con otro bloque para obtener los precios de apertura de una lista de velas. Los precios de apertura se asignan a la variable llamada\"cl\".", "1653136377": "¡copiado!", "1653159197": "Retiro del agente de pagos", @@ -1142,6 +1138,7 @@ "1665738338": "Balance", "1665756261": "Ir al chat en vivo", "1667395210": "Su comprobante de identidad se envió correctamente", + "1670016002": "Multiplicador: {{ multiplier }}", "1670426231": "Hora de término", "1671232191": "Ha establecido los siguientes límites:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Aviso legal", "1736292549": "Actualizar código postal", "1737352280": "Bot.init no fue llamado", - "1738504192": "Billeteras electrónicas", "1738681493": "Quítese las gafas, si es necesario", "1739384082": "Desempleado", "1740371444": "No ha seleccionado el mercado subyacente", @@ -1250,7 +1246,6 @@ "1820332333": "Recargar", "1824193700": "Este bloque le proporciona el último dígito del último valor de tick.", "1827607208": "Archivo no cargado.", - "1828994348": "DMT5 no está disponible en {{country}}", "1832974109": "SmartTrader", "1833481689": "Desbloquear", "1837762008": "Envíe la prueba de identidad y prueba de dirección para verificar su cuenta en la configuración de cuenta para acceder al cajero.", @@ -1308,7 +1303,6 @@ "1887852176": "El sitio se está actualizando", "1889357660": "Ingrese un valor en minutos, hasta 60480 minutos (equivalente a 6 semanas).", "1890171328": "Al hacer clic en Aceptar abajo y proceder a la apretura de la cuenta, debe tener en cuenta que es posible que se esté exponiendo a riesgos (que pueden ser significativos, incluyendo el riesgo de pérdida de la totalidad de la suma invertida) que usted puede no conocer y no tiene la experiencia para evaluarlos o mitigarlos adecuadamente.", - "1890284485": "Explore DTrader", "1890332321": "Devuelve el número de caracteres de una cadena de texto dada, incluyendo números, espacios, signos de puntuación y símbolos.", "1894667135": "Verifique su comprobante de dirección", "1898670234": "{{formatted_opening_time}} (GMT) el {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Agregar o administrar cuenta", "1973536221": "Aún no tiene posiciones abiertas.", "1982912252": "Índice de fuerza relativa (RSI) de una lista con un período", + "1983001416": "Defina sus opciones de operación, como el multiplicador y la inversión. Este bloque sólo puede utilizarse con el tipo de operación de multiplicadores. Si selecciona otro tipo de operación, este bloque será sustituido por el bloque Opciones de operación.", "1983387308": "Vista preliminar", "1983544897": "No se aceptan apartados postales como dirección", "1983676099": "Por favor revise su correo electrónico para más detalles.", @@ -1491,7 +1486,6 @@ "2138861911": "No se aceptan escaneos ni fotocopias", "2139171480": "Reset Up/Reset Down", "2139362660": "lado izquierdo", - "2141055709": "Nueva {{type}} contraseña", "2143803283": "Error de compra", "2144609616": "Si selecciona \"Reset-Down\", ganará el pago si el punto de salida es estrictamente más bajo que el punto de entrada o el punto en el momento del reset.", "2145690912": "Ingresos", @@ -1948,7 +1942,6 @@ "-582721696": "La cantidad de retiro permitido actualmente es de {{format_min_withdraw_amount}} a {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "más", "-1684548351": "Cambiar a la cuenta cripto", - "-1345040662": "¿Busca una forma de comprar criptomonedas?", "-197251450": "¿No quiere comerciar en {{currency_code}}? Puede abrir otra cuenta de criptomoneda.", "-212277385": "Ya no puede cambiar la moneda de su cuenta porque ha hecho un depósito en su cuenta fiat o ha creado una cuenta real DMT5 o Deriv X. Por favor, contáctenos a través del <0>chat en vivo para aclarar su situación.", "-1900848111": "Esta es su {{currency_code}} cuenta.", @@ -2022,6 +2015,7 @@ "-811190405": "Tiempo", "-2004264970": "La dirección de su billetera debe tener entre 25 y 64 caracteres.", "-1707299138": "La dirección de su monedero {{currency_symbol}}", + "-1179992129": "Todos los agentes de pago", "-922432739": "Ingrese una ID de inicio de sesión de cliente válida.", "-1024241603": "Saldo insuficiente.", "-1979554765": "Por favor, introduzca una descripción válida.", @@ -2033,7 +2027,6 @@ "-1388977563": "¡Copiado!", "-1962894999": "Esta dirección solo se puede utilizar UNA VEZ. Copie una nueva para su próxima transacción.", "-451858550": "Al hacer clic en \"Continuar\", será redirigido a {{ service }}, un proveedor de servicios de pago externo. Tenga en cuenta que {{ website_name }} no es responsable del contenido o los servicios proporcionados por {{ service }}. Si encuentra algún problema relacionado con los servicios de {{ service }}, debe comunicarse directamente con {{ service }}.", - "-1179992129": "Todos los agentes de pago", "-344959847": "Un agente de pagos está autorizado a procesar depósitos y retiros por usted si sus métodos de pago o monedas locales no son compatibles con {{website_name}}.", "-1232852916": "Estamos cambiando a su cuenta {{currency}} para ver la transacción.", "-38063175": "{{account_text}} billetera", @@ -2056,6 +2049,7 @@ "-1615615253": "No admitimos Tron, para depositar por favor utilice sólo Ethereum ({{token}}).", "-1831000957": "Seleccione la red de la que procederá su depósito.", "-314177745": "Desafortunadamente, no pudimos obtener la dirección porque nuestro servidor no funcionaba. Haga clic en Actualizar para volver a subir la dirección o vuelva a intentarlo más tarde.", + "-1345040662": "¿Busca una forma de comprar criptomonedas?", "-2005265642": "Fiat onramp es un servicio de caja que le permite convertir monedas fiduciarias a cripto para recargar sus cuentas cripto de Deriv. Aquí se enumeran los intercambios cripto de terceros. Deberá crear una cuenta con ellos para utilizar sus servicios.", "-1593063457": "Seleccione canal de pago", "-130833284": "Tenga en cuenta que sus límites de retiro máximo y mínimo no son fijos. Cambian debido a la alta volatilidad de las criptomonedas.", @@ -2093,6 +2087,8 @@ "-1354485738": "Reset Call", "-376148198": "Solo Arriba", "-1337379177": "Tick alto", + "-328036042": "Ingrese una cantidad de stop loss que sea mayor que la pérdida potencial actual.", + "-2127699317": "Stop loss inválido. Stop loss no puede ser superior a una inversión.", "-1940333322": "El DBot no está disponible para esta cuenta", "-1210387519": "Ir al panel de DMT5", "-1223145005": "Cantidad de pérdida: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Duración máxima: {{ max }}", "-1194719174": "La cantidad del multiplicador utilizada para aumentar su inversión si está perdiendo una operación.", "-749186458": "El cambio de cuenta está deshabilitado mientras su bot se está ejecutando. Detenga su bot antes de cambiar de cuenta.", + "-662836330": "¿Desea mantener su contrato actual o cerrarlo? Si decide mantenerlo en marcha, puede comprobarlo y cerrarlo más tarde en la página <0>Informes.", + "-597939268": "Mantener mi contrato", "-1322453991": "Debes iniciar sesión para ejecutar el bot.", "-1483938124": "Esta estrategia actualmente no es compatible con DBot.", + "-236548954": "Error de actualización del contrato", "-1428017300": "EL", "-1450728048": "DE", "-255051108": "USTED", "-1845434627": "ES", "-931434605": "ESTE", "-740712821": "UN", + "-187634388": "Este bloque es obligatorio. Aquí es donde puede decidir si su bot debe continuar operando. Solo se permite una copia de este bloque.", + "-2105473795": "El único parámetro de entrada determina cómo se formateará la salida de bloque. En caso de que el parámetro de entrada sea \"cadena\", se agregará la moneda de la cuenta.", + "-1800436138": "2. para \"número\": 1325.68", + "-2046396241": "Este bloque es obligatorio. Solo se permite una copia de este bloque. Se agrega al lienzo de forma predeterminada cuando abre DBot.", + "-530632460": "Este bloque se usa para determinar si el precio de mercado se mueve en la dirección seleccionada o no. Le da un valor de \"Verdadero\" o \"Falso\".", + "-1875717842": "Ejemplos:", + "-890079872": "1. Si la dirección seleccionada es \"Alza\", y el valor de tick anterior es menor que el valor de tick actual, la salida será \"Verdadero\". De lo contrario, la salida será una cadena vacía.", + "-489739641": "2. Si la dirección seleccionada es \"Baja\", y el valor de tick anterior es mayor que el valor de tick actual, el resultado será \"Verdadero\". De lo contrario, el resultado será una cadena vacía.", + "-2116076360": "Hay 4 tipos de mensajes:", + "-1421941045": "2. 'Advertir' muestra un mensaje en amarillo para resaltar algo que necesita atención.", + "-277850921": "Si se selecciona \"Ganar\", devolverá \"Verdadero\" si su última operación fue exitosa. De lo contrario, devolverá una cadena vacía.", + "-1918487001": "Ejemplo:", + "-2139916657": "1. En el siguiente ejemplo, el ciclo finaliza en caso de que \"x\" sea \"Falso\" aunque solo se complete una iteración", + "-1238900333": "2. En el siguiente ejemplo, el bucle salta a la siguiente iteración sin ejecutar el siguiente bloque en caso de que \"x\" sea \"Falso\"", + "-1729479576": "Puede usar \"i\" dentro del bucle, por ejemplo para acceder a los elementos de la lista", + "-1474636594": "En este ejemplo, el ciclo se repetirá tres veces, ya que ese es el número de elementos en la lista dada. Durante cada iteración, a la variable \"i\" se le asignará un valor de la lista. ", + "-908772734": "Este bloque evalúa una declaración y realizará una acción solo cuando la declaración sea verdadera.", + "-334040831": "2. En este ejemplo, las instrucciones se repiten siempre que el valor de x sea mayor o igual que 10. Una vez que el valor de x cae por debajo de 10, el ciclo termina.", + "-444267958": "El bloque \"Segundos desde el Epoch\" devuelve el número de segundos desde el 1 de enero de 1970.", + "-447522129": "Es posible que lo necesite cuando desee repetir una acción después de cierto tiempo.", + "-1488259879": "El término \"vela\" se refiere a cada barra en el gráfico de velas. Cada vela representa cuatro precios de mercado para el intervalo de tiempo seleccionado:", + "-2020693608": "Cada vela en el gráfico representa 4 precios de mercado para el intervalo de tiempo seleccionado:", + "-62728852": "- Precio de apertura: el precio de apertura", + "-1247744334": "- Precio bajo: el precio más bajo", + "-1386365697": "- Precio de cierre: el precio de cierre", + "-1498732382": "Una vela negra (o roja) indica que el precio de apertura es más alto que el precio de cierre. Esto representa un movimiento a la baja del precio de mercado.", + "-1871864755": "Este bloque le proporciona el último dígito del último valor de tick del mercado seleccionado. Si el último valor de tick es 1410.90, este bloque devolverá 0. Es útil para contratos basados en dígitos, como Par/Impar, Iguales/Diferentes o Superior/Inferior.", + "-1029671512": "En caso de que se seleccione la operación \"O\", el bloque devuelve \"Verdadero\" en caso de que uno o ambos valores dados sean \"Verdaderos\"", + "-210295176": "Operaciones disponibles:", + "-1385862125": "- Adición", + "-983721613": "- Sustracción", + "-854750243": "- Multiplicación", + "-1394815185": "En caso de que el número dado sea menor que el límite inferior del rango, el bloque devuelve el valor del límite inferior. Del mismo modo, si el número dado es mayor que el límite superior, el bloque devolverá el valor del límite superior. En caso de que el valor dado esté entre límites, el bloque devolverá el valor dado sin cambios.", + "-1034564248": "En el siguiente ejemplo, el bloque devuelve el valor de 10 ya que el valor dado (5) es menor que el límite inferior (10)", + "-2009817572": "Este bloque realiza las siguientes operaciones a un número dado", + "-671300479": "Las operaciones disponibles son:", + "-514610724": "- Absoluto", + "-1923861818": "- El número de Euler (2.71) a la potencia de un número dado", + "-1556344549": "Así es cómo:", + "-1061127827": "- Visite la siguiente URL, asegúrese de reemplazar con el token API de Telegram que creó en el Paso 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. Regrese a DBot y agregue el bloque Notificar Telegram al espacio de trabajo. Pegue el token API de Telegram y la ID de chat en los campos de bloque en consecuencia.", + "-311389920": "En este ejemplo, los precios abiertos de una lista de velas se asignan a una variable llamada \"cl\".", + "-1460794449": "Este bloque le proporciona una lista de velas dentro de un intervalo de tiempo seleccionado.", + "-1634242212": "Utilizado dentro de un bloque de funciones, este bloque devuelve un valor cuando una condición específica es verdadera.", + "-2012970860": "Este bloque le brinda información sobre su último contrato.", + "-1504783522": "Puede elegir ver uno de los siguientes:", + "-10612039": "- Ganancia: la ganancia que ha obtenido", + "-555996976": "- Hora de entrada: la hora de inicio del contrato", + "-1391071125": "- Tiempo de salida: el tiempo de vencimiento del contrato", + "-1961642424": "- Valor de salida: el valor del último tick del contrato", + "-111312913": "- Barrera: el valor de la barrera del contrato (aplicable a los tipos de comercio basados en la barrera, como permanecer dentro / fuera, tocar / no tocar, etc.)", + "-674283099": "- Resultado: el resultado del último contrato: \"ganar\" o \"perder\"", + "-704543890": "Este bloque le proporciona el valor de vela seleccionado, como precio de apertura, precio de cierre, precio alto, precio bajo y tiempo de apertura. Requiere una vela como parámetro de entrada.", + "-482281200": "En el siguiente ejemplo, el precio de apertura se asigna a la variable \"op\".", + "-364621012": "Este bloque le proporciona el valor de vela especificado para un intervalo de tiempo seleccionado. Puede elegir qué valor quiere:", + "-232477769": "- Abierto: el precio de apertura", + "-610736310": "Use este bloque para vender su contrato al precio de mercado. Vender su contrato es opcional. Puede optar por vender si la tendencia del mercado es desfavorable.", + "-1307657508": "Este bloque le brinda la ganancia o pérdida potencial si decide vender su contrato. Solo se puede usar dentro del bloque raíz \"Condiciones de venta\".", + "-1921072225": "En el siguiente ejemplo, el contrato solo se venderá si la ganancia o pérdida potencial es mayor que la inversión.", + "-955397705": "SMA agrega el precio de mercado en una lista de ticks o velas por varios períodos de tiempo, y divide la suma por ese número de períodos de tiempo.", + "-1424923010": "donde n es el número de períodos.", + "-1835384051": "Que indica la SMA", + "-749487251": "SMA sirve como un indicador de la tendencia. Si la SMA apunta hacia arriba, entonces el precio de mercado está aumentando y viceversa. Cuanto mayor es el número de período, más suave es la línea SMA.", + "-1996062088": "En este ejemplo, cada punto de la línea SMA es un promedio aritmético de precios de cierre de los últimos 10 días.", + "-1866751721": "La lista de entrada acepta una lista de ticks o velas, mientras que el período es el período de tiempo especificado.", + "-1097076512": "Puede comparar los valores de SMA calculados en cada ejecución de bot para identificar la dirección de la tendencia del mercado. Alternativamente puede usar una variación del bloque SMA, el bloque del Conjunto de la Media Móvil Simple. ", + "-1254849504": "Si se ingresa un período de 10, el bloque del Conjunto de la Media Móvil Simple devolverá una lista de valores de SMA calculados en función del período de 10.", + "-1190046167": "Este bloque muestra un cuadro de diálogo con un mensaje personalizado. Cuando se muestra el cuadro de diálogo, su estrategia se detiene y solo se reanudará después de hacer clic en \"Aceptar\".", + "-859028989": "En este ejemplo, la fecha y la hora se mostrarán en un cuadro de notificación verde.", + "-1452086215": "En este ejemplo, se comprará un contrato Alza a la medianoche del 1 de agosto de 2019.", + "-1765276625": "Haga clic en el menú desplegable del multiplicador y elija el valor del multiplicador con el que desea operar.", + "-1872233077": "Su ganancia potencial se multiplicará por el valor del multiplicador que haya elegido.", + "-614454953": "Para saber más sobre multiplicadores, vaya a la página <0>Multiplicadores.", + "-2078588404": "Seleccione su mercado deseado y el tipo de activo. Por ejemplo, Forex > Pares principales > AUD/JPY", + "-2037446013": "2.Tipo de Comercio", + "-533927844": "Seleccione su tipo de comercio deseado. Por ejemplo, Arriba/Abajo > Alza/Baja", + "-1192411640": "4. Intervalo de vela predeterminado", + "-485434772": "8. Opciones comerciales", + "-1827646586": "Este bloque asigna un valor dado a una variable, creando la variable si aún no existe.", "-254421190": "Listar: ({{message_length}})", "-9461328": "Seguridad y privacidad", "-418247251": "Descargar su diario.", @@ -2209,17 +2287,6 @@ "-398198412": "Opere en Deriv MT5 (DMT5), la plataforma de operación con CFD y FX todo en uno.", "-1793883644": "Opere FX y CFDs en una plataforma de trading personalizable y fácil de usar.", "-1246992539": "Binary Bot", - "-563774117": "Tablero", - "-773544978": "Página Inicio", - "-1003047246": "Mis Apps", - "-2024365882": "Explore", - "-2038666662": "Sobre nosotros", - "-832198631": "Tarjeta de Crédito/Débito", - "-1787820992": "Plataformas", - "-837532140": "Tipos de Operación", - "-663862998": "Mercados", - "-947407631": "Índices Sintéticos", - "-362324454": "Commodities", "-821418875": "Operador", "-1309011360": "Posiciones abiertas", "-679102561": "Detalles del contrato", @@ -2317,41 +2384,47 @@ "-618539786": "Su cuenta está programada para cerrarse", "-945275490": "Retirar todos los fondos de su cuenta de Opciones.", "-705744796": "El saldo de su cuenta demo ha alcanzado el límite máximo y no podrá realizar nuevas operaciones. Restablezca su saldo para continuar operando desde su cuenta demo.", - "-2067423661": "Mayor seguridad para su cuenta Deriv", - "-1719731099": "Con la autenticación de dos factores, protegerá su cuenta tanto con su contraseña como con su teléfono, para que sólo usted pueda acceder a su cuenta, incluso si alguien conoce su contraseña.", - "-1738575826": "Cambie a la cuenta real o cree una cuenta para acceder al cajero.", + "-1585069798": "Haga clic en el siguiente enlace para completar su Prueba de idoneidad.", + "-1287141934": "Obtenga más información", + "-367759751": "Su cuenta aún no ha sido verificada", + "-596690079": "¿Disfruta usando Deriv?", + "-265932467": "Nos encantaría conocer su opinión", + "-1815573792": "Déjenos su opinión en Trustpilot.", + "-823349637": "Ir a Trustpilot", "-1204063440": "Configurar la moneda de mi cuenta", + "-1164554246": "Envió documentos de identificación caducados", + "-219846634": "Verifiquemos su identidad", + "-529038107": "Instalar", + "-87149410": "Instale la aplicación web DTrader", + "-1738575826": "Cambie a la cuenta real o cree una cuenta para acceder al cajero.", + "-1329329028": "No ha establecido su límite de facturación de 30 días", + "-132893998": "Su acceso al cajero se ha desactivado temporalmente porque no ha establecido su límite de facturación de 30 días. Vaya a Autoexclusión y ajuste el límite.", + "-1852207910": "Retiro MT5 deshabilitado", + "-764323310": "Los retiros de MT5 están deshabilitados en su cuenta. Por favor, revise su correo electrónico para más detalles.", + "-1435762703": "Por favor, verifique su identidad", + "-1902997828": "Recargar ahora", + "-753791937": "Una nueva versión de Deriv está disponible", + "-1775108444": "Esta página se actualizará automáticamente en 5 minutos para cargar la última versión.", + "-1175685940": "Comuníquese con nosotros a través del chat en vivo para habilitar los retiros.", + "-1125797291": "Contraseña actualizada.", + "-157145612": "Inicie sesión con su contraseña actualizada.", + "-87177461": "Vaya a la configuración de su cuenta y complete los datos personales para permitir los depósitos.", + "-904632610": "Reinicie su saldo", + "-470018967": "Reiniciar saldo", + "-156611181": "Complete la evaluación financiera en la configuración de su cuenta para desbloquearla.", "-1925176811": "No se pueden procesar retiros en el momento", "-980696193": "Los retiros no están disponibles temporalmente debido al mantenimiento del sistema. Puede hacer retiros cuando se complete el mantenimiento.", "-1647226944": "No se pueden procesar los depósitos en este momento", "-488032975": "Los depósitos no están disponibles temporalmente debido al mantenimiento del sistema. Puede realizar depósitos cuando se complete el mantenimiento.", "-67021419": "Nuestro cajero está temporalmente fuera de servicio debido al mantenimiento del sistema. Puede acceder al cajero en unos minutos cuando se complete el mantenimiento.", - "-219846634": "Verifiquemos su identidad", - "-367759751": "Su cuenta aún no ha sido verificada", - "-1175685940": "Comuníquese con nosotros a través del chat en vivo para habilitar los retiros.", - "-1852207910": "Retiro MT5 deshabilitado", - "-764323310": "Los retiros de MT5 están deshabilitados en su cuenta. Por favor, revise su correo electrónico para más detalles.", - "-1585069798": "Haga clic en el siguiente enlace para completar su Prueba de idoneidad.", - "-1329329028": "No ha establecido su límite de facturación de 30 días", - "-132893998": "Su acceso al cajero se ha desactivado temporalmente porque no ha establecido su límite de facturación de 30 días. Vaya a Autoexclusión y ajuste el límite.", - "-156611181": "Complete la evaluación financiera en la configuración de su cuenta para desbloquearla.", "-849587074": "No ha proporcionado su número de identificación fiscal", "-47462430": "Esta información es necesaria para los requisitos legales y reglamentarios. Vaya a la configuración de su cuenta y complete su último número de identificación fiscal.", - "-87177461": "Vaya a la configuración de su cuenta y complete los datos personales para permitir los depósitos.", + "-2067423661": "Mayor seguridad para su cuenta Deriv", + "-1719731099": "Con la autenticación de dos factores, protegerá su cuenta tanto con su contraseña como con su teléfono, para que sólo usted pueda acceder a su cuenta, incluso si alguien conoce su contraseña.", + "-822888359": "Su retiro está bloqueado", + "-1197701578": "Vuelva a presentar su prueba de identidad y complete la evaluación financiera en la configuración de la cuenta para desbloquearla.", "-2087822170": "Está desconectado", "-1669693571": "Revise su conexión.", - "-1125797291": "Contraseña actualizada.", - "-157145612": "Inicie sesión con su contraseña actualizada.", - "-904632610": "Reinicie su saldo", - "-470018967": "Reiniciar saldo", - "-1435762703": "Por favor, verifique su identidad", - "-1164554246": "Envió documentos de identificación caducados", - "-1902997828": "Recargar ahora", - "-753791937": "Una nueva versión de Deriv está disponible", - "-1775108444": "Esta página se actualizará automáticamente en 5 minutos para cargar la última versión.", - "-529038107": "Instalar", - "-87149410": "Instale la aplicación web DTrader", - "-1287141934": "Obtenga más información", "-1998049070": "Si acepta nuestro uso de cookies, haga clic en Aceptar. Para obtener más información, <0>consulte nuestra política.", "-1721181859": "Necesitará una cuenta de {{deriv_account}}", "-1989074395": "Primero agregue una cuenta de {{deriv_account}} antes de agregar una cuenta de {{dmt5_account}}. Los depósitos y retiros de su cuenta {{dmt5_label}} se realizan mediante la transferencia de fondos desde y hacia su cuenta {{deriv_label}}.", @@ -2386,6 +2459,7 @@ "-1950045402": "Retire todos sus fondos", "-168971942": "Lo que esto significa para usted", "-905560792": "Vale, lo entiendo", + "-2024365882": "Explore", "-1197864059": "Crear cuenta demo gratis", "-1485242688": "Paso {{step}}: {{step_title}} ({{step}} de {{steps}})", "-1829842622": "Puede abrir una cuenta para cada criptomoneda.", @@ -2439,6 +2513,7 @@ "-1917706589": "Su cuenta de Deriv está desvinculada de {{social_identity_provider}}. Utilice su correo electrónico y contraseña para iniciar sesión en el futuro.", "-2017825013": "Entendido", "-505449293": "Ingrese una nueva contraseña para su cuenta Deriv.", + "-1787820992": "Plataformas", "-184713104": "Obtenga pagos fijos con opciones u opere con multiplicadores para amplificar sus ganancias con un riesgo limitado.", "-1571775875": "Nuestra plataforma insignia de trading con opciones y multiplicadores.", "-1107320163": "Automatice sus operaciones, sin necesidad de codificación.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d. Si la decisión se toma a nuestro favor, debe proporcionarnos una autorización dentro de los 7 días posteriores a la fecha en que se tomó la decisión, y la queja se considerará cerrada.", "-429248139": "5. Descargo de responsabilidad", "-818926350": "La Comisión Financiera acepta apelaciones durante los 45 días posteriores a la fecha del incidente y solo después de que el operador haya tratado de resolver el problema directamente con la empresa.", - "-236548954": "Error de actualización del contrato", "-1282933308": "No {{barrier}}", "-968190634": "Iguales {{barrier}}", "-1747377543": "Debajo de {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Dígitos", "-1790089996": "¡NUEVO!", "-590018519": "Contrato comprado", - "-328036042": "Ingrese una cantidad de stop loss que sea mayor que la pérdida potencial actual.", - "-2127699317": "Stop loss inválido. Stop loss no puede ser superior a una inversión.", "-405439829": "Lo sentimos, no puede ver este contrato porque no pertenece a esta cuenta.", "-1714959941": "Esta visualización de gráfico no es ideal para contratos de tick", "-1254554534": "Cambie la duración del gráfico para marcar una mejor experiencia comercial.", @@ -2593,22 +2665,13 @@ "-584696680": "Si selecciona \"Tomar ganancias\" y especifica una cantidad que le gustaría ganar, su posición se cerrará automáticamente cuando su ganancia sea mayor o igual a esta cantidad. Su ganancia puede ser mayor que la cantidad que ingresó dependiendo del precio de mercado al cierre.", "-178096090": "\"Take profit\" no se puede actualizar. Puede actualizarlo solo cuando la \"Cancelación del trato\" expire.", "-206909651": "El punto de entrada es el precio de mercado cuando nuestros servidores procesan su contrato.", - "-673424733": "Cuenta de prueba", - "-1066565281": "El mantenimiento del servidor comienza a las 06:00 GMT todos los domingos y puede durar hasta 2 horas. El servicio puede ser interrumpido durante este tiempo.", - "-1481390656": "Mantenimiento del servidor empieza de las 01:00 GMT todos los domingos. Este proceso puede demorar hasta 2 horas en completarse. El servicio puede ser interrumpido durante este tiempo.", - "-1199152768": "Explore nuestras otras plataformas.", - "-498346912": "Explore DBot", + "-464262734": "Administre la contraseña de cuenta real {{account_title}} de {{platform}}", "-2042845290": "Su contraseña de inversionista ha sido cambiada.", "-1882295407": "Su contraseña sido cambiada.", "-254497873": "Use esta contraseña para otorgar acceso de visualización a otro usuario. Mientras que pueden ver su cuenta comercial, no podrán comerciar ni realizar ninguna otra acción.", "-161656683": "Actual contraseña de inversor", "-374736923": "Nueva contraseña de inversor", "-1793894323": "Crear o restablecer la contraseña de inversor", - "-464262734": "Administre la contraseña de cuenta real {{account_title}} de {{platform}}", - "-1928229820": "Restablecer la contraseña del inversor Deriv X", - "-1917043724": "Restablecer la contraseña del inversor DMT5", - "-1087845020": "principal", - "-1950683866": "inversor", "-149836494": "El número de referencia de su transacción es {{transaction_id}}", "-1382749084": "Volver al trading", "-538215347": "Depósitos netos", @@ -2737,7 +2800,6 @@ "-1588406981": "Puede verificar el resultado de la última operación con este bloque.", "-1459154781": "Detalles de contrato: {{ contract_detail }}", "-1652241017": "Lee una propiedad seleccionada de la lista de detalles del contrato", - "-2012970860": "Este bloque le brinda información sobre su último contrato.", "-2082345383": "Estos bloques transfieren el control al bloque Condiciones de compra.", "-172574065": "Este bloque transferirá el control nuevamente al bloque de Condiciones de compra, permitiéndole comprar otro contrato.", "-403103225": "reiniciar", @@ -2780,7 +2842,6 @@ "-1556495906": "Devuelve una lista de valores específicos de una lista de velas según el intervalo de tiempo seleccionado", "-166816850": "Crear una lista de valores de velas (1)", "-1261436901": "Lista de velas", - "-1460794449": "Este bloque le proporciona una lista de velas dentro de un intervalo de tiempo seleccionado.", "-1174859923": "Leer el valor de vela seleccionado", "-1972165119": "Leer el valor de la vela (1)", "-1956100732": "Puede usar este bloque para analizar los ticks, independientemente de sus operaciones", @@ -2830,10 +2891,13 @@ "-702370957": "Convertir a fecha / hora", "-982729677": "Convertir a marca temporal", "-311268215": "Este bloque convierte una cadena de texto que representa la fecha y la hora en segundos desde el Epoch Unix (1 de enero de 1970). El desplazamiento de hora y zona horaria es opcional. Ejemplo: 2019-01-01 21:03:45 GMT + 0800 se convertirá a 1546347825.", + "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", + "-1214929127": "El stop loss debe ser un número positivo.", + "-2142851225": "Opciones de operaciones con multiplicador", + "-625636913": "El monto debe ser un número positivo.", "-1466383897": "Duración: {{ duration_unit }} {{ duration_value }}", "-440702280": "Opciones comerciales", "-1193894978": "Defina sus opciones comerciales, como la duración y la inversión. Algunas opciones solo son aplicables para ciertos tipos de comercio.", - "-625636913": "El monto debe ser un número positivo.", "-46523443": "El valor de duración no está permitido. Para ejecutar el bot, ingrese un valor entre {{min}} a {{max}}.", "-1483427522": "Tipo de operación: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Parámetros comerciales", @@ -2841,7 +2905,6 @@ "-783173909": "Opciones comerciales:", "-376956832": "Aquí es donde define los parámetros de su contrato.", "-1244007240": "si {{ condition }} entonces", - "-908772734": "Este bloque evalúa una declaración y realizará una acción solo cuando la declaración sea verdadera.", "-1577206704": "si en cambio", "-33796979": "verdadero", "-1434883449": "Este es un bloque único que devuelve un valor booleano, ya sea verdadero o falso.", @@ -2903,84 +2966,11 @@ "-1133072029": "Longitud de cadena de texto", "-1109723338": "imprimir {{ input_text }}", "-736668830": "Imprimir", - "-1190046167": "Este bloque muestra un cuadro de diálogo con un mensaje personalizado. Cuando se muestra el cuadro de diálogo, su estrategia se detiene y solo se reanudará después de hacer clic en \"Aceptar\".", "-1821552998": "recortar espacios de {{ side }} de {{ input_text }}", "-801766026": "lado derecho", "-474779821": "Corta espacios", "-1219239717": "Falta uno o más bloques obligatorios en su espacio de trabajo. Agregue los bloques requeridos e intente nuevamente.", "-250761331": "Uno o más bloques obligatorios están deshabilitados en su espacio de trabajo. Habilite los bloques necesarios y vuelva a intentarlo.", - "-187634388": "Este bloque es obligatorio. Aquí es donde puede decidir si su bot debe continuar operando. Solo se permite una copia de este bloque.", - "-2105473795": "El único parámetro de entrada determina cómo se formateará la salida de bloque. En caso de que el parámetro de entrada sea \"cadena\", se agregará la moneda de la cuenta.", - "-1800436138": "2. para \"número\": 1325.68", - "-2046396241": "Este bloque es obligatorio. Solo se permite una copia de este bloque. Se agrega al lienzo de forma predeterminada cuando abre DBot.", - "-530632460": "Este bloque se usa para determinar si el precio de mercado se mueve en la dirección seleccionada o no. Le da un valor de \"Verdadero\" o \"Falso\".", - "-1875717842": "Ejemplos:", - "-890079872": "1. Si la dirección seleccionada es \"Alza\", y el valor de tick anterior es menor que el valor de tick actual, la salida será \"Verdadero\". De lo contrario, la salida será una cadena vacía.", - "-489739641": "2. Si la dirección seleccionada es \"Baja\", y el valor de tick anterior es mayor que el valor de tick actual, el resultado será \"Verdadero\". De lo contrario, el resultado será una cadena vacía.", - "-2116076360": "Hay 4 tipos de mensajes:", - "-1421941045": "2. 'Advertir' muestra un mensaje en amarillo para resaltar algo que necesita atención.", - "-277850921": "Si se selecciona \"Ganar\", devolverá \"Verdadero\" si su última operación fue exitosa. De lo contrario, devolverá una cadena vacía.", - "-1918487001": "Ejemplo:", - "-2139916657": "1. En el siguiente ejemplo, el ciclo finaliza en caso de que \"x\" sea \"Falso\" aunque solo se complete una iteración", - "-1238900333": "2. En el siguiente ejemplo, el bucle salta a la siguiente iteración sin ejecutar el siguiente bloque en caso de que \"x\" sea \"Falso\"", - "-1729479576": "Puede usar \"i\" dentro del bucle, por ejemplo para acceder a los elementos de la lista", - "-1474636594": "En este ejemplo, el ciclo se repetirá tres veces, ya que ese es el número de elementos en la lista dada. Durante cada iteración, a la variable \"i\" se le asignará un valor de la lista. ", - "-334040831": "2. En este ejemplo, las instrucciones se repiten siempre que el valor de x sea mayor o igual que 10. Una vez que el valor de x cae por debajo de 10, el ciclo termina.", - "-444267958": "El bloque \"Segundos desde el Epoch\" devuelve el número de segundos desde el 1 de enero de 1970.", - "-447522129": "Es posible que lo necesite cuando desee repetir una acción después de cierto tiempo.", - "-1488259879": "El término \"vela\" se refiere a cada barra en el gráfico de velas. Cada vela representa cuatro precios de mercado para el intervalo de tiempo seleccionado:", - "-2020693608": "Cada vela en el gráfico representa 4 precios de mercado para el intervalo de tiempo seleccionado:", - "-62728852": "- Precio de apertura: el precio de apertura", - "-1247744334": "- Precio bajo: el precio más bajo", - "-1386365697": "- Precio de cierre: el precio de cierre", - "-1498732382": "Una vela negra (o roja) indica que el precio de apertura es más alto que el precio de cierre. Esto representa un movimiento a la baja del precio de mercado.", - "-1871864755": "Este bloque le proporciona el último dígito del último valor de tick del mercado seleccionado. Si el último valor de tick es 1410.90, este bloque devolverá 0. Es útil para contratos basados en dígitos, como Par/Impar, Iguales/Diferentes o Superior/Inferior.", - "-1029671512": "En caso de que se seleccione la operación \"O\", el bloque devuelve \"Verdadero\" en caso de que uno o ambos valores dados sean \"Verdaderos\"", - "-210295176": "Operaciones disponibles:", - "-1385862125": "- Adición", - "-983721613": "- Sustracción", - "-854750243": "- Multiplicación", - "-1394815185": "En caso de que el número dado sea menor que el límite inferior del rango, el bloque devuelve el valor del límite inferior. Del mismo modo, si el número dado es mayor que el límite superior, el bloque devolverá el valor del límite superior. En caso de que el valor dado esté entre límites, el bloque devolverá el valor dado sin cambios.", - "-1034564248": "En el siguiente ejemplo, el bloque devuelve el valor de 10 ya que el valor dado (5) es menor que el límite inferior (10)", - "-2009817572": "Este bloque realiza las siguientes operaciones a un número dado", - "-671300479": "Las operaciones disponibles son:", - "-514610724": "- Absoluto", - "-1923861818": "- El número de Euler (2.71) a la potencia de un número dado", - "-1556344549": "Así es cómo:", - "-1061127827": "- Visite la siguiente URL, asegúrese de reemplazar con el token API de Telegram que creó en el Paso 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. Regrese a DBot y agregue el bloque Notificar Telegram al espacio de trabajo. Pegue el token API de Telegram y la ID de chat en los campos de bloque en consecuencia.", - "-311389920": "En este ejemplo, los precios abiertos de una lista de velas se asignan a una variable llamada \"cl\".", - "-1634242212": "Utilizado dentro de un bloque de funciones, este bloque devuelve un valor cuando una condición específica es verdadera.", - "-1504783522": "Puede elegir ver uno de los siguientes:", - "-10612039": "- Ganancia: la ganancia que ha obtenido", - "-555996976": "- Hora de entrada: la hora de inicio del contrato", - "-1391071125": "- Tiempo de salida: el tiempo de vencimiento del contrato", - "-1961642424": "- Valor de salida: el valor del último tick del contrato", - "-111312913": "- Barrera: el valor de la barrera del contrato (aplicable a los tipos de comercio basados en la barrera, como permanecer dentro / fuera, tocar / no tocar, etc.)", - "-674283099": "- Resultado: el resultado del último contrato: \"ganar\" o \"perder\"", - "-704543890": "Este bloque le proporciona el valor de vela seleccionado, como precio de apertura, precio de cierre, precio alto, precio bajo y tiempo de apertura. Requiere una vela como parámetro de entrada.", - "-482281200": "En el siguiente ejemplo, el precio de apertura se asigna a la variable \"op\".", - "-364621012": "Este bloque le proporciona el valor de vela especificado para un intervalo de tiempo seleccionado. Puede elegir qué valor quiere:", - "-232477769": "- Abierto: el precio de apertura", - "-610736310": "Use este bloque para vender su contrato al precio de mercado. Vender su contrato es opcional. Puede optar por vender si la tendencia del mercado es desfavorable.", - "-1307657508": "Este bloque le brinda la ganancia o pérdida potencial si decide vender su contrato. Solo se puede usar dentro del bloque raíz \"Condiciones de venta\".", - "-1921072225": "En el siguiente ejemplo, el contrato solo se venderá si la ganancia o pérdida potencial es mayor que la inversión.", - "-955397705": "SMA agrega el precio de mercado en una lista de ticks o velas por varios períodos de tiempo, y divide la suma por ese número de períodos de tiempo.", - "-1424923010": "donde n es el número de períodos.", - "-1835384051": "Que indica la SMA", - "-749487251": "SMA sirve como un indicador de la tendencia. Si la SMA apunta hacia arriba, entonces el precio de mercado está aumentando y viceversa. Cuanto mayor es el número de período, más suave es la línea SMA.", - "-1996062088": "En este ejemplo, cada punto de la línea SMA es un promedio aritmético de precios de cierre de los últimos 10 días.", - "-1866751721": "La lista de entrada acepta una lista de ticks o velas, mientras que el período es el período de tiempo especificado.", - "-1097076512": "Puede comparar los valores de SMA calculados en cada ejecución de bot para identificar la dirección de la tendencia del mercado. Alternativamente puede usar una variación del bloque SMA, el bloque del Conjunto de la Media Móvil Simple. ", - "-1254849504": "Si se ingresa un período de 10, el bloque del Conjunto de la Media Móvil Simple devolverá una lista de valores de SMA calculados en función del período de 10.", - "-859028989": "En este ejemplo, la fecha y la hora se mostrarán en un cuadro de notificación verde.", - "-1452086215": "En este ejemplo, se comprará un contrato Alza a la medianoche del 1 de agosto de 2019.", - "-2078588404": "Seleccione su mercado deseado y el tipo de activo. Por ejemplo, Forex > Pares principales > AUD/JPY", - "-2037446013": "2.Tipo de Comercio", - "-533927844": "Seleccione su tipo de comercio deseado. Por ejemplo, Arriba/Abajo > Alza/Baja", - "-1192411640": "4. Intervalo de vela predeterminado", - "-485434772": "8. Opciones comerciales", - "-1827646586": "Este bloque asigna un valor dado a una variable, creando la variable si aún no existe.", "-1687036846": "Descargar bloque", "-1266781295": "Expandir", "-894560707": "función", diff --git a/packages/translations/src/translations/fr.json b/packages/translations/src/translations/fr.json index b888e91dda6d..947552cfa63f 100644 --- a/packages/translations/src/translations/fr.json +++ b/packages/translations/src/translations/fr.json @@ -7,7 +7,6 @@ "11872052": "Oui, je reviendrai plus tard", "14365404": "Échec de la demande pour: {{ message_type }}, nouvelle tentative dans {{ delay }}s", "15377251": "Montant du profit: {{profit}}", - "17217397": "Cryptomonnaie", "17843034": "Vérifier le statut de la vérification de la pièce d'identité", "21035405": "Pourriez-vous nous dire pourquoi vous partez s'il vous plait ? (Sélectionnez jusqu'à {{ allowed_reasons }} raisons.)", "25854018": "Ce bloc affiche des messages dans la console du développeur avec une entrée qui peut être soit une chaîne de texte, un nombre, un booléen ou un tableau de données.", @@ -22,6 +21,7 @@ "46523711": "Votre pièce d'identité est vérifiée", "49963458": "Choisissez une option", "54185751": "Moins de $100 000", + "55340304": "Garder votre contrat actuel?", "55916349": "Tout", "58254854": "Périmètre", "59169515": "Si vous sélectionnez « Asiatique/hausse », vous gagnez si le dernier tick est supérieur à la moyenne des ticks.", @@ -61,7 +61,6 @@ "111931529": "Max. mise totale sur 7 jours", "113378532": "ETH/USD", "113884303": "Index Allemagne", - "113933902": "Téléchargez l’application Deriv X", "115032488": "Prix ​​d'achat et P/L", "116005488": "Indicateurs", "117318539": "Le mot de passe doit être composé de majuscules, de minuscules et de chiffres.", @@ -163,7 +162,6 @@ "270339490": "Si vous sélectionnez \"Over\", vous gagnerez le paiement si le dernier chiffre du dernier tick est supérieur à votre prédiction.", "270610771": "Dans cet exemple, le prix d'ouverture d'une bougie est affecté à la variable \"candle_open_price\".", "270712176": "descendant", - "270727821": "Indices Boursiers", "270780527": "Vous avez atteint la limite de téléchargement de vos documents.", "272179372": "Ce bloc est couramment utilisé pour ajuster les paramètres de votre prochain trade et pour implémenter une logique stop loss/take profit.", "273350342": "Copiez et collez le token dans l'application.", @@ -197,7 +195,6 @@ "317601768": "Thèmes", "318865860": "clôture", "318984807": "Ce bloc répète les instructions contenues à l'intérieur pour un nombre spécifique de fois.", - "319538091": "DMT5 Financier STP", "323179846": "L'intervalle de temps pour chaque bougie peut être réglé d'une minute à un jour.", "323209316": "Sélectionnez une stratégie de Binary Bot", "325662004": "Développer le bloc", @@ -248,7 +245,6 @@ "384303768": "Ce bloc renvoie \"True\" si la dernière bougie est noire. Il peut être placé n'importe où sur le canevas, sauf dans le bloc racine des paramètres commerciaux.", "386502387": "Le bot n'est pas en marche", "389923099": "Effectuer un zoom avant", - "390647540": "Compte réel", "390890891": "Dernier trimestre", "391915203": "Opérations de couverture", "392582370": "La baisse est égale à", @@ -256,7 +252,6 @@ "396961806": "Nous ne prenons pas en charge les tokens Polygon (Matic), pour les dépôts veuillez utiliser uniquement Ethereum ({{token}}).", "399387585": "Veuillez vérifier votre courriel pour plus de détails. Si vous avez des questions, veuillez consulter notre <0>Centre d'aide.", "401339495": "Vérifier l'adresse", - "402343402": "En raison d'un problème sur notre serveur, certains de vos comptes {{platform}} ne sont pas disponibles pour le moment. Merci de votre patience.", "403456289": "La formule pour SMA est la suivante:", "404743411": "Dépôts Totaux", "406359555": "Détails du contrat", @@ -271,6 +266,7 @@ "427134581": "Essayez d'utiliser un autre type de fichier.", "427617266": "Bitcoin", "428709688": "Votre intervalle de temps préféré entre chaque rapport:", + "432508385": "Take Profit: {{ currency }} {{ take_profit }}", "432519573": "Document téléchargé", "433348384": "Les comptes réels ne sont pas disponibles pour les personnes politiquement exposées (PPE).", "433616983": "2. Phase d'enquête", @@ -326,7 +322,6 @@ "505793554": "dernière lettre", "510815408": "Lettres, chiffres, espaces, traits d'union uniquement", "514031715": "la liste {{ input_list }} est vide", - "514776243": "Votre mot de passe {{account_type}} a été modifié.", "514948272": "Copier le lien", "518955798": "7. Exécuter une fois au démarrage", "520136698": "Indice Boom 500", @@ -438,7 +433,6 @@ "659482342": "N'oubliez pas qu'il est de votre responsabilité de maintenir vos informations exactes et à jour. Vous pouvez mettre à jour vos données personnelles à tout moment dans vos paramètres de compte.", "660481941": "Pour accéder à vos applications mobiles et à d'autres applications tierces, vous devez d'abord générer un token API.", "660991534": "Terminé", - "662609119": "Téléchargez l’application MT5", "665089217": "Veuillez soumettre votre <0>document d'identité pour authentifier votre compte et accéder à votre caisse.", "665777772": "XLM/USD", "665872465": "Dans l'exemple ci-dessous, le prix d'ouverture est sélectionné, qui est ensuite affecté à une variable appelée \"op\".", @@ -590,6 +584,7 @@ "872957901": "Sombre (Bientôt sur DBot)", "873166343": "1. «Log» affiche un message régulier.", "874461655": "Scannez le code QR avec votre téléphone", + "874484887": "Le Take Profit doit être un nombre positif.", "875532284": "Redémarrez le processus sur un autre appareil", "876086855": "Remplissez le formulaire d'évaluation financière", "876292912": "Sortie", @@ -637,7 +632,6 @@ "947046137": "Votre retrait sera traité dans les 24 heures", "947363256": "Créer une liste", "947758334": "Ville/Village est requis", - "948156236": "Créer un {{type}} mot de passe", "949859957": "Envoyer", "952655566": "Agent de paiement", "956448295": "Image coupée détectée", @@ -765,7 +759,6 @@ "1129124569": "Si vous sélectionnez \"Under\", vous gagnerez le paiement si le dernier chiffre du dernier tick est inférieur à votre prédiction.", "1129296176": "AVIS IMPORTANT POUR RECEVOIR VOS FONDS", "1129842439": "Veuillez saisir un montant de profit.", - "1129984312": "Virement Bancaire", "1130744117": "Nous essaierons de résoudre votre réclamation dans les 10 jours ouvrables. Nous vous informerons du résultat avec une explication de notre position et vous proposerons les mesures correctives que nous avons l'intention de prendre.", "1130791706": "N", "1133651559": "Chat en direct", @@ -878,6 +871,7 @@ "1293660048": "Max. perte totale par jour", "1294756261": "Ce bloc crée une fonction, qui est un groupe d'instructions pouvant être exécutées à tout moment. Placez d'autres blocs ici pour effectuer tout type d'action dont vous avez besoin dans votre stratégie. Lorsque toutes les instructions d'une fonction ont été exécutées, votre bot continuera avec les blocs restants de votre stratégie. Cliquez sur le champ «faire quelque chose» pour lui donner le nom de votre choix. Cliquez sur l'icône plus pour envoyer une valeur (en tant que variable nommée) à votre fonction.", "1295284664": "Veuillez accepter nos <0>Conditions générales mises à jour pour continuer.", + "1296380713": "Fermer mon contrat", "1299479533": "8 heures", "1301668579": "Nous travaillons pour que cela soit disponible pour vous bientôt. Si vous avez un autre compte, passez à ce compte pour continuer à trader. Vous pouvez ajouter un DMT5 Financial.", "1302691457": "Profession", @@ -921,7 +915,6 @@ "1346339408": "Résponsables", "1347071802": "Il y a {{minutePast}}m", "1348009461": "Veuillez fermer vos positions dans le compte Deriv X suivant :", - "1349142948": "DMT5 Financier", "1349289354": "Parfait, c'est tout ce dont nous avons besoin", "1349295677": "dans le texte {{ input_text }} obtenir la sous-chaîne de {{ position1 }} {{ index1 }} à {{ position2 }} {{ index2 }}", "1351152200": "Bienvenue sur votre tableau de bord Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "avec intervalle: %1", "1468308734": "Ce bloc répète les instructions tant qu'une condition donnée est vraie", "1468419186": "Deriv prend actuellement en charge les retraits de Tether USDT vers Omni. Pour garantir une transaction réussie, saisissez une adresse de portefeuille compatible avec les jetons que vous souhaitez retirer. <0>En savoir plus", + "1469150826": "Take Profit", "1469764234": "Erreur de caisse", "1469814942": "- Division", "1470319695": "Renvoie True ou False", @@ -1043,7 +1037,6 @@ "1502325741": "Votre mot de passe ne peut pas être identique à votre adresse e-mail.", "1503618738": "- ID de référence de l'accord: l'ID de référence du contrat", "1505898522": "Télécharger la pile", - "1506251760": "Porte-feuilles", "1509570124": "{{buy_value}} (Acheter)", "1509678193": "Éducation", "1510075920": "Or/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Votre lien mobile expirera dans une heure", "1577527507": "La raison de l'ouverture du compte est requise.", "1577612026": "Sélectionnez un dossier", + "1579484521": "Plateforme de trading", "1580498808": "Plusieurs visages trouvés", "1584109614": "Liste des chaînes de tiques", "1584936297": "Le fichier XML contient des éléments non pris en charge. Veuillez vérifier ou modifier le fichier.", @@ -1107,6 +1101,7 @@ "1620278321": "Les noms et prénoms sont faciles à deviner", "1620346110": "Choisir la devise", "1622662457": "Date du", + "1623706874": "Utilisez ce bloc lorsque vous souhaitez utiliser les multiplicateurs comme type de transaction.", "1630372516": "Essayez notre Fiat onramp", "1630417358": "Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre les retraits.", "1634594289": "Sélectionnez une langue", @@ -1126,6 +1121,7 @@ "1651513020": "Afficher le temps restant pour chaque intervalle", "1651951220": "Les répétitions comme \"abcabcabc\" ne sont que légèrement plus difficiles à deviner que \"abc\"", "1652366857": "obtenir et supprimer", + "1652968048": "Définissez vos options de trading telles que le multiplicateur et la mise.", "1652976865": "Dans cet exemple, ce bloc est utilisé avec un autre bloc pour obtenir les prix ouverts à partir d'une liste de bougies. Les prix ouverts sont ensuite affectés à la variable appelée \"cl\".", "1653136377": "copié!", "1653159197": "Retrait par agent de paiement", @@ -1142,6 +1138,7 @@ "1665738338": "Solde", "1665756261": "Allez sur le chat en direct", "1667395210": "Votre pièce d'identité a été soumise avec succès", + "1670016002": "Multiplicateur: {{ multiplier }}", "1670426231": "Heure de fin", "1671232191": "Vous avez défini les limites suivantes:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Avertissement", "1736292549": "Mettre à jour le code postal", "1737352280": "Bot.init n’est pas appelé", - "1738504192": "Portefeuille électronique", "1738681493": "Retirez vos lunettes, si nécessaire", "1739384082": "Chômeur", "1740371444": "Le marché sous-jacent n'est pas sélectionné", @@ -1250,7 +1246,6 @@ "1820332333": "Recharger", "1824193700": "Ce bloc vous donne le dernier chiffre de la dernière valeur de tick.", "1827607208": "Fichier non téléchargé.", - "1828994348": "DMT5 n'est pas disponible en/au {{country}}", "1832974109": "SmartTrader", "1833481689": "Débloquer", "1837762008": "Veuillez soumettre votre preuve d'identité et votre preuve d'adresse pour vérifier votre compte dans les paramètres de votre compte pour accéder à la caisse.", @@ -1308,7 +1303,6 @@ "1887852176": "Le site est en cours de mise à jour", "1889357660": "Entrez une valeur en minutes, jusqu'à 60480 minutes (équivalent à 6 semaines).", "1890171328": "En cliquant sur Accepter ci-dessous et en procédant à l'ouverture du compte, vous devez noter que vous pouvez vous exposer à des risques (qui peuvent être importants, y compris le risque de perte de la totalité de la somme investie) que vous ne possédez peut-être pas les connaissances et l'expérience nécessaires pour évaluer correctement ou atténuer.", - "1890284485": "Explorer DTrader", "1890332321": "Renvoie le nombre de caractères d'une chaîne de texte donnée, y compris les nombres, les espaces, les signes de ponctuation et les symboles.", "1894667135": "Veuillez vérifier votre preuve d'adresse", "1898670234": "{{formatted_opening_time}} (GMT) le lundi {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Ajouter ou gérer un compte", "1973536221": "Vous n'avez pas encore de positions ouvertes.", "1982912252": "Index de force relative (RSI en anglais) d’une liste avec une période", + "1983001416": "Définissez vos options de transaction telles que le multiplicateur et la mise. Ce bloc ne peut être utilisé qu'avec le type de transaction multiplicateur. Si vous sélectionnez un autre type de transaction, ce bloc sera remplacé par le bloc Trade Options.", "1983387308": "Aperçu", "1983544897": "P.O. La boîte n'est pas acceptée dans l'adresse", "1983676099": "Veuillez vérifier vos emails pour plus de détails.", @@ -1491,7 +1486,6 @@ "2138861911": "Les scans et photocopies ne sont pas acceptés", "2139171480": "Reset Up/Reset Down", "2139362660": "côté gauche", - "2141055709": "Nouveau mot de passe {{type}}", "2143803283": "Erreur d'achat", "2144609616": "Si vous sélectionnez \"Reset-Down\", vous gagnez le paiement si le point de sortie est strictement inférieur au point d'entrée ou au point de réinitialisation.", "2145690912": "Revenus salariés", @@ -1948,7 +1942,6 @@ "-582721696": "Le montant actuel du retrait autorisé est de {{format_min_withdraw_amount}} à {{format_max_withdraw_amount}}{{currency}}", "-1957498244": "plus", "-1684548351": "Passer à un compte crypto", - "-1345040662": "Vous cherchez un moyen d'acheter des crypto-monnaies ?", "-197251450": "Vous ne voulez pas trader en {{currency_code}} ? Vous pouvez ouvrir un autre compte de cryptomonnaie.", "-212277385": "Vous ne pouvez plus changer la devise de votre compte parce que vous avez effectué un dépôt sur votre compte fiat ou créé un compte réel DMT5 ou Deriv X. Veuillez nous contacter via <0>live chat pour toute clarification.", "-1900848111": "Il s'agit de votre compte {{currency_code}}.", @@ -2022,6 +2015,7 @@ "-811190405": "Heure", "-2004264970": "L'adresse de votre portefeuille doit comporter 25 et 64 caractères.", "-1707299138": "Votre adresse de portefeuille {{currency_symbol}}", + "-1179992129": "Tous les agents de paiement", "-922432739": "Veuillez saisir un ID de connexion client valide.", "-1024241603": "Solde insuffisant.", "-1979554765": "Veuillez saisir une description valide.", @@ -2033,7 +2027,6 @@ "-1388977563": "Copié!", "-1962894999": "Cette adresse ne peut être utilisée qu'UNE SEULE FOIS. Veuillez en copier un nouveau pour votre prochaine transaction.", "-451858550": "En cliquant sur \"Continuer\", vous serez redirigé vers {{ service }}, un fournisseur de services de paiement tiers. Veuillez noter que {{ website_name }} n'est pas responsable du contenu ou des services fournis par {{ service }}. Si vous rencontrez des problèmes liés aux services {{ service }}, vous devez contacter {{ service }} directement.", - "-1179992129": "Tous les agents de paiement", "-344959847": "Un agent de paiement est autorisé à traiter les dépôts et les retraits à votre place si vos modes de paiement locaux ou vos devises ne sont pas pris en charge sur {{website_name}}.", "-1232852916": "Nous passons à votre compte {{currency}} pour consulter la transaction.", "-38063175": "portefeuille {{account_text}}", @@ -2056,6 +2049,7 @@ "-1615615253": "Nous ne prenons pas en charge les tokens Tron, pour les dépôts veuillez utiliser uniquement Ethereum ({{token}}).", "-1831000957": "Veuillez sélectionner le réseau d'où proviendra votre dépôt.", "-314177745": "Malheureusement, nous n'avons pas pu obtenir l'adresse car notre serveur était en panne. Veuillez cliquer sur Actualiser pour recharger l'adresse ou réessayez plus tard.", + "-1345040662": "Vous cherchez un moyen d'acheter des crypto-monnaies ?", "-2005265642": "Fiat onramp est un service de caisse qui vous permet de convertir des devises fiduciaires en crypto pour recharger vos comptes crypto Deriv. Voici la liste des échanges cryptographiques tiers. Vous devrez créer un compte avec eux pour utiliser leurs services.", "-1593063457": "Sélectionnez le canal de paiement", "-130833284": "Veuillez noter que vos limites de retrait maximales et minimales ne sont pas fixes. Elles changent en raison de la grande volatilité des crypto-monnaies.", @@ -2093,6 +2087,8 @@ "-1354485738": "Reset Call", "-376148198": "Que des Montées", "-1337379177": "Tick Haut", + "-328036042": "Veuillez saisir un montant de stop loss supérieur à la perte potentielle actuelle.", + "-2127699317": "Stop loss non valide. Stop loss ne peut être plus que la mise.", "-1940333322": "DBot n'est pas disponible pour ce compte", "-1210387519": "Accéder au tableau de bord DMT5", "-1223145005": "Montant de la perte: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Durée maximale: {{ max }}", "-1194719174": "Le montant multiplicateur utilisé pour augmenter votre mise si vous perdez un trade.", "-749186458": "Le changement de compte est désactivé pendant l'exécution de votre bot. Veuillez arrêter votre bot avant de changer de compte.", + "-662836330": "Souhaitez-vous conserver votre contrat actuel ou le clôturer ? Si vous décidez de le maintenir en cours, vous pourrez le vérifier et le clôturer ultérieurement sur la page <0>Rapports.", + "-597939268": "Garder mon contrat", "-1322453991": "Vous devez vous connecter pour exécuter le bot.", "-1483938124": "Cette stratégie n'est actuellement pas compatible avec DBot.", + "-236548954": "Erreur de mise à jour du contrat", "-1428017300": "LE", "-1450728048": "DE", "-255051108": "VOUS", "-1845434627": "EST", "-931434605": "CA", "-740712821": "UN", + "-187634388": "Ce bloc est obligatoire. Voici où vous pouvez décider si votre bot doit continuer à trader. Une seule copie de ce bloc est autorisée.", + "-2105473795": "Le seul paramètre d'entrée détermine le formatage de la sortie du bloc. Si le paramètre d'entrée est \"chaîne\", la devise du compte sera ajoutée.", + "-1800436138": "2. pour \"nombre\": 1325,68", + "-2046396241": "Ce bloc est obligatoire. Une seule copie de ce bloc est autorisée. Il est ajouté au canevas par défaut lorsque vous ouvrez DBot.", + "-530632460": "Ce bloc est utilisé pour déterminer si le prix du marché évolue dans la direction choisie ou non. Il vous donne une valeur de «True» ou «False».", + "-1875717842": "Exemples:", + "-890079872": "1. Si la direction sélectionnée est \"Montée\" et que la valeur de graduation précédente est inférieure à la valeur de graduation actuelle, la sortie sera \"Vrai\". Sinon, la sortie sera une chaîne vide.", + "-489739641": "2. Si la direction sélectionnée est \"Fall\" et que la valeur de tick précédente est supérieure à la valeur de tick actuelle, la sortie sera \"True\". Sinon, la sortie sera une chaîne vide.", + "-2116076360": "Il existe 4 types de messages:", + "-1421941045": "2. «Avertir» affiche un message en jaune pour mettre en évidence quelque chose qui a besoin d'attention.", + "-277850921": "Si «Win» est sélectionné, il retournera «True» si votre dernière transaction a réussi. Sinon, il renverra une chaîne vide.", + "-1918487001": "Exemple:", + "-2139916657": "1. Dans l'exemple ci-dessous, la boucle se termine au cas où \"x\" est \"False\" même si une seule itération est terminée", + "-1238900333": "2. Dans l'exemple ci-dessous, la boucle passe à l'itération suivante sans exécuter le bloc ci-dessous au cas où \"x\" est \"False\"", + "-1729479576": "Vous pouvez utiliser \"i\" dans la boucle, par exemple pour accéder aux éléments de la liste", + "-1474636594": "Dans cet exemple, la boucle se répétera trois fois, car c'est le nombre d'éléments dans la liste donnée. A chaque itération, la variable \"i\" se verra attribuer une valeur dans la liste. ", + "-908772734": "Ce bloc évalue une instruction et effectuera une action uniquement lorsque l'instruction est vraie.", + "-334040831": "2. Dans cet exemple, les instructions sont répétées tant que la valeur de x est supérieure ou égale à 10. Une fois que la valeur de x passe en dessous de 10, la boucle est terminée.", + "-444267958": "Le bloc \"Secondes depuis l 'époque\" renvoie le nombre de secondes depuis le 1er janvier 1970.", + "-447522129": "Vous pourriez en avoir besoin lorsque vous souhaitez répéter une action après un certain temps.", + "-1488259879": "Le terme «bougie» fait référence à chaque barre sur le graphique en chandeliers. Chaque bougie représente quatre prix du marché pour l'intervalle de temps sélectionné:", + "-2020693608": "Chaque chandelier du graphique représente 4 prix du marché pour l'intervalle de temps sélectionné:", + "-62728852": "- Prix d'ouverture: le prix d'ouverture", + "-1247744334": "- Prix bas: le prix le plus bas", + "-1386365697": "- Cours de clôture: le cours de clôture", + "-1498732382": "Une bougie noire (ou rouge) indique que le prix d'ouverture est supérieur au prix de clôture. Cela représente un mouvement à la baisse du prix du marché.", + "-1871864755": "Ce bloc vous donne le dernier chiffre de la dernière valeur de tick du marché sélectionné. Si la dernière valeur de graduation est 1410,90, ce bloc renverra 0. Il est utile pour les contrats basés sur des chiffres tels que Pair/Impair, Égal/Différent ou Supérieur/Inférieur.", + "-1029671512": "Dans le cas où l'opération \"OU\" est sélectionnée, le bloc renvoie \"True\" dans le cas où une ou les deux valeurs données sont \"True\"", + "-210295176": "Opérations disponibles:", + "-1385862125": "- Addition", + "-983721613": "- Soustraction", + "-854750243": "- Multiplication", + "-1394815185": "Dans le cas où le nombre donné est inférieur à la limite inférieure de la plage, le bloc renvoie la valeur de la limite inférieure. De même, si le nombre donné est supérieur à la limite supérieure, le bloc renverra la valeur de limite supérieure. Dans le cas où la valeur donnée est entre les limites, le bloc renverra la valeur donnée inchangée.", + "-1034564248": "Dans l'exemple ci-dessous, le bloc renvoie la valeur de 10 car la valeur donnée (5) est inférieure à la limite inférieure (10)", + "-2009817572": "Ce bloc effectue les opérations suivantes sur un nombre donné", + "-671300479": "Les opérations disponibles sont:", + "-514610724": "- Absolu", + "-1923861818": "- Nombre d'Euler (2,71) à la puissance d'un nombre donné", + "-1556344549": "Voici comment:", + "-1061127827": "- Visitez l'URL suivante, assurez-vous de remplacer par le jeton d'API Telegram que vous avez créé à l'étape 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. Revenez à DBot et ajoutez le bloc Notify Telegram à l'espace de travail. Collez le jeton d'API Telegram et l'ID de discussion dans les champs de bloc en conséquence.", + "-311389920": "Dans cet exemple, les prix ouverts d'une liste de bougies sont affectés à une variable appelée \"cl\".", + "-1460794449": "Ce bloc vous donne une liste de bougies dans un intervalle de temps sélectionné.", + "-1634242212": "Utilisé dans un bloc fonction, ce bloc renvoie une valeur lorsqu'une condition spécifique est vraie.", + "-2012970860": "Ce bloc vous donne des informations sur votre dernier contrat.", + "-1504783522": "Vous pouvez choisir d'afficher l'un des éléments suivants:", + "-10612039": "- Profit: le profit que vous avez réalisé", + "-555996976": "- Heure d'entrée: l'heure de début du contrat", + "-1391071125": "- Heure de sortie: l'heure d'expiration du contrat", + "-1961642424": "- Valeur de sortie: la valeur du dernier tick du contrat", + "-111312913": "- Barrière: la valeur barrière du contrat (applicable aux types de commerce basés sur la barrière tels que les séjours à l'intérieur/à l'extérieur, le touche/ne touche pas, etc.)", + "-674283099": "- Résultat: le résultat du dernier contrat: \"gagnant\" ou \"perdu\"", + "-704543890": "Ce bloc vous donne la valeur de la bougie sélectionnée, telle que le prix d'ouverture, le prix de clôture, le prix élevé, le prix bas et le temps d'ouverture. Il nécessite une bougie comme paramètre d'entrée.", + "-482281200": "Dans l'exemple ci-dessous, le prix d'ouverture est affecté à la variable \"op\".", + "-364621012": "Ce bloc vous donne la valeur de bougie spécifiée pour un intervalle de temps sélectionné. Vous pouvez choisir la valeur souhaitée:", + "-232477769": "- Ouverture: le prix d'ouverture", + "-610736310": "Utilisez ce bloc pour vendre votre contrat au prix du marché. La vente de votre contrat est facultative. Vous pouvez choisir de vendre si la tendance du marché est défavorable.", + "-1307657508": "Ce bloc vous donne le profit ou la perte potentiel si vous décidez de vendre votre contrat. Il ne peut être utilisé que dans le bloc racine \"Conditions de vente\".", + "-1921072225": "Dans l'exemple ci-dessous, le contrat ne sera vendu que si le profit ou la perte potentiel est supérieur à la mise.", + "-955397705": "SMA ajoute le prix du marché dans une liste de graduations ou de bougies pendant un certain nombre de périodes et divise la somme par ce nombre de périodes.", + "-1424923010": "où n est le nombre de périodes.", + "-1835384051": "Ce que SMA vous dit", + "-749487251": "SMA sert d'indicateur de la tendance. Si le SMA pointe vers le haut, le prix du marché augmente et vice versa. Plus le numéro de période est grand, plus la ligne SMA est lisse.", + "-1996062088": "Dans cet exemple, chaque point de la ligne SMA est une moyenne arithmétique des prix de clôture des 10 derniers jours.", + "-1866751721": "La liste d'entrée accepte une liste de graduations ou de bougies, tandis que period est la période spécifiée.", + "-1097076512": "Vous pouvez comparer les valeurs SMA calculées à chaque exécution de bot pour identifier la direction de la tendance du marché. Vous pouvez également utiliser une variante du bloc SMA, le bloc Simple Moving Average Array. ", + "-1254849504": "Si une période de 10 est entrée, le bloc Tableau de moyenne mobile simple renverra une liste de valeurs SMA calculées sur la base d'une période de 10.", + "-1190046167": "Ce bloc affiche une boîte de dialogue avec un message personnalisé. Lorsque la boîte de dialogue s'affiche, votre stratégie est mise en pause et ne reprendra qu'après avoir cliqué sur \"OK\".", + "-859028989": "Dans cet exemple, la date et l'heure seront affichées dans une boîte de notification verte.", + "-1452086215": "Dans cet exemple, un contrat Rise sera acheté à minuit le 1er août 2019.", + "-1765276625": "Cliquez sur le menu déroulant du multiplicateur et choisissez la valeur du multiplicateur avec laquelle vous voulez trader.", + "-1872233077": "Votre bénéfice potentiel sera multiplié par la valeur du multiplicateur que vous avez choisi.", + "-614454953": "Pour en savoir plus sur les multiplicateurs, veuillez vous rendre à la page <0>Multiplicateurs.", + "-2078588404": "Sélectionnez le marché et le type d'actif souhaités. Par exemple, Forex> Paires majeures> AUD/JPY", + "-2037446013": "2. Type de trade", + "-533927844": "Sélectionnez le type de transaction souhaité. Par exemple, Up/Down > Rise/Fall", + "-1192411640": "4. Intervalle de bougie par défaut", + "-485434772": "8. Trader des Options", + "-1827646586": "Ce bloc affecte une valeur donnée à une variable, créant la variable si elle n'existe pas déjà.", "-254421190": "Liste: ({{message_length}})", "-9461328": "Sécurité et confidentialité", "-418247251": "Téléchargez votre journal.", @@ -2209,17 +2287,6 @@ "-398198412": "Tradez sur Deriv MT5 (DMT5), la plateforme de trading FX et CFD tout-en-un.", "-1793883644": "Commercialisez les FX et CFD sur une plateforme de trading personnalisable, simple et facile à utiliser.", "-1246992539": "Binary Bot", - "-563774117": "Tableau de bord", - "-773544978": "Accueil", - "-1003047246": "Mes Apps", - "-2024365882": "Explorer", - "-2038666662": "À propos", - "-832198631": "Cartes de Crédit/Débit", - "-1787820992": "Plateformes", - "-837532140": "Types de trade", - "-663862998": "Marchés", - "-947407631": "Indices Synthétiques", - "-362324454": "Matières Premières", "-821418875": "Trader", "-1309011360": "Positions ouvertes", "-679102561": "Détails du contrat", @@ -2317,41 +2384,47 @@ "-618539786": "La fermeture de votre compte est prévue", "-945275490": "Retirer tous les fonds de votre compte Options.", "-705744796": "Le solde de votre compte démo a atteint la limite maximale et vous ne pourrez pas effectuer de nouvelles transactions. Réinitialisez votre solde pour continuer à trader depuis votre compte démo.", - "-2067423661": "Une sécurité renforcée pour votre compte Deriv", - "-1719731099": "Avec l'authentification à deux facteurs, vous protégez votre compte à l'aide de votre mot de passe et de votre téléphone. Ainsi, vous êtes le seul à pouvoir accéder à votre compte, même si quelqu'un connaît votre mot de passe.", - "-1738575826": "Veuillez passer à votre compte réel ou en créer un pour accéder à la caisse.", + "-1585069798": "Veuillez cliquer sur le lien suivant pour compléter votre test d'adéquation.", + "-1287141934": "En savoir plus", + "-367759751": "Votre compte n'a pas été vérifié", + "-596690079": "Vous aimez utiliser Deriv ?", + "-265932467": "Nous aimerions connaître votre avis", + "-1815573792": "Donnez votre avis sur Trustpilot.", + "-823349637": "Aller sur Trustpilot", "-1204063440": "Définir la devise de mon compte", + "-1164554246": "Vous avez présenté des documents d'identification périmés", + "-219846634": "Vérifions votre identité", + "-529038107": "Installer", + "-87149410": "Installez l'application Web DTrader", + "-1738575826": "Veuillez passer à votre compte réel ou en créer un pour accéder à la caisse.", + "-1329329028": "Vous n'avez pas fixé votre limite de rotation à 30 jours", + "-132893998": "Votre accès à la caisse a été temporairement désactivé car vous n'avez pas fixé votre limite de rotation de 30 jours. Veuillez vous rendre dans la rubrique Auto-exclusion et fixer la limite.", + "-1852207910": "Retrait MT5 désactivé", + "-764323310": "Les retraits MT5 ont été désactivés sur votre compte. Veuillez vérifier votre email pour plus de détails.", + "-1435762703": "Veuillez vérifier votre identité", + "-1902997828": "Actualiser maintenant", + "-753791937": "Une nouvelle version de Deriv est disponible", + "-1775108444": "Cette page s'actualisera automatiquement dans 5 minutes pour charger la dernière version.", + "-1175685940": "Veuillez nous contacter via le chat en direct pour permettre les retraits.", + "-1125797291": "Mot de passe mis à jour.", + "-157145612": "Veuillez vous connecter avec votre mot de passe mis à jour.", + "-87177461": "Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre les dépôts.", + "-904632610": "Réinitialisez votre balance", + "-470018967": "Réinitialisez la balance", + "-156611181": "Veuillez remplir l'évaluation financière dans les paramètres de votre compte pour le débloquer.", "-1925176811": "Impossible de traiter les retraits en ce moment", "-980696193": "Les retraits sont temporairement indisponibles en raison d'une maintenance du système. Vous pourrez effectuer des retraits lorsque la maintenance sera terminée.", "-1647226944": "Impossible de traiter les dépôts en ce moment", "-488032975": "Les dépôts sont temporairement indisponibles en raison d'une maintenance du système. Vous pourrez effectuer des dépôts lorsque la maintenance sera terminée.", "-67021419": "Notre caisse est temporairement hors service en raison d'une maintenance du système. Vous pourrez accéder à la caisse dans quelques minutes lorsque la maintenance sera terminée.", - "-219846634": "Vérifions votre identité", - "-367759751": "Votre compte n'a pas été vérifié", - "-1175685940": "Veuillez nous contacter via le chat en direct pour permettre les retraits.", - "-1852207910": "Retrait MT5 désactivé", - "-764323310": "Les retraits MT5 ont été désactivés sur votre compte. Veuillez vérifier votre email pour plus de détails.", - "-1585069798": "Veuillez cliquer sur le lien suivant pour compléter votre test d'adéquation.", - "-1329329028": "Vous n'avez pas fixé votre limite de rotation à 30 jours", - "-132893998": "Votre accès à la caisse a été temporairement désactivé car vous n'avez pas fixé votre limite de rotation de 30 jours. Veuillez vous rendre dans la rubrique Auto-exclusion et fixer la limite.", - "-156611181": "Veuillez remplir l'évaluation financière dans les paramètres de votre compte pour le débloquer.", "-849587074": "Vous n'avez pas fourni votre numéro d'identification fiscale", "-47462430": "Ces informations sont nécessaires pour répondre aux exigences légales et réglementaires. Veuillez vous rendre dans les paramètres de votre compte et indiquer votre dernier numéro d'identification fiscale.", - "-87177461": "Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre les dépôts.", + "-2067423661": "Une sécurité renforcée pour votre compte Deriv", + "-1719731099": "Avec l'authentification à deux facteurs, vous protégez votre compte à l'aide de votre mot de passe et de votre téléphone. Ainsi, vous êtes le seul à pouvoir accéder à votre compte, même si quelqu'un connaît votre mot de passe.", + "-822888359": "Votre retrait est verrouillé", + "-1197701578": "Veuillez soumettre à nouveau votre preuve d'identité et remplir l'évaluation financière dans la configuration du compte pour le débloquer.", "-2087822170": "Vous êtes déconnecté", "-1669693571": "Vérifier votre connection.", - "-1125797291": "Mot de passe mis à jour.", - "-157145612": "Veuillez vous connecter avec votre mot de passe mis à jour.", - "-904632610": "Réinitialisez votre balance", - "-470018967": "Réinitialisez la balance", - "-1435762703": "Veuillez vérifier votre identité", - "-1164554246": "Vous avez présenté des documents d'identification périmés", - "-1902997828": "Actualiser maintenant", - "-753791937": "Une nouvelle version de Deriv est disponible", - "-1775108444": "Cette page s'actualisera automatiquement dans 5 minutes pour charger la dernière version.", - "-529038107": "Installer", - "-87149410": "Installez l'application Web DTrader", - "-1287141934": "En savoir plus", "-1998049070": "Si vous acceptez notre utilisation des cookies, cliquez sur Accepter. Pour plus d'informations, <0>consultez notre politique.", "-1721181859": "Vous aurez besoin d'un compte {{deriv_account}}", "-1989074395": "Veuillez d'abord ajouter un compte {{deriv_account}} avant d'ajouter un compte {{dmt5_account}}. Les dépôts et retraits pour votre compte {{dmt5_label}} sont effectués en transférant des fonds vers et depuis votre compte {{deriv_label}}.", @@ -2386,6 +2459,7 @@ "-1950045402": "Retirez tous vos fonds", "-168971942": "Ce que cela signifie pour vous", "-905560792": "OK, je comprends", + "-2024365882": "Explorer", "-1197864059": "Ouvrir un compte démo", "-1485242688": "Step {{step}}: {{step_title}} ({{step}} of {{steps}})", "-1829842622": "Vous pouvez ouvrir un compte pour chaque crypto-monnaie.", @@ -2439,6 +2513,7 @@ "-1917706589": "Votre compte Deriv est déconnecté de {{social_identity_provider}}. Merci d'utiliser votre email et mot de passe pour vos futures connexions.", "-2017825013": "C'est compris", "-505449293": "Rentrez un nouveau mot de passe pour votre compte Deriv.", + "-1787820992": "Plateformes", "-184713104": "Gagnez des paiements fixes en trading sur options ou multiplicateurs afin d'amplifier vos gains avec un risque limité.", "-1571775875": "Notre plateforme de trading d'options et de multiplicateurs.", "-1107320163": "Automatisez votre trading, pas besoin de codage.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d. Si la décision est prise en notre faveur, vous devez nous fournir une décharge dans les 7 jours suivant le moment où la décision est prise, et la plainte sera considérée comme close.", "-429248139": "5. Clause de non-responsabilité", "-818926350": "La Commission financière accepte les appels pendant 45 jours après la date de l'incident et seulement après que le commerçant a essayé de résoudre le problème directement avec l'entreprise.", - "-236548954": "Erreur de mise à jour du contrat", "-1282933308": "Pas {{barrier}}", "-968190634": "Egal {{barrier}}", "-1747377543": "Sous {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Chiffres", "-1790089996": "NOUVEAU!", "-590018519": "Contrat acheté", - "-328036042": "Veuillez saisir un montant de stop loss supérieur à la perte potentielle actuelle.", - "-2127699317": "Stop loss non valide. Stop loss ne peut être plus que la mise.", "-405439829": "Désolé, vous ne pouvez pas afficher ce contrat, car il n'appartient pas à ce compte.", "-1714959941": "Cet affichage graphique n'est pas idéal pour les contrats tick", "-1254554534": "Veuillez changer la durée du graphique pour cocher pour une meilleure expérience de trading.", @@ -2593,22 +2665,13 @@ "-584696680": "Si vous sélectionnez \"Take Profit\" et spécifiez un montant que vous souhaitez gagner, votre position sera clôturée automatiquement lorsque votre profit sera supérieur ou égal à ce montant. Votre profit peut être supérieur au montant que vous avez entré en fonction du prix du marché à la clôture.", "-178096090": "«Take profit» ne peut pas être mis à jour. Vous ne pouvez le mettre à jour que lorsque «l'offre annulation» expire.", "-206909651": "Le point d'entrée est le prix du marché lorsque votre contrat est traité par nos serveurs.", - "-673424733": "Compte démo", - "-1066565281": "Maintenance du serveur à partir de 06:00 GMT tous les dimanches. Ce processus peut prendre jusqu'à 2 heures. Le service peut être interrompu pendant cette période.", - "-1481390656": "Maintenance du serveur à partir de 01h00 GMT tous les dimanches. Ce processus peut prendre jusqu'à 2 heures. Le service peut être interrompu pendant cette période.", - "-1199152768": "Veuillez explorer nos autres plateformes.", - "-498346912": "Explorer DBot", + "-464262734": "Gérer le mot de passe du compte {{platform}} Real {{account_title}}", "-2042845290": "Votre mot de passe investisseur a été modifié.", "-1882295407": "Votre mot de passe a été modifié.", "-254497873": "Utilisez ce mot de passe pour accorder l'accès de visualisation à un autre utilisateur. Bien qu'ils puissent consulter votre compte de trading, ils ne pourront pas échanger ou prendre d'autres mesures.", "-161656683": "Mot de passe investisseur actuel", "-374736923": "Nouveau mot de passe investisseur", "-1793894323": "Créer ou réinitialiser le mot de passe de l'investisseur", - "-464262734": "Gérer le mot de passe du compte {{platform}} Real {{account_title}}", - "-1928229820": "Réinitialiser le mot de passe investisseur de Deriv X", - "-1917043724": "Réinitialiser le mot de passe investisseur de DMT5", - "-1087845020": "principal", - "-1950683866": "investisseur", "-149836494": "Le numéro de référence de votre transaction est {{transaction_id}}", "-1382749084": "Revenir au trading", "-538215347": "Dépôts nets", @@ -2737,7 +2800,6 @@ "-1588406981": "Vous pouvez vérifier le résultat du dernier trade avec ce bloc.", "-1459154781": "Détails du contrat: {{ contract_detail }}", "-1652241017": "Lit une propriété sélectionnée dans la liste des détails du contrat", - "-2012970860": "Ce bloc vous donne des informations sur votre dernier contrat.", "-2082345383": "Ces blocs transfèrent le contrôle au bloc Conditions d'achat.", "-172574065": "Ce bloc transférera le contrôle vers le bloc Conditions d'achat, vous permettant d'acheter un autre contrat.", "-403103225": "redémarrer", @@ -2780,7 +2842,6 @@ "-1556495906": "Renvoie une liste de valeurs spécifiques à partir d'une liste de bougies en fonction de l'intervalle de temps sélectionné", "-166816850": "Créer une liste de valeurs de bougies (1)", "-1261436901": "Liste des bougies", - "-1460794449": "Ce bloc vous donne une liste de bougies dans un intervalle de temps sélectionné.", "-1174859923": "Lire la valeur de la bougie sélectionnée", "-1972165119": "Lire la valeur de la bougie (1)", "-1956100732": "Vous pouvez utiliser ce bloc pour analyser les ticks indépendamment de vos trades", @@ -2830,10 +2891,13 @@ "-702370957": "Convertir en date/heure", "-982729677": "Convertir en marquage temporel", "-311268215": "Ce bloc convertit une chaîne de texte qui représente la date et l'heure en secondes depuis l'époque Unix (1er janvier 1970). L'heure et le décalage du fuseau horaire sont facultatifs. Exemple: 2019-01-01 21:03:45 GMT + 0800 sera converti en 1546347825.", + "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", + "-1214929127": "Le Stop Loss doit être un nombre positif.", + "-2142851225": "Trade options avec Multiplicateur", + "-625636913": "Le montant doit être un nombre positif.", "-1466383897": "Durée: {{ duration_unit }} {{ duration_value }}", "-440702280": "Trader des Options", "-1193894978": "Définissez vos trades telles que la durée et la mise. Certaines options ne s'appliquent qu'à certains types de trades.", - "-625636913": "Le montant doit être un nombre positif.", "-46523443": "La valeur de durée n'est pas autorisée. Pour exécuter le bot, veuillez saisir une valeur comprise entre {{min}} et {{max}}.", "-1483427522": "Type de trade: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Paramètres du trade", @@ -2841,7 +2905,6 @@ "-783173909": "Trader des Options:", "-376956832": "C'est ici que vous définissez les paramètres de votre contrat.", "-1244007240": "si {{ condition }} donc", - "-908772734": "Ce bloc évalue une instruction et effectuera une action uniquement lorsque l'instruction est vraie.", "-1577206704": "autre si", "-33796979": "vrai", "-1434883449": "Il s'agit d'un bloc unique qui renvoie une valeur booléenne, vraie ou fausse.", @@ -2903,84 +2966,11 @@ "-1133072029": "Longueur de la chaîne de texte", "-1109723338": "imprimer {{ input_text }}", "-736668830": "Imprimer", - "-1190046167": "Ce bloc affiche une boîte de dialogue avec un message personnalisé. Lorsque la boîte de dialogue s'affiche, votre stratégie est mise en pause et ne reprendra qu'après avoir cliqué sur \"OK\".", "-1821552998": "couper les espaces de {{ side }} sur {{ input_text }}", "-801766026": "côté droit", "-474779821": "Ajuste les espaces", "-1219239717": "Un ou plusieurs blocs obligatoires sont manquants dans votre espace de travail. Veuillez ajouter le(s) bloc(s) requis, puis réessayer.", "-250761331": "Un ou plusieurs blocs obligatoires sont désactivés dans votre espace de travail. Veuillez activer le(s) bloc(s) requis, puis réessayer.", - "-187634388": "Ce bloc est obligatoire. Voici où vous pouvez décider si votre bot doit continuer à trader. Une seule copie de ce bloc est autorisée.", - "-2105473795": "Le seul paramètre d'entrée détermine le formatage de la sortie du bloc. Si le paramètre d'entrée est \"chaîne\", la devise du compte sera ajoutée.", - "-1800436138": "2. pour \"nombre\": 1325,68", - "-2046396241": "Ce bloc est obligatoire. Une seule copie de ce bloc est autorisée. Il est ajouté au canevas par défaut lorsque vous ouvrez DBot.", - "-530632460": "Ce bloc est utilisé pour déterminer si le prix du marché évolue dans la direction choisie ou non. Il vous donne une valeur de «True» ou «False».", - "-1875717842": "Exemples:", - "-890079872": "1. Si la direction sélectionnée est \"Montée\" et que la valeur de graduation précédente est inférieure à la valeur de graduation actuelle, la sortie sera \"Vrai\". Sinon, la sortie sera une chaîne vide.", - "-489739641": "2. Si la direction sélectionnée est \"Fall\" et que la valeur de tick précédente est supérieure à la valeur de tick actuelle, la sortie sera \"True\". Sinon, la sortie sera une chaîne vide.", - "-2116076360": "Il existe 4 types de messages:", - "-1421941045": "2. «Avertir» affiche un message en jaune pour mettre en évidence quelque chose qui a besoin d'attention.", - "-277850921": "Si «Win» est sélectionné, il retournera «True» si votre dernière transaction a réussi. Sinon, il renverra une chaîne vide.", - "-1918487001": "Exemple:", - "-2139916657": "1. Dans l'exemple ci-dessous, la boucle se termine au cas où \"x\" est \"False\" même si une seule itération est terminée", - "-1238900333": "2. Dans l'exemple ci-dessous, la boucle passe à l'itération suivante sans exécuter le bloc ci-dessous au cas où \"x\" est \"False\"", - "-1729479576": "Vous pouvez utiliser \"i\" dans la boucle, par exemple pour accéder aux éléments de la liste", - "-1474636594": "Dans cet exemple, la boucle se répétera trois fois, car c'est le nombre d'éléments dans la liste donnée. A chaque itération, la variable \"i\" se verra attribuer une valeur dans la liste. ", - "-334040831": "2. Dans cet exemple, les instructions sont répétées tant que la valeur de x est supérieure ou égale à 10. Une fois que la valeur de x passe en dessous de 10, la boucle est terminée.", - "-444267958": "Le bloc \"Secondes depuis l 'époque\" renvoie le nombre de secondes depuis le 1er janvier 1970.", - "-447522129": "Vous pourriez en avoir besoin lorsque vous souhaitez répéter une action après un certain temps.", - "-1488259879": "Le terme «bougie» fait référence à chaque barre sur le graphique en chandeliers. Chaque bougie représente quatre prix du marché pour l'intervalle de temps sélectionné:", - "-2020693608": "Chaque chandelier du graphique représente 4 prix du marché pour l'intervalle de temps sélectionné:", - "-62728852": "- Prix d'ouverture: le prix d'ouverture", - "-1247744334": "- Prix bas: le prix le plus bas", - "-1386365697": "- Cours de clôture: le cours de clôture", - "-1498732382": "Une bougie noire (ou rouge) indique que le prix d'ouverture est supérieur au prix de clôture. Cela représente un mouvement à la baisse du prix du marché.", - "-1871864755": "Ce bloc vous donne le dernier chiffre de la dernière valeur de tick du marché sélectionné. Si la dernière valeur de graduation est 1410,90, ce bloc renverra 0. Il est utile pour les contrats basés sur des chiffres tels que Pair/Impair, Égal/Différent ou Supérieur/Inférieur.", - "-1029671512": "Dans le cas où l'opération \"OU\" est sélectionnée, le bloc renvoie \"True\" dans le cas où une ou les deux valeurs données sont \"True\"", - "-210295176": "Opérations disponibles:", - "-1385862125": "- Addition", - "-983721613": "- Soustraction", - "-854750243": "- Multiplication", - "-1394815185": "Dans le cas où le nombre donné est inférieur à la limite inférieure de la plage, le bloc renvoie la valeur de la limite inférieure. De même, si le nombre donné est supérieur à la limite supérieure, le bloc renverra la valeur de limite supérieure. Dans le cas où la valeur donnée est entre les limites, le bloc renverra la valeur donnée inchangée.", - "-1034564248": "Dans l'exemple ci-dessous, le bloc renvoie la valeur de 10 car la valeur donnée (5) est inférieure à la limite inférieure (10)", - "-2009817572": "Ce bloc effectue les opérations suivantes sur un nombre donné", - "-671300479": "Les opérations disponibles sont:", - "-514610724": "- Absolu", - "-1923861818": "- Nombre d'Euler (2,71) à la puissance d'un nombre donné", - "-1556344549": "Voici comment:", - "-1061127827": "- Visitez l'URL suivante, assurez-vous de remplacer par le jeton d'API Telegram que vous avez créé à l'étape 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. Revenez à DBot et ajoutez le bloc Notify Telegram à l'espace de travail. Collez le jeton d'API Telegram et l'ID de discussion dans les champs de bloc en conséquence.", - "-311389920": "Dans cet exemple, les prix ouverts d'une liste de bougies sont affectés à une variable appelée \"cl\".", - "-1634242212": "Utilisé dans un bloc fonction, ce bloc renvoie une valeur lorsqu'une condition spécifique est vraie.", - "-1504783522": "Vous pouvez choisir d'afficher l'un des éléments suivants:", - "-10612039": "- Profit: le profit que vous avez réalisé", - "-555996976": "- Heure d'entrée: l'heure de début du contrat", - "-1391071125": "- Heure de sortie: l'heure d'expiration du contrat", - "-1961642424": "- Valeur de sortie: la valeur du dernier tick du contrat", - "-111312913": "- Barrière: la valeur barrière du contrat (applicable aux types de commerce basés sur la barrière tels que les séjours à l'intérieur/à l'extérieur, le touche/ne touche pas, etc.)", - "-674283099": "- Résultat: le résultat du dernier contrat: \"gagnant\" ou \"perdu\"", - "-704543890": "Ce bloc vous donne la valeur de la bougie sélectionnée, telle que le prix d'ouverture, le prix de clôture, le prix élevé, le prix bas et le temps d'ouverture. Il nécessite une bougie comme paramètre d'entrée.", - "-482281200": "Dans l'exemple ci-dessous, le prix d'ouverture est affecté à la variable \"op\".", - "-364621012": "Ce bloc vous donne la valeur de bougie spécifiée pour un intervalle de temps sélectionné. Vous pouvez choisir la valeur souhaitée:", - "-232477769": "- Ouverture: le prix d'ouverture", - "-610736310": "Utilisez ce bloc pour vendre votre contrat au prix du marché. La vente de votre contrat est facultative. Vous pouvez choisir de vendre si la tendance du marché est défavorable.", - "-1307657508": "Ce bloc vous donne le profit ou la perte potentiel si vous décidez de vendre votre contrat. Il ne peut être utilisé que dans le bloc racine \"Conditions de vente\".", - "-1921072225": "Dans l'exemple ci-dessous, le contrat ne sera vendu que si le profit ou la perte potentiel est supérieur à la mise.", - "-955397705": "SMA ajoute le prix du marché dans une liste de graduations ou de bougies pendant un certain nombre de périodes et divise la somme par ce nombre de périodes.", - "-1424923010": "où n est le nombre de périodes.", - "-1835384051": "Ce que SMA vous dit", - "-749487251": "SMA sert d'indicateur de la tendance. Si le SMA pointe vers le haut, le prix du marché augmente et vice versa. Plus le numéro de période est grand, plus la ligne SMA est lisse.", - "-1996062088": "Dans cet exemple, chaque point de la ligne SMA est une moyenne arithmétique des prix de clôture des 10 derniers jours.", - "-1866751721": "La liste d'entrée accepte une liste de graduations ou de bougies, tandis que period est la période spécifiée.", - "-1097076512": "Vous pouvez comparer les valeurs SMA calculées à chaque exécution de bot pour identifier la direction de la tendance du marché. Vous pouvez également utiliser une variante du bloc SMA, le bloc Simple Moving Average Array. ", - "-1254849504": "Si une période de 10 est entrée, le bloc Tableau de moyenne mobile simple renverra une liste de valeurs SMA calculées sur la base d'une période de 10.", - "-859028989": "Dans cet exemple, la date et l'heure seront affichées dans une boîte de notification verte.", - "-1452086215": "Dans cet exemple, un contrat Rise sera acheté à minuit le 1er août 2019.", - "-2078588404": "Sélectionnez le marché et le type d'actif souhaités. Par exemple, Forex> Paires majeures> AUD/JPY", - "-2037446013": "2. Type de trade", - "-533927844": "Sélectionnez le type de transaction souhaité. Par exemple, Up/Down > Rise/Fall", - "-1192411640": "4. Intervalle de bougie par défaut", - "-485434772": "8. Trader des Options", - "-1827646586": "Ce bloc affecte une valeur donnée à une variable, créant la variable si elle n'existe pas déjà.", "-1687036846": "Télécharger le block", "-1266781295": "Développer", "-894560707": "fonction", diff --git a/packages/translations/src/translations/id.json b/packages/translations/src/translations/id.json index d5b9e85e42db..629a1eb72045 100644 --- a/packages/translations/src/translations/id.json +++ b/packages/translations/src/translations/id.json @@ -7,7 +7,6 @@ "11872052": "Ya, saya akan kembali lagi nanti", "14365404": "Permintaan gagal untuk: {{ message_type }}, mencoba kembali {{ delay }} detik", "15377251": "Jumlah keuntungan: {{profit}}", - "17217397": "Mata uang kripto", "17843034": "Periksa status verifikasi untuk dokumen bukti identitas", "21035405": "Mohon informasikan alasan Anda untuk menutup Akun. (Pilih hingga {{ allowed_reasons }} alasan.)", "25854018": "Blok ini menampilkan pesan pada konsol developer dengan input yang dapat berupa data string teks, angka, boolean, atau array.", @@ -22,6 +21,7 @@ "46523711": "Bukti identitas Anda telah diverifikasi", "49963458": "Pilih opsi", "54185751": "Kurang dari $100.000", + "55340304": "Tetap aktifkan kontrak Anda?", "55916349": "Semua", "58254854": "Cakupan", "59169515": "Jika Anda memilih \"Asian Rise \", Anda akan memperoleh hasil jika tik terakhir lebih tinggi dari jumlah rata-rata tik.", @@ -61,7 +61,6 @@ "111931529": "Maks. total modal dalam 7 hari", "113378532": "ETH/USD", "113884303": "Indeks Jerman", - "113933902": "Download aplikasi Deriv X", "115032488": "Harga beli dan Untung/Rugi", "116005488": "Indikator", "117318539": "Kata sandi harus terdiri dari huruf kecil dan besar alfabet beserta angka.", @@ -163,7 +162,6 @@ "270339490": "Jika Anda memilih \"Over\", Anda akan memperoleh hasil jika digit terakhir pada tik terakhir lebih besar dari analisa Anda.", "270610771": "Dalam contoh ini, harga open candle ditetapkan pada variabel \"candle_open_price\".", "270712176": "menurun", - "270727821": "Indeks Saham", "270780527": "Anda telah mencapai batas untuk mengupload dokumen Anda.", "272179372": "Blok ini umumnya digunakan untuk menyesuaikan parameter untuk trading berikutnya dan menerapkan logika batas kerugian/batas keuntungan.", "273350342": "Copy dan paste token ke aplikasi.", @@ -197,7 +195,6 @@ "317601768": "Tema", "318865860": "tutup", "318984807": "Blok ini mengulangi instruksi yang terkandung dalam jumlah waktu tertentu.", - "319538091": "DMT5 Finansial STP", "323179846": "Interval waktu untuk setiap candle dapat diatur dari satu menit ke satu hari.", "323209316": "Pilih Strategi Bot Deriv", "325662004": "Perbesar Blok", @@ -248,7 +245,6 @@ "384303768": "Blok ini akan menampilkan \"benar\" jika candle terakhir berwarna hitam. Dapat ditempatkan di mana saja pada kanvas kecuali dalam blok trading parameter root.", "386502387": "Bot tidak berjalan", "389923099": "Perbesar", - "390647540": "Akun riil", "390890891": "Kuartal terakhir", "391915203": "Hedging", "392582370": "Fall Equal", @@ -256,7 +252,6 @@ "396961806": "Polygon (Matic) tidak tersedia, gunakan Ethereum ({{token}}) untuk mendeposit.", "399387585": "Cek email Anda untuk rincian lebih lanjut. Jika Anda memiliki pertanyaan, silakan kunjungi <0>Pusat Bantuan kami.", "401339495": "Verifikasi alamat", - "402343402": "Berhubung sedang terjadi masalah pada server kami, maka beberapa akun {{platform}} Anda tidak tersedia untuk saat ini. Mohon maaf dan terima kasih atas kesabaran Anda.", "403456289": "Formula untuk SMA adalah:", "404743411": "Total deposit", "406359555": "Rincian kontrak", @@ -271,6 +266,7 @@ "427134581": "Coba gunakan jenis file lain.", "427617266": "Bitcoin", "428709688": "Interval waktu yang Anda inginkan pada setiap laporan:", + "432508385": "Batas Keuntungan: {{ currency }} {{ take_profit }}", "432519573": "Dokumen yang diunggah", "433348384": "Akun riil tidak tersedia untuk anggota politik (PEP).", "433616983": "2. Fase investigasi", @@ -326,7 +322,6 @@ "505793554": "huruf terakhir", "510815408": "Huruf, angka, spasi, tanda hubung saja", "514031715": "daftar {{ input_list }} kosong", - "514776243": "Kata sandi {{account_type}} Anda telah diubah.", "514948272": "Salin tautan", "518955798": "7. Operasikan Setelah Mulai", "520136698": "Indeks Boom 500", @@ -438,7 +433,6 @@ "659482342": "Merupakan tanggung jawab Anda untuk memastikan data adalah benar dan akurat. Anda dapat memperbarui data pribadi kapan saja pada bagian pengaturan akun Anda.", "660481941": "Untuk mengakses aplikasi seluler dan aplikasi pihak ketiga lainnya, Anda harus membuat token API terlebih dahulu.", "660991534": "Selesai", - "662609119": "Download aplikasi MT5", "665089217": "Kirimkan <0>bukti identitas untuk mengotentikasi akun dan mengakses bagian Kasir Anda.", "665777772": "XLM/USD", "665872465": "Pada contoh di bawah ini, harga pembukaan dipilih, yang kemudian ditugaskan pada variabel yang disebut \"op\".", @@ -590,6 +584,7 @@ "872957901": "Gelap (segera hadir di DBot)", "873166343": "1. 'Log' menampilkan pesan biasa.", "874461655": "Scan kode QR menggunakan telepon Anda", + "874484887": "Batas keuntungan harus berupa angka positif.", "875532284": "Ulang proses menggunakan perangkat lain", "876086855": "Lengkapi formulir penilaian keuangan", "876292912": "Keluar", @@ -637,7 +632,6 @@ "947046137": "Penarikan Anda akan diproses dalam tempo 24 jam", "947363256": "Buat daftar", "947758334": "Kota diperlukan", - "948156236": "Membuat kata sandi {{type}}", "949859957": "Kirim", "952655566": "Agen pembayaran", "956448295": "Gambar potongan terdeteksi", @@ -765,7 +759,6 @@ "1129124569": "Jika Anda memilih \"Under\", Anda akan memperoleh hasil jika digit terakhir pada tik terakhir lebih kecil dari analisa Anda.", "1129296176": "PEMBERITAHUAN PENTING UNTUK MENERIMA DANA ANDA", "1129842439": "Masukkan jumlah batas keuntungan.", - "1129984312": "Transfer Bank", "1130744117": "Kami akan mencoba untuk menyelesaikan keluhan Anda dalam tempo 10 hari kerja. Kami akan menginformasikan hasil beserta penjelasan posisi kami dan akan memberi saran solusi yang dapat kami sediakan.", "1130791706": "N", "1133651559": "Obrolan langsung", @@ -878,6 +871,7 @@ "1293660048": "Maks. total kerugian per hari", "1294756261": "Blok ini menciptakan sebuah fungsi, yang merupakan kelompok instruksi yang dapat dieksekusi setiap saat. Tempatkan blok lain di sini untuk melakukan semua jenis tindakan yang Anda butuhkan pada strategi Anda. Ketika semua instruksi dalam sebuah fungsi telah dilakukan, bot Anda akan melanjutkan dengan sisa blok dalam strategi Anda. Klik kolom \"lakukan sesuatu\" untuk memberinya nama sesuai dengan pilihan Anda. Klik ikon tambah untuk mengirim nilai (sebagai variabel bernama) ke dalam fungsi Anda.", "1295284664": "Mohon setujui <0>Syarat dan Ketentuan terbaru untuk melanjutkan.", + "1296380713": "Tutup kontrak saya", "1299479533": "8 jam", "1301668579": "Kami sedang berusahan untuk menyediakan fasilitas ini secepatnya untuk Anda. Jika Anda memiliki akun lain, berpindah ke akun tersebut untuk melanjutkan trading. Anda dapat mendambahkan akun DMT5 Finansial.", "1302691457": "Pekerjaan", @@ -921,7 +915,6 @@ "1346339408": "Manajer", "1347071802": "{{minutePast}} menit lalu", "1348009461": "Mohon tutup posisi pada akun Deriv X berikut ini:", - "1349142948": "DMT5 Finansial", "1349289354": "Luar biasa, itu saja yang kami butuhkan", "1349295677": "dalam teks {{ input_text }} dapatkan substring dari {{ position1 }} {{ index1 }} ke {{ position2 }} {{ index2 }}", "1351152200": "Selamat datang di dasbor Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "dengan interval: %1", "1468308734": "Blok ini mengulangi instruksi selama kondisi yang ditetapkan adalah benar", "1468419186": "Deriv saat ini menyediakan penarikan USDT Tether ke wallet Omni. Untuk memastikan transaksi penarikan berjalan dengan lancar, masukkan alamat wallet yang sesuai dengan token yang ingin Anda tarik. <0>Pelajari lebih lanjut", + "1469150826": "Batas Keuntungan", "1469764234": "Kasir Error", "1469814942": "- Divisi", "1470319695": "Menampilkan antara Benar atau Salah", @@ -1043,7 +1037,6 @@ "1502325741": "Jangan menggunakan alamat email sebagai kata sandi.", "1503618738": "- ID referensi Kesepakatan: ID referensi kontrak", "1505898522": "Unduh stack", - "1506251760": "Wallet", "1509570124": "{{buy_value}} (Beli)", "1509678193": "Pendidikan", "1510075920": "Gold/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Link seluler Anda akan berakhir dalam tempo satu jam", "1577527507": "Alasan pendaftaran akun diperlukan.", "1577612026": "Pilih folder", + "1579484521": "Pusat trading", "1580498808": "Ditemukan beberapa wajah", "1584109614": "Daftar string tik", "1584936297": "File XML berisi elemen yang tidak tersedia. Silakan periksa atau ubah file.", @@ -1107,6 +1101,7 @@ "1620278321": "Nama dan nama keluarga itu sendiri sangat mudah ditebak", "1620346110": "Tentukan mata uang", "1622662457": "Tanggal dari", + "1623706874": "Gunakan blok ini jika Anda ingin menggunakan multiplier sebagai jenis kontrak.", "1630372516": "Coba Fiat onramp kami", "1630417358": "Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan penarikan.", "1634594289": "Pilih bahasa", @@ -1126,6 +1121,7 @@ "1651513020": "Tampilkan sisa waktu untuk setiap interval", "1651951220": "Pengulangan seperti \"abcabcabc\" sedikit lebih sulit ditebak daripada \"abc\"", "1652366857": "dapatkan dan hapus", + "1652968048": "Tentukan opsi trading Anda seperti multiplier dan modal.", "1652976865": "Dalam contoh berikut, blok digunakan dengan blok lain untuk mendapatkan harga open dari daftar candle. Harga open kemudian ditugaskan pada variabel yang disebut \"cl\".", "1653136377": "tersalin!", "1653159197": "Penarikan Agen Pembayaran", @@ -1142,6 +1138,7 @@ "1665738338": "Saldo", "1665756261": "Kunjungi obrolan langsung", "1667395210": "Bukti identitas Anda telah berhasil dikirim", + "1670016002": "Multiplier: {{ multiplier }}", "1670426231": "Waktu Akhir", "1671232191": "Anda telah menetapkan batas berikut ini:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Sangkalan", "1736292549": "Perbarui kode pos", "1737352280": "Bot.init tidak disebut", - "1738504192": "E-wallet", "1738681493": "Lepaskan kacamata Anda, jika perlu", "1739384082": "Pengangguran", "1740371444": "Pasar dasar tidak dipilih", @@ -1250,7 +1246,6 @@ "1820332333": "Isi ulang", "1824193700": "Blok ini memberi Anda digit terakhir dari nilai tik terbaru.", "1827607208": "File tidak diunggah.", - "1828994348": "DBot tidak tersedia di {{country}}", "1832974109": "SmartTrader", "1833481689": "Membuka", "1837762008": "Kirimkan bukti identitas dan bukti alamat untuk memverifikasi akun Anda melalui bagian pengaturan untuk mengakses bagian kasir.", @@ -1308,7 +1303,6 @@ "1887852176": "Situs sedang diperbarui", "1889357660": "Masukkan nilai dalam menit, hingga 60480 menit (setara dengan 6 minggu).", "1890171328": "Dengan mengklik Menerima dibawah ini dan melanjutkan Pendaftaran Akun berarti Anda memahami bahwa Anda akan mungkin akan mengalami risiko (yang mungkin segnifikan termasuk risiko kehilangan semua dana yang Anda investasikan) dimana Anda mungkin tidak memiliki pengetahuan dan pengalaman untuk mengurangi atau menghindarinya.", - "1890284485": "Jelajahi DTrader", "1890332321": "Menampilkan jumlah karakter string teks tertentu, termasuk angka, spasi, tanda baca, dan simbol.", "1894667135": "Silakan verifikasi bukti alamat Anda", "1898670234": "{{formatted_opening_time}} (GMT) pada {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Menambahkan atau mengelola akun", "1973536221": "Anda belum memiliki posisi berjalan.", "1982912252": "Indeks Kekuatan Relatif (RSI) adalah dari daftar dengan periode", + "1983001416": "Tentukan opsi trading Anda seperti multiplier dan modal. Blok ini hanya dapat digunakan pada jenis trading multiplier. Jika Anda memilih jenis trading lain, blok ini akan diganti dengan blok trading opsi.", "1983387308": "Tampilan", "1983544897": "Alamat P.O. Box tidak dapat di terima", "1983676099": "Silakan cek email Anda untuk informasi lengkap.", @@ -1491,7 +1486,6 @@ "2138861911": "Scan dan fotokopi tidak diterima", "2139171480": "Reset Up/Reset Down", "2139362660": "sebelah kiri", - "2141055709": "Kata sandi baru {{type}} ", "2143803283": "Error pada pembelian", "2144609616": "Jika Anda memilih \"Reset-Down”, Anda memperoleh hasil jika spot akhir lebih rendah dari spot awal atau spot pada waktu reset. ", "2145690912": "Pendapatan Produktif", @@ -1948,7 +1942,6 @@ "-582721696": "Jumlah penarikan saat ini adalah {{format_min_withdraw_amount}} hingga {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "lagi", "-1684548351": "Pindah ke akun kripto", - "-1345040662": "Ingin tahu cara membeli mata uang kripto?", "-197251450": "Apakah Anda ingin bertrading dalam {{currency_code}}? Anda dapat mendaftar akun kripto lainnya.", "-212277385": "Anda tidak dapat merubah mata uang akun Anda berhubung Anda telah mendeposit ke akun fiat Anda atau mendaftar akun riil DMT5 atau Deriv X. Hubungi kami melalui <0>obrolan langsung untuk klarifikasi.", "-1900848111": "Berikut adalah akun {{currency_code}} Anda.", @@ -2022,6 +2015,7 @@ "-811190405": "Waktu", "-2004264970": "Alamat wallet harus memiliki 25 hingga 64 karakter.", "-1707299138": "Alamat wallet {{currency_symbol}} Anda", + "-1179992129": "Semua agen pembayaran", "-922432739": "Silakan masukkan login ID klien yang valid.", "-1024241603": "Saldo tidak mencukupi.", "-1979554765": "Silakan masukkan deskripsi yang valid.", @@ -2033,7 +2027,6 @@ "-1388977563": "Tersalin!", "-1962894999": "Alamat ini hanya dapat digunakan satu kali saja. Mohon salin alamat baru untuk transaksi berikutnya.", "-451858550": "Dengan mengklik 'Lanjutkan' Anda akan diarahkan ke {{ service }}, penyedia layanan pembayaran pihak ketiga. Mohon diketahui bahwa {{ website_name }} tidak bertanggung jawab atas konten atau layanan yang disediakan oleh {{ service }}. Jika Anda mengalami masalah yang terkait dengan layanan {{ service }}, Anda harus menghubungi {{ service }} langsung.", - "-1179992129": "Semua agen pembayaran", "-344959847": "Agen pembayaran diberi wewenang untuk memproses deposit dan penarikan untuk Anda jika metode pembayaran lokal atau mata uang Anda tidak tersedia pada {{website_name}}.", "-1232852916": "Kami pindah ke dalam akun {{currency}} Anda untuk melihat transaksi lebih lanjut.", "-38063175": "wallet {{account_text}}", @@ -2056,6 +2049,7 @@ "-1615615253": "Tron tidak tersedia, gunakan Ethereum ({{token}}) untuk mendeposit.", "-1831000957": "Pilih jaringan dari mana deposit Anda akan berasal.", "-314177745": "Kami tidak dapat menemukan alamat berhubung server kami sedang mengalami gangguan. Klik Refresh untuk memuat ulang alamat atau coba kembali nanti.", + "-1345040662": "Ingin tahu cara membeli mata uang kripto?", "-2005265642": "Fiat onramp adalah fasilitas kasir yang dapat digunakan untuk menukar mata uang fiat ke mata uang kripto dan didepositkan kedalam akun kripto Deriv Anda. Berikut adalah exchanger kripto pihak ketiga. Anda perlu mendaftar akun pada exchanger tersebut untuk menggunakan layanan mereka.", "-1593063457": "Pilih saluran pembayaran", "-130833284": "Mohon diketahui bahwa batas penarikan Anda tidaklah tetap. Hal ini berhubung tingginya volatilitas pada mata uang kripto.", @@ -2093,6 +2087,8 @@ "-1354485738": "Reset Call", "-376148198": "Only Up", "-1337379177": "High Tick", + "-328036042": "Harap masukkan jumlah batas kerugian yang lebih tinggi dari potensi kerugian saat ini.", + "-2127699317": "Batas kerugian tidak berlaku. Batas Kerugian tidak dapat melebihi jumlah modal.", "-1940333322": "DBot tidak tersedia untuk akun ini", "-1210387519": "Kunjungi dashboard MT5", "-1223145005": "Jumlah kerugian: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Durasi maksimum: {{ max }}", "-1194719174": "Jumlah multiplier digunakan untuk meningkatkan modal Anda jika Anda kontrak mengalami kerugian.", "-749186458": "Pengalihan akun dinonaktifkan saat bot Anda berjalan. Hentikan bot Anda sebelum beralih akun.", + "-662836330": "Apakah Anda ingin tetap mengaktifkan kontrak Anda atau menutupnya? Jika Anda ingin tetap mengaktifkan, Anda dapat menutupnya kemudian pada halaman <0>Laporan.", + "-597939268": "Tetap aktifkan kontrak", "-1322453991": "Anda perlu login untuk mengoperasikan bot.", "-1483938124": "Strategi ini tidak sesuai digunakan pada DBot.", + "-236548954": "Error Pembaruan Kontrak", "-1428017300": "YANG", "-1450728048": "DARI", "-255051108": "ANDA", "-1845434627": "ADALAH", "-931434605": "INI", "-740712821": "SEBUAH", + "-187634388": "Blok ini wajib. Di sinilah Anda dapat memutuskan apakah bot Anda harus melanjutkan trading. Hanya satu salinan dari blok ini diperbolehkan.", + "-2105473795": "Satu-satunya parameter input yang menentukan bagaimana output blok akan diformat. Dalam kasus jika parameter input adalah \"string\" maka mata uang akun akan ditambahkan.", + "-1800436138": "2. untuk \"nomer\": 1325.68", + "-2046396241": "Blok ini wajib. Hanya satu salinan dari blok ini diperbolehkan. Hal ini ditambahkan ke kanvas secara otomatis saat Anda membuka DBot.", + "-530632460": "Blok ini digunakan untuk menentukan apakah harga pasar bergerak ke arah yang dipilih atau tidak. Akan memberi Anda nilai \"Benar\" atau \"Salah\".", + "-1875717842": "Contoh:", + "-890079872": "1. Jika arah yang dipilih adalah \"Rise\", dan nilai tik sebelumnya lebih kecil dari nilai tik saat ini, outputnya akan menjadi \"Benar\". Jika tidak, output akan berupa string kosong.", + "-489739641": "2. Jika arah yang dipilih adalah \"Fall \", dan nilai Tik sebelumnya lebih dari nilai Tik saat ini, outputnya akan \"Benar\". Jika tidak, output akan berupa string kosong.", + "-2116076360": "Terdapat 4 jenis pesan:", + "-1421941045": "2. 'Peringatkan' menampilkan pesan berwarna kuning untuk menyorot sesuatu yang perlu diperhatikan.", + "-277850921": "Jika \"Untung\" dipilih, maka \"Benar\" akan ditampilkan jika kontrak terakhir Anda mengalami keuntungan. Jika tidak, maka tampilan akan berupa string kosong.", + "-1918487001": "Contoh:", + "-2139916657": "1. Pada contoh di bawah loop diakhiri dalam kasus \"x\" adalah \"salah\" meskipun hanya satu iterasi yang diselesaikan", + "-1238900333": "2. dalam contoh di bawah ini loop melompat ke iterasi berikutnya tanpa mengeksekusi blok di bawah dalam kasus jika \"x\" adalah \"Salah\" ", + "-1729479576": "Anda dapat menggunakan \"i\" di dalam loop, misalnya untuk mengakses daftar item", + "-1474636594": "Dalam contoh ini, loop akan mengulangi sebanyak tiga kali, karena jumlah tersebut adalah jumlah item dalam daftar yang diberikan. Selama setiap iterasi, variabel \"i\" akan diberi nilai dari daftar. ", + "-908772734": "Blok ini mengevaluasi pernyataan dan akan melakukan tindakan hanya ketika pernyataan itu benar.", + "-334040831": "2. Dalam contoh berikut, instruksi diulang selama nilai x lebih besar dari atau sama dengan 10. Setelah nilai x menurun di bawah 10, loop akan dihentikan.", + "-444267958": "Blok \"Detik Sejak Epoch\" menampilkan jumlah detik sejak 1 Januari 1970.", + "-447522129": "Anda mungkin membutuhkannya pada saat perlu mengulangi tindakan setelah beberapa waktu.", + "-1488259879": "Istilah \"candle \" mengacu pada setiap bar pada grafik candle. Setiap lilin mewakili empat harga pasar untuk interval waktu yang dipilih:", + "-2020693608": "Setiap candlestick pada grafik mewakili 4 harga pasar untuk interval waktu yang dipilih:", + "-62728852": "- Harga open: harga pembukaan", + "-1247744334": "- Harga low: harga terendah", + "-1386365697": "- Harga close: harga penutupan", + "-1498732382": "Sebuah candle hitam (atau merah) menunjukkan bahwa harga pembukaan (open) lebih tinggi dari harga penutupan (close). Hal ini merupakan pergerakan turun dari harga pasar.", + "-1871864755": "Blok ini memberi Anda digit terakhir dari nilai tik terbaru dari pasar yang dipilih. Jika nilai tik terbaru adalah 1410,90, blok ini akan menampilkan 0. Hal ini berguna untuk kontrak berbasis digit seperti Even/Odd, Matches/Differs, atau Higher/Lower.", + "-1029671512": "Jika pengoperasian \"ATAU\" dipilih, maka blok akan menampilkan \"Benar\" jika salah satu atau kedua nilai yang diberikan adalah \"Benar\"", + "-210295176": "Operasi yang tersedia:", + "-1385862125": "- Penambahan", + "-983721613": "- Pengurangan", + "-854750243": "- Perkalian", + "-1394815185": "Jika nomor yang diberikan kurang dari batas bawah, blok akan menampilkan nilai batas bawah. Demikian pula, jika nomor yang diberikan lebih besar dari batas tinggi, blok akan menampilkan nilai batas tinggi. Namun jika nilai yang diberikan adalah antara batas, maka blok akan menampilkan nilai yang tidak berubah.", + "-1034564248": "Dalam contoh di bawah blok menampilkan nilai 10 berhubung nilai yang diberikan (5) kurang dari batas bawah (10)", + "-2009817572": "Blok ini melakukan operasi berikut pada angka yang diberikan", + "-671300479": "Operasi yang tersedia adalah:", + "-514610724": "- Mutlak", + "-1923861818": "- Nomor Euler (2,71) dengan kekuatan nomor yang diberikan", + "-1556344549": "Caranya:", + "-1061127827": "- Kunjungi URL berikut, pastikan untuk mengganti dengan token API Telegram yang Anda buat pada Langkah 1: https://api.telegram.org/bot /getUpdates", + "-70949308": "4. Kembali ke DBot dan tambahkan blok Memberitahu Telegram ke ruang kerja. Tempelkan token API Telegram dan ID chat ke kolom blok yang sesuai.", + "-311389920": "Dalam contoh ini, harga open dari daftar candle ditugaskan untuk variabel yang disebut \"cl\".", + "-1460794449": "Blok ini memberi Anda daftar candle sesuai interval waktu yang dipilih.", + "-1634242212": "Digunakan dalam blok fungsi, blok ini mengembalikan nilai ketika kondisi tertentu adalah benar.", + "-2012970860": "Blok ini memberi Anda informasi tentang kontrak terakhir Anda.", + "-1504783522": "Anda dapat memilih untuk melihat salah satu dari hal berikut ini:", + "-10612039": "- Untung: keuntungan yang Anda peroleh", + "-555996976": "- Waktu masuk: waktu mulai kontrak", + "-1391071125": "- Waktu akhir: waktu berakhirnya kontrak", + "-1961642424": "- Nilai akhir: nilai tik terakhir dari kontrak", + "-111312913": "- Barrier: nilai batasan kontrak (berlaku untuk jenis trading berbasis barrier seperti tetap in/out, touch/no touch, dll).", + "-674283099": "- Hasil: hasil dari kontrak terakhir: \"untung\" atau \"rugi\"", + "-704543890": "Blok ini memberi Anda nilai candle yang dipilih seperti harga open, harga close, harga high, harga low, dan waktu open. Hal ini membutuhkan candle sebagai parameter input.", + "-482281200": "Dalam contoh di bawah ini, harga open ditetapkan pada variabel \"op\".", + "-364621012": "Blok ini memberi Anda nilai candle yang ditentukan bagi interval waktu yang dipilih. Anda dapat memilih nilai yang diinginkan:", + "-232477769": "- Open: harga pembukaan", + "-610736310": "Gunakan blok ini untuk menjual kontrak Anda pada harga pasar. Menjual kontrak Anda adalah opsional. Anda dapat memilih untuk menjual jika tren pasar tidak menguntungkan.", + "-1307657508": "Blok ini memberi Anda potensi keuntungan atau kerugian jika Anda memutuskan untuk menjual kontrak Anda. Hal ini hanya dapat digunakan dalam \"kondisi jual\" blok root.", + "-1921072225": "Dalam contoh di bawah ini, kontrak hanya akan dijual jika potensi keuntungan atau kerugian lebih dari modal.", + "-955397705": "SMA menambahkan harga pasar pada daftar tik atau candle dalam beberapa periode waktu, dan membagi jumlah dengan jumlah periode waktu.", + "-1424923010": "di mana n adalah jumlah periode.", + "-1835384051": "Apa kegunaan SMA", + "-749487251": "SMA berfungsi sebagai indikator tren. Jika SMA menunjuk ke atas maka harga pasar meningkat dan sebaliknya. Semakin besar jumlah periode, garis SMA semakin halus.", + "-1996062088": "Dalam contoh ini, setiap titik garis SMA adalah rata-rata aritmatika harga penutupan untuk 10 hari terakhir.", + "-1866751721": "Daftar input menerima daftar tik atau candle, sementara periode adalah periode waktu yang ditentukan.", + "-1097076512": "Anda dapat membandingkan nilai SMA yang dihitung pada setiap bot yang dijalankan untuk mengidentifikasi arah tren pasar. Atau, Anda juga dapat menggunakan variasi dari blok SMA, Simple Moving Average Array. ", + "-1254849504": "Jika periode 10 dimasukkan, blok Simple Moving Average Array akan mengembalikan daftar nilai SMA yang dihitung berdasarkan 10 periode.", + "-1190046167": "Blok ini menampilkan kotak dialog dengan pesan yang disesuaikan. Ketika kotak dialog ditampilkan, strategi Anda dijeda dan hanya akan dilanjutkan setelah Anda mengklik \"OK \".", + "-859028989": "Dalam contoh ini, tanggal dan waktu akan ditampilkan pada kotak pemberitahuan hijau.", + "-1452086215": "Dalam contoh ini, kontrak Rise akan dibeli pada tengah malam tanggal 1 Agustus 2019.", + "-1765276625": "Klik menu multiplier dan pilih nilai multiplier yang ingin Anda tradingkan.", + "-1872233077": "Potensi keuntungan akan digandakan sesuai dengan nilai multiplier yang Anda pilih.", + "-614454953": "Untuk mempelajari lebih lanjut, kunjungi halaman <0>Multiplier.", + "-2078588404": "Pilih jenis pasar dan aset yang Anda inginkan. Sebagai contoh, Forex > pasangan Mayor > AUD/JPY", + "-2037446013": "2. Jenis Kontrak", + "-533927844": "Pilih jenis trading yang Anda inginkan. Misalnya, Up/Down > Rise/Fall", + "-1192411640": "4. Interval Candle Otomatis", + "-485434772": "8. Opsi Trading", + "-1827646586": "Blok ini menetapkan nilai yang diberikan pada variabel, membuat variabel jika belum tersedia.", "-254421190": "Daftar: ({{message_length}})", "-9461328": "Keamanan dan privasi", "-418247251": "Unduh jurnal Anda.", @@ -2209,17 +2287,6 @@ "-398198412": "Trading di Deriv MT5 (DMT5), platform trading semua dalam satu untuk FX dan CFD.", "-1793883644": "Trading FX dan CFD pada platform trading yang dapat disesuaikan dan mudah digunakan.", "-1246992539": "Binary Bot", - "-563774117": "Dasbor", - "-773544978": "Halaman Utama", - "-1003047246": "Aplikasi Saya", - "-2024365882": "Jelajahi", - "-2038666662": "Tentang Kami", - "-832198631": "Kartu Kredit/Debit", - "-1787820992": "Berbagai Platform", - "-837532140": "Jenis Trading", - "-663862998": "Pasar", - "-947407631": "Indeks Sintetis", - "-362324454": "Komoditas", "-821418875": "Trader", "-1309011360": "Posisi berjalan", "-679102561": "Rincian Kontrak", @@ -2317,41 +2384,47 @@ "-618539786": "Akun Anda akan segera ditutup", "-945275490": "Tarik semua dana dari akun Opsi Anda.", "-705744796": "Saldo akun demo Anda telah mencapai batas maksimum, dan Anda tidak dapat melakukan trading baru. Reset saldo Anda untuk melanjutkan trading dari akun demo Anda.", - "-2067423661": "Keamanan yang lebih baik untuk akun Deriv Anda", - "-1719731099": "Dengan menggunakan autentikasi dua faktor maka Anda akan melindungi akun Anda dengan lebih baik - hanya Anda yang dapat mengakses akun, meskipun ada orang yang mengetahui kata sandi Anda.", - "-1738575826": "Pindah ke akun riil Anda atau daftar akun untuk mengakses kasir.", + "-1585069798": "Klik tautan berikut untuk melengkapi Ujian Kesesuaian Anda.", + "-1287141934": "Info lebih lanjut", + "-367759751": "Akun Anda belum diverifikasi", + "-596690079": "Enjoy using Deriv?", + "-265932467": "We’d love to hear your thoughts", + "-1815573792": "Drop your review on Trustpilot.", + "-823349637": "Go to Trustpilot", "-1204063440": "Pilih mata uang akun saya", + "-1164554246": "Anda mengirimkan dokumen identitas yang sudah tidak berlaku", + "-219846634": "Ayo verifikasi ID Anda", + "-529038107": "Menginstal", + "-87149410": "Menginstal aplikasi web DTrader", + "-1738575826": "Pindah ke akun riil Anda atau daftar akun untuk mengakses kasir.", + "-1329329028": "Anda belum menetapkan batas 30 hari total pembelian Anda", + "-132893998": "Bagian kasir akun Anda untuk sementara dibatakan berhubung Anda belum memilih batasan total pembelian 30 hari. Kunjungi Pengecualian Diri dan pilih batas pembelian 30 hari Anda.", + "-1852207910": "Penarikan MT5 dinonaktifkan", + "-764323310": "Penarikan MT5 tidak tersedia pada akun Anda. Silahkan cek email untuk informasi lebih lanjut.", + "-1435762703": "Silakan verifikasi identitas Anda", + "-1902997828": "Refresh sekarang", + "-753791937": "Versi baru dari Deriv sudah tersedia", + "-1775108444": "Halaman ini akan secara otomatis direfresh dalam tempo 5 menit untuk memuat versi terbaru.", + "-1175685940": "Hubungi kami melalui obrolan langsung untuk mengaktifkan penarikan.", + "-1125797291": "Kata sandi diperbarui.", + "-157145612": "Silakan akses menggunakan kata sandi baru Anda.", + "-87177461": "Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan deposit.", + "-904632610": "Mereset saldo Anda", + "-470018967": "Mereset saldo", + "-156611181": "Lengkapi penilaian keuangan pada pengaturan akun Anda untuk mengaktifkannya.", "-1925176811": "Tidak dapat memproses penarikan untuk saat ini", "-980696193": "Penarikan tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat melakukan penarikan kembali setelah perbaikan selesai.", "-1647226944": "Tidak dapat memproses deposit untuk saat ini", "-488032975": "Deposit tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat melakukan deposit kembali setelah perbaikan selesai.", "-67021419": "Kasir tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat mengakses bagian kasir kembali setelah perbaikan selesai.", - "-219846634": "Ayo verifikasi ID Anda", - "-367759751": "Akun Anda belum diverifikasi", - "-1175685940": "Hubungi kami melalui obrolan langsung untuk mengaktifkan penarikan.", - "-1852207910": "Penarikan MT5 dinonaktifkan", - "-764323310": "Penarikan MT5 tidak tersedia pada akun Anda. Silahkan cek email untuk informasi lebih lanjut.", - "-1585069798": "Klik tautan berikut untuk melengkapi Ujian Kesesuaian Anda.", - "-1329329028": "Anda belum menetapkan batas 30 hari total pembelian Anda", - "-132893998": "Bagian kasir akun Anda untuk sementara dibatakan berhubung Anda belum memilih batasan total pembelian 30 hari. Kunjungi Pengecualian Diri dan pilih batas pembelian 30 hari Anda.", - "-156611181": "Lengkapi penilaian keuangan pada pengaturan akun Anda untuk mengaktifkannya.", "-849587074": "Anda belum menginformasikan NPWP", "-47462430": "Informasi ini diperlukan untuk memenuhi persyaratan hukum dan peraturan yang berlaku. Kunjungi bagian pengaturan akun Anda, dan isi nomor NPWP terbaru.", - "-87177461": "Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan deposit.", + "-2067423661": "Keamanan yang lebih baik untuk akun Deriv Anda", + "-1719731099": "Dengan menggunakan autentikasi dua faktor maka Anda akan melindungi akun Anda dengan lebih baik - hanya Anda yang dapat mengakses akun, meskipun ada orang yang mengetahui kata sandi Anda.", + "-822888359": "Your withdrawal is locked", + "-1197701578": "Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.", "-2087822170": "Anda sedang offline", "-1669693571": "Periksa koneksi Anda.", - "-1125797291": "Kata sandi diperbarui.", - "-157145612": "Silakan akses menggunakan kata sandi baru Anda.", - "-904632610": "Mereset saldo Anda", - "-470018967": "Mereset saldo", - "-1435762703": "Silakan verifikasi identitas Anda", - "-1164554246": "Anda mengirimkan dokumen identitas yang sudah tidak berlaku", - "-1902997828": "Refresh sekarang", - "-753791937": "Versi baru dari Deriv sudah tersedia", - "-1775108444": "Halaman ini akan secara otomatis direfresh dalam tempo 5 menit untuk memuat versi terbaru.", - "-529038107": "Menginstal", - "-87149410": "Menginstal aplikasi web DTrader", - "-1287141934": "Info lebih lanjut", "-1998049070": "Jika Anda menyetujui penggunaan cookies kami, klik pada tombol Menerima. Untuk informasi lebih lanjut, <0>lihat halaman kebijakan kami.", "-1721181859": "Anda memerlukan akun {{deriv_account}}", "-1989074395": "Silakan tambahkan akun {{deriv_account}} terlebih dahulu sebelum menambahkan akun {{dmt5_account}}. Deposit dan penarikan untuk akun {{dmt5_label}} Anda dilakukan dengan mentransfer dana ke dan dari akun {{deriv_label}} Anda.", @@ -2386,6 +2459,7 @@ "-1950045402": "Tarik semua dana Anda", "-168971942": "Hal ini berarti", "-905560792": "OK, saya mengerti", + "-2024365882": "Jelajahi", "-1197864059": "Daftar akun demo gratis", "-1485242688": "Langkah {{step}}: {{step_title}} ({{step}} dari {{steps}})", "-1829842622": "Anda dapat mendaftar akun pada setiap jenis mata uang kripto.", @@ -2439,6 +2513,7 @@ "-1917706589": "Akun Deriv Anda sudah tidak ditautkan ke {{social_identity_provider}}. Gunakan email dan kata sandi untuk login di masa mendatang.", "-2017825013": "Mengerti", "-505449293": "Masukkan kata sandi baru untuk akun Deriv Anda.", + "-1787820992": "Berbagai Platform", "-184713104": "Dapatkan hasil tetap menggunakan opsi, atau trading menggunakan multiplier untuk meningkatkan keuntungan dengan risiko terbatas.", "-1571775875": "Opsi unggulan dan platform tarding multiplier kami.", "-1107320163": "Otomatiskan trading Anda, tanpa perlu menulis kode.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.Jika keputusan yang dihasilkan adalah mendukung kami, maka Anda harus memberikan pelepasan kepada kami dalam tempo 7 hari setelah keputusan dibuat, dan keluhan akan dianggap telah ditutup.", "-429248139": "5. Sangkalan", "-818926350": "Komisi Keuangan menerima banding dalam tempo 45 hari setelah tanggal kejadian dan hanya setelah trader sudah mencoba untuk menyelesaikan masalah dengan perusahaan secara langsung.", - "-236548954": "Error Pembaruan Kontrak", "-1282933308": "Bukan {{barrier}}", "-968190634": "Sama (Equal) {{barrier}}", "-1747377543": "Di bawah (Under) {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Digit", "-1790089996": "BARU!", "-590018519": "Kontrak Dibeli", - "-328036042": "Harap masukkan jumlah batas kerugian yang lebih tinggi dari potensi kerugian saat ini.", - "-2127699317": "Batas kerugian tidak berlaku. Batas Kerugian tidak dapat melebihi jumlah modal.", "-405439829": "Maaf, Anda tidak dapat melihat kontrak ini karena tidak terdapat pada akun ini. ", "-1714959941": "Tampilan grafik ini tidak ideal untuk kontrak tik", "-1254554534": "Silakan ubah durasi grafik dalam tik untuk memperoleh pengalaman trading yang lebih baik.", @@ -2593,22 +2665,13 @@ "-584696680": "Jika Anda memilih \"Batas keuntungan\" dan menentukan jumlah yang ingin Anda hasilkan, posisi Anda akan ditutup secara otomatis ketika profit Anda lebih dari atau sama dengan jumlah tersebut. Keuntungan Anda mungkin lebih dari jumlah yang Anda masukkan tergantung pada harga penutupan pasar.", "-178096090": "“Batas keuntungan” tidak dapat diperbarui. Anda dapat memperbaruinya hanya ketika “Pembatalan transaksi” telah berakhir.", "-206909651": "Spot masuk adalah harga pasar ketika kontrak Anda diproses oleh server kami.", - "-673424733": "Akun demo", - "-1066565281": "Pemeliharaan server akan di mulai pada pukul 06:00 GMT (13:00 WIB) setiap hari Minggu dan proses ini dapat mengambil waktu selama 2 jam. Beberapa layanan mungkin akan mengalami gangguan selama periode ini.", - "-1481390656": "Pemeliharaan server akan di mulai pada pukul 01:00 GMT (08:00 WIB) setiap hari Minggu. Proses ini dapat memakan waktu hingga 2 jam. Beberapa layanan mungkin akan mengalami gangguan selama waktu ini.", - "-1199152768": "Silakan jelajahi platform lainnya.", - "-498346912": "Jelajahi DBot", + "-464262734": "Mengelola kata sandi akun Riil {{platform}} {{account_title}}", "-2042845290": "Kata sandi investor Anda telah diubah.", "-1882295407": "Kata sandi Anda telah diubah.", "-254497873": "Gunakan kata sandi ini untuk memberikan tampilan akses pada pengguna lain. Meskipun mereka dapat melihat akun trading Anda, mereka tidak akan dapat bertrading atau mengambil tindakan lainnya.", "-161656683": "Kata sandi investor saat ini", "-374736923": "Kata sandi investor baru", "-1793894323": "Membuat atau mengatur ulang kata sandi investor", - "-464262734": "Mengelola kata sandi akun Riil {{platform}} {{account_title}}", - "-1928229820": "Reset kata sandi investor Deriv X", - "-1917043724": "Reset kata sandi investor DMT5", - "-1087845020": "utama", - "-1950683866": "investor", "-149836494": "Nomor referensi transaksi Anda adalah {{transaction_id}}", "-1382749084": "Kembali ke trading", "-538215347": "Deposit bersih", @@ -2737,7 +2800,6 @@ "-1588406981": "Anda dapat memeriksa hasil trading terakhir menggunakan blok ini.", "-1459154781": "Detail Kontrak: {{ contract_detail }}", "-1652241017": "Membaca properti yang dipilih dari daftar rincian kontrak", - "-2012970860": "Blok ini memberi Anda informasi tentang kontrak terakhir Anda.", "-2082345383": "Blok-blok ini mentransfer kontrol ke blok kondisi pembelian.", "-172574065": "Blok ini akan mengalihkan kontrol kembali ke blok kondisi Pembelian, memungkinkan Anda untuk membeli kontrak lain.", "-403103225": "restart", @@ -2780,7 +2842,6 @@ "-1556495906": "Menampilkan daftar nilai spesifik dari daftar candle sesuai dengan interval waktu yang dipilih", "-166816850": "Buat daftar nilai candle (1)", "-1261436901": "Daftar Candle", - "-1460794449": "Blok ini memberi Anda daftar candle sesuai interval waktu yang dipilih.", "-1174859923": "Membaca nilai candle yang dipilih", "-1972165119": "Membaca nilai candle (1)", "-1956100732": "Anda dapat menggunakan blok ini untuk menganalisa tik, apapun kontrak Anda", @@ -2830,10 +2891,13 @@ "-702370957": "Konversikan ke tanggal/waktu", "-982729677": "Konversikan ke timestamp", "-311268215": "Blok ini mengkonversi string teks yang mewakili tanggal dan waktu menjadi detik sejak Unix Epoch (1 Januari 1970). Offset waktu dan zona waktu bersifat opsional. Contoh: 2019-01-01 21:03:45 GMT + 0800 akan dikonversi ke 1546347825.", + "-1797602591": "Batas Kerugian: {{ currency }} {{ stop_loss }}", + "-1214929127": "Batas kerugian harus berupa angka positif.", + "-2142851225": "Opsi trading multiplier", + "-625636913": "Jumlah harus berupa angka positif.", "-1466383897": "Durasi: {{ duration_unit }} {{ duration_value }}", "-440702280": "Opsi trading", "-1193894978": "Tentukan pilihan trading Anda seperti durasi dan modal. Beberapa opsi hanya berlaku untuk jenis trading tertentu.", - "-625636913": "Jumlah harus berupa angka positif.", "-46523443": "Nilai durasi tidak diizinkan. Untuk menjalankan bot, masukkan nilai antara {{min}} hingga {{max}}.", "-1483427522": "Jenis Trading: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Parameter trading", @@ -2841,7 +2905,6 @@ "-783173909": "Opsi trading:", "-376956832": "Di sinilah Anda dapat menentukan parameter kontrak Anda.", "-1244007240": "jika {{ condition }} maka", - "-908772734": "Blok ini mengevaluasi pernyataan dan akan melakukan tindakan hanya ketika pernyataan itu benar.", "-1577206704": "lain jika", "-33796979": "benar", "-1434883449": "Ini adalah satu blok yang mengembalikan nilai Boolean, baik benar atau salah.", @@ -2903,84 +2966,11 @@ "-1133072029": "Panjang String Teks", "-1109723338": "cetak {{ input_text }}", "-736668830": "Cetak", - "-1190046167": "Blok ini menampilkan kotak dialog dengan pesan yang disesuaikan. Ketika kotak dialog ditampilkan, strategi Anda dijeda dan hanya akan dilanjutkan setelah Anda mengklik \"OK \".", "-1821552998": "pangkas spasi dari sisi {{ side }} dari {{ input_text }}", "-801766026": "sisi kanan", "-474779821": "Potong ruangan", "-1219239717": "Satu atau lebih blok wajib telah hilang dari ruang kerja Anda. Tambahkan blok yang diperlukan dan coba kembali. ", "-250761331": "Satu atau lebih blok wajib dinonaktifkan di ruang kerja Anda. Harap aktifkan blok yang diperlukan lalu coba lagi.", - "-187634388": "Blok ini wajib. Di sinilah Anda dapat memutuskan apakah bot Anda harus melanjutkan trading. Hanya satu salinan dari blok ini diperbolehkan.", - "-2105473795": "Satu-satunya parameter input yang menentukan bagaimana output blok akan diformat. Dalam kasus jika parameter input adalah \"string\" maka mata uang akun akan ditambahkan.", - "-1800436138": "2. untuk \"nomer\": 1325.68", - "-2046396241": "Blok ini wajib. Hanya satu salinan dari blok ini diperbolehkan. Hal ini ditambahkan ke kanvas secara otomatis saat Anda membuka DBot.", - "-530632460": "Blok ini digunakan untuk menentukan apakah harga pasar bergerak ke arah yang dipilih atau tidak. Akan memberi Anda nilai \"Benar\" atau \"Salah\".", - "-1875717842": "Contoh:", - "-890079872": "1. Jika arah yang dipilih adalah \"Rise\", dan nilai tik sebelumnya lebih kecil dari nilai tik saat ini, outputnya akan menjadi \"Benar\". Jika tidak, output akan berupa string kosong.", - "-489739641": "2. Jika arah yang dipilih adalah \"Fall \", dan nilai Tik sebelumnya lebih dari nilai Tik saat ini, outputnya akan \"Benar\". Jika tidak, output akan berupa string kosong.", - "-2116076360": "Terdapat 4 jenis pesan:", - "-1421941045": "2. 'Peringatkan' menampilkan pesan berwarna kuning untuk menyorot sesuatu yang perlu diperhatikan.", - "-277850921": "Jika \"Untung\" dipilih, maka \"Benar\" akan ditampilkan jika kontrak terakhir Anda mengalami keuntungan. Jika tidak, maka tampilan akan berupa string kosong.", - "-1918487001": "Contoh:", - "-2139916657": "1. Pada contoh di bawah loop diakhiri dalam kasus \"x\" adalah \"salah\" meskipun hanya satu iterasi yang diselesaikan", - "-1238900333": "2. dalam contoh di bawah ini loop melompat ke iterasi berikutnya tanpa mengeksekusi blok di bawah dalam kasus jika \"x\" adalah \"Salah\" ", - "-1729479576": "Anda dapat menggunakan \"i\" di dalam loop, misalnya untuk mengakses daftar item", - "-1474636594": "Dalam contoh ini, loop akan mengulangi sebanyak tiga kali, karena jumlah tersebut adalah jumlah item dalam daftar yang diberikan. Selama setiap iterasi, variabel \"i\" akan diberi nilai dari daftar. ", - "-334040831": "2. Dalam contoh berikut, instruksi diulang selama nilai x lebih besar dari atau sama dengan 10. Setelah nilai x menurun di bawah 10, loop akan dihentikan.", - "-444267958": "Blok \"Detik Sejak Epoch\" menampilkan jumlah detik sejak 1 Januari 1970.", - "-447522129": "Anda mungkin membutuhkannya pada saat perlu mengulangi tindakan setelah beberapa waktu.", - "-1488259879": "Istilah \"candle \" mengacu pada setiap bar pada grafik candle. Setiap lilin mewakili empat harga pasar untuk interval waktu yang dipilih:", - "-2020693608": "Setiap candlestick pada grafik mewakili 4 harga pasar untuk interval waktu yang dipilih:", - "-62728852": "- Harga open: harga pembukaan", - "-1247744334": "- Harga low: harga terendah", - "-1386365697": "- Harga close: harga penutupan", - "-1498732382": "Sebuah candle hitam (atau merah) menunjukkan bahwa harga pembukaan (open) lebih tinggi dari harga penutupan (close). Hal ini merupakan pergerakan turun dari harga pasar.", - "-1871864755": "Blok ini memberi Anda digit terakhir dari nilai tik terbaru dari pasar yang dipilih. Jika nilai tik terbaru adalah 1410,90, blok ini akan menampilkan 0. Hal ini berguna untuk kontrak berbasis digit seperti Even/Odd, Matches/Differs, atau Higher/Lower.", - "-1029671512": "Jika pengoperasian \"ATAU\" dipilih, maka blok akan menampilkan \"Benar\" jika salah satu atau kedua nilai yang diberikan adalah \"Benar\"", - "-210295176": "Operasi yang tersedia:", - "-1385862125": "- Penambahan", - "-983721613": "- Pengurangan", - "-854750243": "- Perkalian", - "-1394815185": "Jika nomor yang diberikan kurang dari batas bawah, blok akan menampilkan nilai batas bawah. Demikian pula, jika nomor yang diberikan lebih besar dari batas tinggi, blok akan menampilkan nilai batas tinggi. Namun jika nilai yang diberikan adalah antara batas, maka blok akan menampilkan nilai yang tidak berubah.", - "-1034564248": "Dalam contoh di bawah blok menampilkan nilai 10 berhubung nilai yang diberikan (5) kurang dari batas bawah (10)", - "-2009817572": "Blok ini melakukan operasi berikut pada angka yang diberikan", - "-671300479": "Operasi yang tersedia adalah:", - "-514610724": "- Mutlak", - "-1923861818": "- Nomor Euler (2,71) dengan kekuatan nomor yang diberikan", - "-1556344549": "Caranya:", - "-1061127827": "- Kunjungi URL berikut, pastikan untuk mengganti dengan token API Telegram yang Anda buat pada Langkah 1: https://api.telegram.org/bot /getUpdates", - "-70949308": "4. Kembali ke DBot dan tambahkan blok Memberitahu Telegram ke ruang kerja. Tempelkan token API Telegram dan ID chat ke kolom blok yang sesuai.", - "-311389920": "Dalam contoh ini, harga open dari daftar candle ditugaskan untuk variabel yang disebut \"cl\".", - "-1634242212": "Digunakan dalam blok fungsi, blok ini mengembalikan nilai ketika kondisi tertentu adalah benar.", - "-1504783522": "Anda dapat memilih untuk melihat salah satu dari hal berikut ini:", - "-10612039": "- Untung: keuntungan yang Anda peroleh", - "-555996976": "- Waktu masuk: waktu mulai kontrak", - "-1391071125": "- Waktu akhir: waktu berakhirnya kontrak", - "-1961642424": "- Nilai akhir: nilai tik terakhir dari kontrak", - "-111312913": "- Barrier: nilai batasan kontrak (berlaku untuk jenis trading berbasis barrier seperti tetap in/out, touch/no touch, dll).", - "-674283099": "- Hasil: hasil dari kontrak terakhir: \"untung\" atau \"rugi\"", - "-704543890": "Blok ini memberi Anda nilai candle yang dipilih seperti harga open, harga close, harga high, harga low, dan waktu open. Hal ini membutuhkan candle sebagai parameter input.", - "-482281200": "Dalam contoh di bawah ini, harga open ditetapkan pada variabel \"op\".", - "-364621012": "Blok ini memberi Anda nilai candle yang ditentukan bagi interval waktu yang dipilih. Anda dapat memilih nilai yang diinginkan:", - "-232477769": "- Open: harga pembukaan", - "-610736310": "Gunakan blok ini untuk menjual kontrak Anda pada harga pasar. Menjual kontrak Anda adalah opsional. Anda dapat memilih untuk menjual jika tren pasar tidak menguntungkan.", - "-1307657508": "Blok ini memberi Anda potensi keuntungan atau kerugian jika Anda memutuskan untuk menjual kontrak Anda. Hal ini hanya dapat digunakan dalam \"kondisi jual\" blok root.", - "-1921072225": "Dalam contoh di bawah ini, kontrak hanya akan dijual jika potensi keuntungan atau kerugian lebih dari modal.", - "-955397705": "SMA menambahkan harga pasar pada daftar tik atau candle dalam beberapa periode waktu, dan membagi jumlah dengan jumlah periode waktu.", - "-1424923010": "di mana n adalah jumlah periode.", - "-1835384051": "Apa kegunaan SMA", - "-749487251": "SMA berfungsi sebagai indikator tren. Jika SMA menunjuk ke atas maka harga pasar meningkat dan sebaliknya. Semakin besar jumlah periode, garis SMA semakin halus.", - "-1996062088": "Dalam contoh ini, setiap titik garis SMA adalah rata-rata aritmatika harga penutupan untuk 10 hari terakhir.", - "-1866751721": "Daftar input menerima daftar tik atau candle, sementara periode adalah periode waktu yang ditentukan.", - "-1097076512": "Anda dapat membandingkan nilai SMA yang dihitung pada setiap bot yang dijalankan untuk mengidentifikasi arah tren pasar. Atau, Anda juga dapat menggunakan variasi dari blok SMA, Simple Moving Average Array. ", - "-1254849504": "Jika periode 10 dimasukkan, blok Simple Moving Average Array akan mengembalikan daftar nilai SMA yang dihitung berdasarkan 10 periode.", - "-859028989": "Dalam contoh ini, tanggal dan waktu akan ditampilkan pada kotak pemberitahuan hijau.", - "-1452086215": "Dalam contoh ini, kontrak Rise akan dibeli pada tengah malam tanggal 1 Agustus 2019.", - "-2078588404": "Pilih jenis pasar dan aset yang Anda inginkan. Sebagai contoh, Forex > pasangan Mayor > AUD/JPY", - "-2037446013": "2. Jenis Kontrak", - "-533927844": "Pilih jenis trading yang Anda inginkan. Misalnya, Up/Down > Rise/Fall", - "-1192411640": "4. Interval Candle Otomatis", - "-485434772": "8. Opsi Trading", - "-1827646586": "Blok ini menetapkan nilai yang diberikan pada variabel, membuat variabel jika belum tersedia.", "-1687036846": "Unduh blok", "-1266781295": "Memperluas", "-894560707": "fungsi", diff --git a/packages/translations/src/translations/it.json b/packages/translations/src/translations/it.json index 8b38387d5c1b..4c0239784e92 100644 --- a/packages/translations/src/translations/it.json +++ b/packages/translations/src/translations/it.json @@ -7,7 +7,6 @@ "11872052": "Sì, tornerò più tardi", "14365404": "Richiesta per: {{ message_type }} fallita, nuovo tentativo tra {{ delay }}s", "15377251": "Totale profitto: {{profit}}", - "17217397": "Criptovalute", "17843034": "Controlla lo stato della valutazione del documento di verifica identità", "21035405": "Indica le motivazioni della disattivazione (massimo {{ allowed_reasons }} risposte.)", "25854018": "Questo blocco mostra messaggi nella console dello sviluppatore attraverso un input che può essere una stringa di testo, un numero, un valore booleano o un insieme di dati.", @@ -22,6 +21,7 @@ "46523711": "La verifica dell'identità è andata a buon fine", "49963458": "Scegli un'opzione", "54185751": "Meno di 100.000 $", + "55340304": "Mantenere contratto corrente?", "55916349": "Tutto", "58254854": "Ambiti", "59169515": "Se selezioni \"Rialzo asiatiche\", vincerai il payout se l'ultimo tick è superiore alla media dei tick.", @@ -61,7 +61,6 @@ "111931529": "Puntata massima totale su 7 giorni", "113378532": "ETH/USD", "113884303": "Indice tedesco", - "113933902": "Scarica l'app per Deriv X", "115032488": "Prezzo d'acquisto e P/L", "116005488": "Indicatori", "117318539": "La password deve contenere lettere minuscole e maiuscole in inglese con numeri.", @@ -163,7 +162,6 @@ "270339490": "Se selezioni \"Sopra\", vincerai il payout se l'ultima cifra dell'ultimo tick è maggiore rispetto alla tua previsione.", "270610771": "Nell'esempio, il prezzo di apertura di una candela è assegnato alla variabile \"candle_open_price\".", "270712176": "discendente", - "270727821": "Indici azionari", "270780527": "Hai raggiunto il limite di documenti caricabili.", "272179372": "Questo blocco si utilizza comunemente per regolare i parametri del trade successivo e adottare una logica stop loss/take profit.", "273350342": "Copia e incolla il token nell'app.", @@ -197,7 +195,6 @@ "317601768": "Tema", "318865860": "chiudi", "318984807": "Questo blocco ripete le istruzioni ad esso relative per un numero specifico di volte.", - "319538091": "STP finaniziario di DMT5", "323179846": "Il tempo di intervallo di ogni candela può essere impostato da un minuto a un giorno.", "323209316": "Selezionare una strategia Deriv Bot", "325662004": "Espandi il blocco", @@ -248,7 +245,6 @@ "384303768": "Questo blocco torna \"Vero\" se l'ultima candela è nera. Può essere posizionato in qualunque punto dell'area di disegno tranne entro il blocco principale dei parametri di trading.", "386502387": "Il bot non è in esecuzione", "389923099": "Zoom avanti", - "390647540": "Conto Reale", "390890891": "Ultimo trimestre", "391915203": "Hedging", "392582370": "Calo pari a", @@ -256,7 +252,6 @@ "396961806": "Polygon (Matic) non è disponibile. Per depositare fondi, usa Ethereum ({{token}}).", "399387585": "Controllare la casella di posta per ulteriori informazioni. In caso di domande, consultare il nostro <0>Centro assistenza.", "401339495": "Verifica indirizzo", - "402343402": "A causa di un problema sul nostro server, alcuni conti {{platform}} non sono disponibili al momento. Grazie per la comprensione e la pazienza.", "403456289": "La formula per la SMA è:", "404743411": "Depositi totali", "406359555": "Dettagli del contratto", @@ -271,6 +266,7 @@ "427134581": "Usa un altro tipo di file.", "427617266": "Bitcoin", "428709688": "Intervallo di tempo preferito tra un report e l'altro:", + "432508385": "Take Profit: {{ currency }} {{ take_profit }}", "432519573": "Documento caricato", "433348384": "I conti reali non sono disponibili per persone politicamente esposte (PPE).", "433616983": "2. Fase di accertamento", @@ -326,7 +322,6 @@ "505793554": "ultima lettera", "510815408": "Solo lettere, numeri, spazi, trattini", "514031715": "l'elenco {{ input_list }} è vuoto", - "514776243": "La password di {{account_type}} è stata modificata.", "514948272": "Copia link", "518955798": "7. Esegui una volta all'inizio", "520136698": "Indice Boom 500", @@ -438,7 +433,6 @@ "659482342": "Ricorda che è tue responsabilità dare risposte precise e aggiornate. Puoi aggiornare i dati personali in qualsiasi momento dalle impostazioni del conto.", "660481941": "Per accedere alle app su telefono e ad altre app di parti terze, occorre generare un token API.", "660991534": "Termina", - "662609119": "Scarica l'app per MT5", "665089217": "Invia <0>il documenti di verifica dell'identità per autenticare il tuo conto e accedere alla cassa.", "665777772": "XLM/USD", "665872465": "Nell'esempio sottostante, è stato selezionato il prezzo di apertura, che viene poi assegnato a una variabile chiamata \"op\".", @@ -590,6 +584,7 @@ "872957901": "Scuro (a breve disponibile per DBot)", "873166343": "1. \"Registro\" mostra un messaggio regolare.", "874461655": "Scansiona il codice QR con il telefono", + "874484887": "Il take profit deve essere un numero positivo.", "875532284": "Riavvia il procedimento su un dispositivo diverso", "876086855": "Completa il modulo della valutazione finanziaria", "876292912": "Esci", @@ -637,7 +632,6 @@ "947046137": "Il prelievo verrà effettuato entro 24 ore", "947363256": "Crea elenco", "947758334": "Città obbligatoria", - "948156236": "Crea password {{type}}", "949859957": "Invia", "952655566": "Agente di pagamento", "956448295": "Immagine tagliata", @@ -765,7 +759,6 @@ "1129124569": "Selezionando \"Sotto\", vincerai il payout se l'ultima cifra dell'ultimo tick è inferiore alla tua previsione.", "1129296176": "AVVISO IMPORTANTE PER RICEVERE FONDI", "1129842439": "Inserire un importo per il take profit.", - "1129984312": "Bonifico Bancario", "1130744117": "Ci impegniamo a risolvere ogni controversia entro 10 giorni lavorativi. Ti informeremo delle decisioni prese fornendo un spiegazione della nostra posizione, e ti proporremo le eventuali misure correttive che intendiamo implementare.", "1130791706": "N", "1133651559": "Live chat", @@ -878,6 +871,7 @@ "1293660048": "Perdita massima totale giornaliera", "1294756261": "Questo blocco crea una funzione, ovvero un insieme di istruzioni che possono essere eseguite in qualsiasi momento. Colloca al suo interno altri blocchi per svolgere qualsiasi altro tipo di azione necessaria alla tua strategia. Quando tutte le istruzioni di una funzione sono state eseguite, il bot continuerà con le operazione dei blocchi restanti nella tua strategia. Per rinominarlo, fai clic nel campo \"esegui operazione\". Fai clic sull'icona + per assegnare un valore alla funzione (come accade per una variabile rinominata).", "1295284664": "Per proseguire, è necessario accettare i <0>Termini e le condizioni aggiornati.", + "1296380713": "Chiudi contratto", "1299479533": "8 ore", "1301668579": "Stiamo lavorando per rendere disponibile presto questo servizio. Se hai un altro conto, accedi a questo per continuare a fare trading; puoi anche aggiungere un conto finanziario DMT5.", "1302691457": "Profesione", @@ -921,7 +915,6 @@ "1346339408": "Manager", "1347071802": "{{minutePast}}m fa", "1348009461": "Chiudi le posizioni nei seguenti conti Deriv X:", - "1349142948": "DMT5 Finanziario", "1349289354": "Ottimo, abbiamo tutto ciò che ci serve", "1349295677": "nel testo {{ input_text }} sposta la sottostringa da {{ position1 }} {{ index1 }} a {{ position2 }} {{ index2 }}", "1351152200": "Benvenuto sulla dashboard di Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "con intervallo: %1", "1468308734": "Questo blocco ripete le istruzioni a condizione che una determinata condizione sia vera", "1468419186": "Al momento Deriv supporta trasferimenti di Tether USDT da Tether al portafoglio Omni. Per la buona riuscita dell'operazione, inserisci un indirizzo di portafoglio compatibile con i token che vuoi prelevare. <0>Scopri di più", + "1469150826": "Take profit", "1469764234": "Errore di cassa", "1469814942": "- Divisione", "1470319695": "Restituisce il valore Vero o Falso", @@ -1043,7 +1037,6 @@ "1502325741": "La password non può essere la stessa del tuo indirizzo e-mail.", "1503618738": "- ID di riferimento negoziazione: ID di riferimento contratto", "1505898522": "Scarica il gruppo", - "1506251760": "Portafogli", "1509570124": "{{buy_value}} (Acquista)", "1509678193": "Istruzione", "1510075920": "Oro/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Il link per smartphone scadrà tra un'ora", "1577527507": "Motivazione per l'apertura del conto obbligatoria.", "1577612026": "Seleziona una cartella", + "1579484521": "Trading hub", "1580498808": "Individuati più volti", "1584109614": "Lista di stringhe di tick", "1584936297": "Il file XML contiene elementi non supportati. Controlla o modifica il file.", @@ -1107,6 +1101,7 @@ "1620278321": "Nomi e cognomi senza modifiche sono semplici da indovinare", "1620346110": "Imposta valuta", "1622662457": "Da", + "1623706874": "Use this block when you want to use multipliers as your trade type.", "1630372516": "Prova Fiat onramp", "1630417358": "Vai sulle impostazioni del conto e inserisci le informazioni personali per abilitare i prelievi.", "1634594289": "Seleziona la lingua", @@ -1126,6 +1121,7 @@ "1651513020": "Mostra tempo rimanente per ogni intervallo", "1651951220": "Ripetizioni come \"abcabcabc\" risultano solo leggermente più difficili da indovinare di \"abc\"", "1652366857": "ottieni e rimuovi", + "1652968048": "Stabilisci le opzioni di trading come moltiplicatore e puntata.", "1652976865": "Nell'esempio, il blocco è usato con un altro blocco per ottenere i prezzi di apertura da una lista di candele. I prezzi di apertura vengono poi assegnati alla variabile \"cl\".", "1653136377": "copia eseguita!", "1653159197": "Prelievo dell'agente di pagamento", @@ -1142,6 +1138,7 @@ "1665738338": "Saldo", "1665756261": "Vai alla chat live", "1667395210": "Il documento di verifica dell'identità è stato inoltrato con successo", + "1670016002": "Moltiplicatore: {{ multiplier }}", "1670426231": "Orario di fine", "1671232191": "Hai impostato i limiti seguenti:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Disclaimer", "1736292549": "Aggiorna CAP", "1737352280": "Non è stato richiesto avvio bot", - "1738504192": "Portafoglio elettronico", "1738681493": "Togli gli occhiali, se necessario", "1739384082": "Disoccupato", "1740371444": "Il mercato sottostante non è stato selezionato", @@ -1250,7 +1246,6 @@ "1820332333": "Accredita", "1824193700": "Questo blocco fornisce l'ultima cifra del valore dell'ultimo tick.", "1827607208": "File non caricato.", - "1828994348": "DMT5 non è disponibile in {{country}}", "1832974109": "SmartTrader", "1833481689": "Sblocca", "1837762008": "Per accedere alla cassa, vai sulle impostazioni del conto e carica i documenti di verifica di identità e indirizzo.", @@ -1308,7 +1303,6 @@ "1887852176": "Aggiornamento del sito in corso", "1889357660": "Inserisci un valore in minuti fino a 60480 minuti (corrispondenti a 6 settimane).", "1890171328": "Cliccando Accetta qui sotto e procedendo con l'apertura del conto, è opportuno considerare che potresti essere esposto a rischi (potenzialmente elevati, come il rischio di perdita dell'intera somma investita), senza la conoscenza e l'esperienza adeguate per valutarli e attenuarli.", - "1890284485": "Scopri DTrader", "1890332321": "Restituisce il numero di caratteri di una determinata stringa di testo, inclusi numeri, spazi, segni d'interpunzione e simboli.", "1894667135": "Controlla il documento di verifica dell'indirizzo", "1898670234": "{{formatted_opening_time}} (GMT) di {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Aggiungi o gestisci conti", "1973536221": "Non hai ancora posizioni aperte.", "1982912252": "Indice di forza relativa (RSI) da un elenco con un periodo", + "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.", "1983387308": "Anteprima", "1983544897": "P.O. Box non valido come indirizzo", "1983676099": "Controlla la tua casella di posta per ulteriori dettagli.", @@ -1491,7 +1486,6 @@ "2138861911": "Non sono accettate scansioni o fotocopie", "2139171480": "Reimposta ascendente/Reimposta discendente", "2139362660": "lato sinistro", - "2141055709": "Nuova password {{type}}", "2143803283": "Errore d'acquisto", "2144609616": "Selezionando \"Reimposta discendente\", vinci il payout se il punto di uscita è strettamente inferiore al punto di entrata o al punto alla data di reset.", "2145690912": "Fonte di reddito", @@ -1948,7 +1942,6 @@ "-582721696": "Attualmente è possibile prelevare un importo compreso tra {{format_min_withdraw_amount}} e {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "altro", "-1684548351": "Passa al conto per criptovalute", - "-1345040662": "Cerchi un modo per acquistare criptovalute?", "-197251450": "Non vuoi effettuare trading in {{currency_code}}? Puoi aprire un altro conto di criptovalute.", "-212277385": "Non puoi più cambiare la valuta del conto perché hai depositato fondi nel conto per fiat oppure hai creato un conto reale DMT5 o Deriv X. Contattaci tramite la <0>chat live per ulteriori chiarimenti.", "-1900848111": "Questo è il tuo {{currency_code}} conto.", @@ -2022,6 +2015,7 @@ "-811190405": "Orario", "-2004264970": "L'indirizzo di portafoglio deve comprendere dai 25 ai 64 caratteri.", "-1707299138": "L'indirizzo di portafoglio {{currency_symbol}}", + "-1179992129": "Tutti gli agenti di pagamento", "-922432739": "Inserire valide credenziali di accesso del cliente.", "-1024241603": "Saldo non sufficiente.", "-1979554765": "Inserire una descrizione valida.", @@ -2033,7 +2027,6 @@ "-1388977563": "Copia eseguita!", "-1962894999": "Questo indirizzo può essere usato solo UNA VOLTA. Copia un nuovo indirizzo per la prossima operazione.", "-451858550": "Facendo click su \"Continua\" verrai reindirizzato a {{ service }}, un fornitore di servizi di pagamento esterno. {{ website_name }} declina qualsiasi responsabilità per i contenuti o i servizi forniti da {{ service }}. Se riscontri problemi relativi ai servizi di {{ service }}, contatta direttamente {{ service }}.", - "-1179992129": "Tutti gli agenti di pagamento", "-344959847": "Un agente di pagamento è autorizzato ad effettuare depositi e prelievi per tuo conto se i metodi di pagamento locali e le valute da te utilizzati non sono supportati su {{website_name}}.", "-1232852916": "Stiamo passando al tuo conto in {{currency}} per visualizzare l'operazione.", "-38063175": "Portafoglio in {{account_text}}", @@ -2056,6 +2049,7 @@ "-1615615253": "Tron non è disponibile. Per depositare fondi, usa Ethereum ({{token}}).", "-1831000957": "Seleziona la rete con cui farai il deposito.", "-314177745": "Non è stato possibile recuperare l'indirizzo a causa di un malfunzionamento del server. Ricarica la pagina oppure riprova più tardi.", + "-1345040662": "Cerchi un modo per acquistare criptovalute?", "-2005265642": "Fiat onramp è un servizio di cassa che permette di convertire valute fiat in criptovalute per ricaricare i conti per criptovalute di Deriv. Qui sono elencati gli scambi di criptovalute di parti terze; è necessario creare un conto apposito per utilizzare i loro servizi.", "-1593063457": "Seleziona strumento di pagamento", "-130833284": "Il limite minimo e il limite massimo per il prelievo non sono fissi, ma possono cambiare in caso di elevata volatilità delle criptovalute.", @@ -2093,6 +2087,8 @@ "-1354485738": "Reset Call", "-376148198": "Solo ascendenti", "-1337379177": "Tick alto", + "-328036042": "Per lo stop loss, inserisci un importo maggiore della perdita potenziale corrente.", + "-2127699317": "Lo Stop loss non è valido, non può essere superiore alla puntata.", "-1940333322": "DBot non è disponibile per questo conto", "-1210387519": "Vai alla dashboard di DMT5", "-1223145005": "Totale perdita: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Durata massima: {{ max }}", "-1194719174": "L'importo del moltiplicatore aumenta la puntata se stai perdendo un trade.", "-749186458": "Non è possibile passare ad un altro conto durante l'esecuzione del bot. Arresta il bot prima di svolgere tale operazione.", + "-662836330": "Vuoi tenere il contratto corrente oppure chiuderlo? Se decidi di mantenerlo, puoi controllarlo e chiuderlo successivamente tramite la pagina <0>Reports.", + "-597939268": "Tieni contratto", "-1322453991": "Effettua il login per avviare il bot.", "-1483938124": "Questa strategia non è al momento compatibile con DBot.", + "-236548954": "Errore nell'aggiornamento del contratto", "-1428017300": "IL", "-1450728048": "DI", "-255051108": "TU", "-1845434627": "È", "-931434605": "QUESTO", "-740712821": "UN", + "-187634388": "Questo blocco è obbligatorio e ti permette di decidere se il bot dovrebbe continuare a fare trading. Ne è consentita una sola copia.", + "-2105473795": "Il parametro di soli input determina come sarà formattato l'output del blocco. Nel caso in cui il parametro dell'input sia \"stringa\", verrà aggiunta la valuta al conto.", + "-1800436138": "2. per \"numero\": 1325,68", + "-2046396241": "Questo blocco è obbligatorio ed è permessa una sola copia. Viene automaticamente aggiunto all'area di disegno quando apri Dbot.", + "-530632460": "Questo blocco è utilizzato per determinare se il prezzo di mercato si muove o meno nella direzione selezionata, fornendo un valore \"Vero\" o \"Falso\".", + "-1875717842": "Esempi:", + "-890079872": "1. Se la direzione selezionata è \"Rialzo\" e il valore del tick precedente è inferiore a quello del tick corrente, il risultato sarà \"Vero\". Diversamente, l'output corrisponderà a una stringa vuota.", + "-489739641": "2. Se la direzione selezionata è \"Ribasso\" e il valore del tick precedente è superiore a quello del tick corrente, il risultato sarà \"Vero\". Diversamente il risultato corrisponderà a una stringa vuota.", + "-2116076360": "Esistono 4 tipologie di messaggio:", + "-1421941045": "2. \"Avviso\" mostra un messaggio in giallo per evidenziare che qualcosa necessita della tua attenzione.", + "-277850921": "Selezionando \"Vincita\", verrà restituito il valore \"Vero\" se l'ultimo trade è stato vincente. Diversamente, verrà restituita una stringa vuota.", + "-1918487001": "Esempio:", + "-2139916657": "1. Nell'esempio sottostante, la ripetizione viene terminata nel caso in cui \"x\" sia \"Falso\", anche se è stata completata una sola iterazione", + "-1238900333": "2. Nell'esempio sottostante, la ripetizione passa all'iterazione successiva senza eseguire il blocco riportato di seguito nel caso in cui \"x\" sia \"Falso\"", + "-1729479576": "È possibile utilizzare \"i\" all'interno della ripetizione, ad esempio per accedere alle liste di item", + "-1474636594": "Nell'esempio il ciclo si ripete tre volte, poiché questo è il numero di articoli nell'elenco dato. Durante ogni iterazione, alla variabile \"i\" verrà assegnato un valore dall'elenco. ", + "-908772734": "Questo blocco valuta una dichiarazione ed esegue un'azione soltanto quando questa è vera.", + "-334040831": "2. Nell'esempio sottostante, le istruzioni sono ripetute fino a quando il valore di x sarà pari o superiore a 10. Quando il valore di x scende al di sotto di 10, la ripetizione viene interrotta.", + "-444267958": "Il blocco \"Secondi a partire dall'epoca\" restituisce il numero dei secondi dal 1° gennaio 1970.", + "-447522129": "Potrebbe essere utile quando desideri ripetere una serie di azioni dopo un determinato periodo di tempo.", + "-1488259879": "Il termine \"candela\" fa riferimento a ogni barra sul grafico a candele. Ogni candela rappresenta quattro prezzi di mercato per il periodo di tempo selezionato:", + "-2020693608": "Ogni candela sul grafico rappresenta quattro prezzi di mercato per il periodo di tempo selezionato:", + "-62728852": "- Prezzo apertura: il prezzo d'apertura", + "-1247744334": "- Prezzo minimo: il prezzo più basso", + "-1386365697": "- Prezzo chiusura: il prezzo di chiusura", + "-1498732382": "Una candela nera (o rossa) indica che il prezzo di apertura è superiore a quello di chiusura e rappresenta un movimento al ribasso del prezzo di mercato.", + "-1871864755": "Questo blocco fornisce l'ultima cifra del valore dell'ultimo tick del mercato selezionato. Qualora il valore fosse 1410.90, il blocco riporterà 0. È utile per i contratti basati su cifre come Pari/Dispari, Combacia/Differisce o Alto/Basso.", + "-1029671512": "Quando viene selezionata l'operazione \"O\", il blocco restituisce il valore \"Vero\" se uno o entrambi i valori sono \"Veri\"", + "-210295176": "Operazioni disponibili:", + "-1385862125": "- Addizione", + "-983721613": "- Sottrazione", + "-854750243": "- Moltiplicazione", + "-1394815185": "Se il numero dato è inferiore al limite minimo dell'intervallo, il blocco restituisce il valore di tale limite. Analogamente, se il numero dato è superiore al limite massimo, il blocco restituirà il valore di tale limite. Qualora il numero dato si trovasse tra i limiti, il blocco restituirà il valore inalterato.", + "-1034564248": "Nell'esempio sottostante il blocco restituisce il valore 10 quando il valore dato (5) è più basso del limite inferiore (10)", + "-2009817572": "Questo blocco esegue le seguenti operazioni su un determinato numero", + "-671300479": "Le operazioni disponibili sono:", + "-514610724": "- Assoluto", + "-1923861818": "- Il numero di Nepero (2,71) alla potenza di un dato numero", + "-1556344549": "Ecco come:", + "-1061127827": "- Visita il seguente URL, assicurandoti di sostituire con il token dell'API di Telegram che hai creato nel passaggio 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. Ritorna su DBot e aggiungi il blocco di notifica Telegram all'area di lavoro. Incolla il token dell'API di Telegram e l'ID della chat nei rispettivi campi del blocco.", + "-311389920": "In questo esempio, i prezzi di apertura ottenuti da una lista di candele sono assegnati a una variabile chiamata \"cl\".", + "-1460794449": "Questo blocco fornisce un elenco di candele contenuto nell'intervallo di tempo selezionato.", + "-1634242212": "Utilizzato all'interno di un blocco funzionale, questo blocco restituisce un valore quando una specifica condizione è vera.", + "-2012970860": "Questo blocco offre informazioni sull'ultimo contratto.", + "-1504783522": "Puoi scegliere di visualizzarne una delle seguenti:", + "-10612039": "- Profitto: il profitto che hai guadagnato", + "-555996976": "- Orario d'ingresso: l'orario di inizio del contratto", + "-1391071125": "- Orario di uscita: la scadenza del contratto", + "-1961642424": "- Valore d'uscita: il valore dell'ultimo tick del contratto", + "-111312913": "- Barriera: il valore della barriera del contratto (valida soltanto per le tipologie di contratto che la prevedono come resta dentro/termina fuori, tocca/non tocca etc.)", + "-674283099": "- Risultato: il risultato dell'ultimo contratto vinto o perso", + "-704543890": "Questo blocco fornisce il valore della candela selezionata come prezzo d'apertura, di chiusura, massimo, minimo e orario d'apertura. La candela è necessaria come parametro input.", + "-482281200": "Nell'esempio sottostante, il prezzo d'apertura è assegnato alla variabile \"op\".", + "-364621012": "Questo blocco fornisce il valore della specifica candela per un intervallo di tempo selezionato. È possibile scegliere il valore desiderato:", + "-232477769": "- Apertura: il prezzo d'apertura", + "-610736310": "Usa questo blocco per vendere il tuo contratto al prezzo di mercato. La vendita del contratto è opzionale, potresti infatti decidere di vendere se il trend di mercato non è favorevole.", + "-1307657508": "Questo blocco indica il profitto o la perdita potenziale se decidessi di vendere il contratto. Può essere utilizzato soltanto all'interno delle \"Condizioni di vendita\" del blocco radice.", + "-1921072225": "Nell'esempio sottostante, il contratto verrà venduto soltanto se la perdita o il profitto potenziale sono maggiori della puntata.", + "-955397705": "L'indicatore SMA aggiunge il prezzo di mercato in un elenco di tick o candele per un numero di periodi e divide la somma per quel numero.", + "-1424923010": "dove n è il numero di periodi.", + "-1835384051": "Cosa indica lo SMA", + "-749487251": "Lo SMA è un indicatore del trend: punta verso l'alto se il prezzo di mercato sale e viceversa. Tanto più piatta sarà la linea quanto maggiore è il numero di periodi.", + "-1996062088": "In questo esempio, ogni punto sulla linea SMA è una media aritmetica dei prezzi di chiusura degli ultimi 10 giorni.", + "-1866751721": "La lista di input accetta una lista di tick o candele, mentre il periodo è il periodo di tempo specificato.", + "-1097076512": "Puoi confrontare i valori SMA calcolati ad ogni esecuzione del bot per identificare la direzione del trend di mercato. In alternativa, puoi anche utilizzare una variazione del blocco SMA o il blocco degli Array della media mobile semplice. ", + "-1254849504": "Se viene inserito un periodo di 10, l'Array della media mobile semplice restituirà una lista di valori SMA calcolati sulla base di tale periodo.", + "-1190046167": "Questo blocco mostra una finestra di dialogo con un messaggio personalizzato: in questo caso la strategia viene sospesa e riprenderà solo quando avrai premuto \"OK\".", + "-859028989": "Nell'esempio, data e ora vengono mostrati in una casella di notifica verde.", + "-1452086215": "Nell'esempio, verrà acquistato un contratto Rialzo alla mezzanotte del 1 agosto 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": "Seleziona la tipologia di asset e mercato desiderati. Ad esempio: Forex > coppie valutarie maggiori > AUD/JPY", + "-2037446013": "2. Tipologia di trade", + "-533927844": "Seleziona il trade desiderato. Ad esempio, Alto/Basso > Rialzo/Ribasso", + "-1192411640": "4. Intervallo predefinito delle candele", + "-485434772": "8. Opzioni di trade", + "-1827646586": "Questo blocco assegna un valore dato a una variabile, creandone una non ancora esistente.", "-254421190": "Lista: ({{message_length}})", "-9461328": "Sicurezza e privacy", "-418247251": "Scarica il tuo registro.", @@ -2209,17 +2287,6 @@ "-398198412": "Fai trading su MT5 (DMT5) di Deriv, la piattaforma di trading completa con Forex e CFD.", "-1793883644": "Fai trading con FX e CFD su una piattaforma personalizzabile e facile da usare.", "-1246992539": "Binary Bot", - "-563774117": "Dashboard", - "-773544978": "Home", - "-1003047246": "Le mie app", - "-2024365882": "Esplora", - "-2038666662": "Chi siamo", - "-832198631": "Carta di Credito/Debito", - "-1787820992": "Piattaforme", - "-837532140": "Tipologie di trade", - "-663862998": "Mercati", - "-947407631": "Indici sintetici", - "-362324454": "Materie prime", "-821418875": "Trader", "-1309011360": "Posizioni aperte", "-679102561": "Dettagli del contratto", @@ -2317,41 +2384,47 @@ "-618539786": "Il tuo conto verrà chiuso prossimamente", "-945275490": "Preleva tutti i fondi dal conto per opzioni.", "-705744796": "Il saldo del conto di prova ha raggiunto il limite massimo, pertanto non potrai effettuare nuovi trade. Ripristina il saldo per continuare a fare trading con il conto di prova.", - "-2067423661": "Maggiore sicurezza per il conto Deriv", - "-1719731099": "Grazie all'autenticazione a due fattori, il conto è protetto sia dalla password che dal telefono: in questo modo solo tuo puoi accedere al conto anche se qualcuno conosce la password.", - "-1738575826": "Passa al conto reale oppure crea un conto reale per accedere alla cassa.", + "-1585069798": "Fai clic su questo link per eseguire il test di adeguatezza.", + "-1287141934": "Scopri di più", + "-367759751": "Il conto non è stato verificato", + "-596690079": "Enjoy using Deriv?", + "-265932467": "We’d love to hear your thoughts", + "-1815573792": "Drop your review on Trustpilot.", + "-823349637": "Go to Trustpilot", "-1204063440": "Imposta la valuta del conto", + "-1164554246": "I documenti per la verifica dell'identità non sono più validi", + "-219846634": "Verifichiamo la tua identità", + "-529038107": "Installa", + "-87149410": "Installa l'app per il web di DTrader", + "-1738575826": "Passa al conto reale oppure crea un conto reale per accedere alla cassa.", + "-1329329028": "Non hai impostato il limite di fatturato per 30 giorni", + "-132893998": "L'accesso alla cassa è stato temporaneamente disabilitato perché non hai impostato il limite di 30 giorni per il turnover: per impostarlo, vai alla sezione Autoesclusione.", + "-1852207910": "Prelievi da MT5 disabilitati", + "-764323310": "I prelievi dal conto MT5 sono stati disabilitati. Controlla il tuo indirizzo e-mail per ulteriori informazioni.", + "-1435762703": "Verifica l'identità", + "-1902997828": "Aggiorna ora", + "-753791937": "È disponibile una nuova versione di Deriv", + "-1775108444": "La pagina si aggiornerà automaticamente tra 5 minuti per caricare la versione più recente.", + "-1175685940": "Contattaci tramite la chat live per abilitare i prelievi.", + "-1125797291": "Password aggiornata.", + "-157145612": "Effettua il login con la password aggiornata.", + "-87177461": "Vai sulle impostazioni del conto e inserisci le informazioni personali per abilitare i depositi.", + "-904632610": "Ripristina il saldo", + "-470018967": "Ripristina saldo", + "-156611181": "Completa la valutazione finanziaria sulle impostazioni del conto per sbloccare l'operazione.", "-1925176811": "Impossibile prelevare fondi al momento", "-980696193": "I prelievi non sono momentaneamente disponibili a causa della manutenzione del sistema; potrai effettuarli a manutenzione finita.", "-1647226944": "Impossibile depositare fondi al momento", "-488032975": "I depositi non sono momentaneamente disponibili a causa della manutenzione del sistema; potrai effettuarli a manutenzione finita.", "-67021419": "Il nostro cassiere è temporaneamente fuori uso a causa della manutenzione del sistema. Potrai accedere alla cassa tra pochi minuti, quando la manutenzione sarà completata.", - "-219846634": "Verifichiamo la tua identità", - "-367759751": "Il conto non è stato verificato", - "-1175685940": "Contattaci tramite la chat live per abilitare i prelievi.", - "-1852207910": "Prelievi da MT5 disabilitati", - "-764323310": "I prelievi dal conto MT5 sono stati disabilitati. Controlla il tuo indirizzo e-mail per ulteriori informazioni.", - "-1585069798": "Fai clic su questo link per eseguire il test di adeguatezza.", - "-1329329028": "Non hai impostato il limite di fatturato per 30 giorni", - "-132893998": "L'accesso alla cassa è stato temporaneamente disabilitato perché non hai impostato il limite di 30 giorni per il turnover: per impostarlo, vai alla sezione Autoesclusione.", - "-156611181": "Completa la valutazione finanziaria sulle impostazioni del conto per sbloccare l'operazione.", "-849587074": "Non hai inserito il numero di identificazione fiscale", "-47462430": "Queste informazioni sono necessarie a fini legali e normativi. Ti invitiamo ad andare sulle impostazioni del conto e inserire il tuo numero di identificazione fiscale.", - "-87177461": "Vai sulle impostazioni del conto e inserisci le informazioni personali per abilitare i depositi.", + "-2067423661": "Maggiore sicurezza per il conto Deriv", + "-1719731099": "Grazie all'autenticazione a due fattori, il conto è protetto sia dalla password che dal telefono: in questo modo solo tuo puoi accedere al conto anche se qualcuno conosce la password.", + "-822888359": "Your withdrawal is locked", + "-1197701578": "Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.", "-2087822170": "Sei offline", "-1669693571": "Verifica la tua connessione.", - "-1125797291": "Password aggiornata.", - "-157145612": "Effettua il login con la password aggiornata.", - "-904632610": "Ripristina il saldo", - "-470018967": "Ripristina saldo", - "-1435762703": "Verifica l'identità", - "-1164554246": "I documenti per la verifica dell'identità non sono più validi", - "-1902997828": "Aggiorna ora", - "-753791937": "È disponibile una nuova versione di Deriv", - "-1775108444": "La pagina si aggiornerà automaticamente tra 5 minuti per caricare la versione più recente.", - "-529038107": "Installa", - "-87149410": "Installa l'app per il web di DTrader", - "-1287141934": "Scopri di più", "-1998049070": "Se accetti l'uso dei cookies, clicca su Accetto. Per maggiori informazioni, <0>consulta la nostra politica.", "-1721181859": "Occorre un conto {{deriv_account}}", "-1989074395": "Aggiungi un conto {{deriv_account}} prima di aggiungere un conto {{dmt5_account}}. I depositi e i trasferimenti con il conto {{dmt5_label}} avvengono trasferendo i fondi da e verso il conto {{deriv_label}}.", @@ -2386,6 +2459,7 @@ "-1950045402": "Preleva tutti i fondi", "-168971942": "Conseguenze per te", "-905560792": "Ok, ho capito", + "-2024365882": "Esplora", "-1197864059": "Crea un conto di prova gratuito", "-1485242688": "Passaggio {{step}}: {{step_title}} {{step}} su {{steps}}", "-1829842622": "È possibile aprire un conto per ogni criptovaluta.", @@ -2439,6 +2513,7 @@ "-1917706589": "Il conto Deriv è scollegato da {{social_identity_provider}}. Usa la tua e-mail e password per accedere in futuro.", "-2017825013": "Capito", "-505449293": "Inserisci una nuova password per il conto Deriv.", + "-1787820992": "Piattaforme", "-184713104": "Ottieni payout prestabiliti con le opzioni, oppure fai trading con moltiplicatori per aumentare le vincite limitando i rischi.", "-1571775875": "La nostra principale piattaforma di trading con opzioni e moltiplicatori.", "-1107320163": "Automatizza il trading, non serve alcun codice.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.Se la decisione pone a nostro favore, dovrai fornirci una comunicazione entro 7 giorni in cui specifichi quando è stata presa, e il reclamo sarà considerato chiuso.", "-429248139": "5. Dichiarazione di esclusione di responsabilità", "-818926350": "La commissioni finanziaria accetta appelli per 45 giorni dopo la data dell'incidente e solo dopo che il trader ha provato a risolvere il problema direttamente con la società.", - "-236548954": "Errore nell'aggiornamento del contratto", "-1282933308": "Non {{barrier}}", "-968190634": "Uguale a {{barrier}}", "-1747377543": "Inferiore a {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Cifre", "-1790089996": "NUOVO!", "-590018519": "Il contratto è stato acquistato", - "-328036042": "Per lo stop loss, inserisci un importo maggiore della perdita potenziale corrente.", - "-2127699317": "Lo Stop loss non è valido, non può essere superiore alla puntata.", "-405439829": "Ci spiacenti, non puoi visualizzare questo contratto perché non appartiene a questo conto.", "-1714959941": "Questo modalità di visualizzazione del grafico non è idonea per i contratti con tick", "-1254554534": "Imposta la durata del contratto su tick per una migliore esperienza di trading.", @@ -2593,22 +2665,13 @@ "-584696680": "Se selezioni \"Take profit\" specificando l'importo che vorresti guadagnare, la posizione verrà chiusa automaticamente quando il tuo profitto raggiunge un valore pari o superiore a tale importo. Il profitto potrebbero superare l'importo indicato a seconda del prezzo di chiusura del mercato.", "-178096090": "Il \"Take profit\" non può essere aggiornato. Sarà possibile farlo una volta terminata la cancellazione del contratto.", "-206909651": "Il punto di entrata è il prezzo del mercato al momento dell'elaborazione del contratto da parte dei nostri server.", - "-673424733": "Conto demo", - "-1066565281": "La manutenzione del server inizia ogni domenica alle 06:00 GMT e potrebbe richiedere fino a 2 ore. Possibili interruzioni del servizio.", - "-1481390656": "La manutenzione del server inizia ogni domenica alle 01:00 GMT. Questa operazione potrebbe richiedere fino a 2 ore e provocare alcune interruzioni del servizio.", - "-1199152768": "Scopri tutte le nostre piattaforme.", - "-498346912": "Scopri DBot", + "-464262734": "Gestisci la password conto reale {{account_title}} {{platform}}", "-2042845290": "La password di investitore è stata modificata.", "-1882295407": "La password è stata modificata.", "-254497873": "Utilizza la password per permettere a un altro utente di visualizzare l'accesso: questo potrebbe vedere il tuo conto di trading, ma non potrà effettuare trading né altre operazioni.", "-161656683": "Attuale password investitore", "-374736923": "Nuova password investitore", "-1793894323": "Crea o reimposta la password investitore", - "-464262734": "Gestisci la password conto reale {{account_title}} {{platform}}", - "-1928229820": "Reimposta password investitore Deriv X", - "-1917043724": "Reimposta password investitore DMT5", - "-1087845020": "principale", - "-1950683866": "investitore", "-149836494": "Il numero di riferimento dell'operazione è {{transaction_id}}", "-1382749084": "Torna al trading", "-538215347": "Depositi netti", @@ -2737,7 +2800,6 @@ "-1588406981": "Questo blocco ti permette di controllare il risultato dell'ultimo trade.", "-1459154781": "Dettagli del contratto: {{ contract_detail }}", "-1652241017": "Legge una proprietà selezionata dall'elenco dei dettagli dei contratti", - "-2012970860": "Questo blocco offre informazioni sull'ultimo contratto.", "-2082345383": "Questi blocchi trasferisce informazioni al blocco delle condizioni di acquisto.", "-172574065": "Questo blocco trasferisce nuovamente il controllo al blocco delle condizioni di acquisto, permettendoti di acquistare un altro contratto.", "-403103225": "riavvia", @@ -2780,7 +2842,6 @@ "-1556495906": "Restituisce un elenco di valori specifici da un elenco candele a seconda dell'intervallo di tempo selezionato", "-166816850": "Crea un elenco di valori delle candele (1)", "-1261436901": "Elenco delle candele", - "-1460794449": "Questo blocco fornisce un elenco di candele contenuto nell'intervallo di tempo selezionato.", "-1174859923": "Leggi il valore della candela selezionata", "-1972165119": "Legge il valore della candela (1)", "-1956100732": "Puoi utilizzare questo blocco per analizzare i tick a prescindere dai tuoi trade", @@ -2830,10 +2891,13 @@ "-702370957": "Converti a data/tempo", "-982729677": "Converti al timestamp", "-311268215": "Questo blocco converte una stringa di testo che rappresenta data e orario in secondi dall'epoca Unix (1 gennaio 1970). Lo scarto di tempo e fuso orario è opzionale. Ad esempio: 01-01-2019, 21:03:45 GMT+0800 sarebbe convertito in 1546347825.", + "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", + "-1214929127": "Lo stop loss deve essere un numero positivo.", + "-2142851225": "Opzioni di trading del moltiplicatore", + "-625636913": "L'importo deve essere un numero positivo.", "-1466383897": "Durata: {{ duration_unit }} {{ duration_value }}", "-440702280": "Opzioni di trading", "-1193894978": "Stabilisci le opzioni per i tuoi trade come durata e puntata. Alcune opzioni sono valide soltanto per alcune tipologie di trade.", - "-625636913": "L'importo deve essere un numero positivo.", "-46523443": "La durata non è consentita. Per avviare il bot, inserire un valore compreso tra {{min}} e {{max}}.", "-1483427522": "Tipo di trade: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Parametri di trading", @@ -2841,7 +2905,6 @@ "-783173909": "Opzioni di trading:", "-376956832": "Qui potrai definire i parametri del contratto.", "-1244007240": "se {{ condition }} allora", - "-908772734": "Questo blocco valuta una dichiarazione ed esegue un'azione soltanto quando questa è vera.", "-1577206704": "altro se", "-33796979": "vero", "-1434883449": "Questo è un blocco singolo che restituisce un valore booleano, sia vero che falso.", @@ -2903,84 +2966,11 @@ "-1133072029": "Lunghezza stringa di testo", "-1109723338": "stampa {{ input_text }}", "-736668830": "Stampa", - "-1190046167": "Questo blocco mostra una finestra di dialogo con un messaggio personalizzato: in questo caso la strategia viene sospesa e riprenderà solo quando avrai premuto \"OK\".", "-1821552998": "regola gli spazi da {{ side }} di {{ input_text }}", "-801766026": "lato destro", "-474779821": "Rimuove gli spazi", "-1219239717": "Uno o più blocchi obbligatori mancano nell'area ti lavoro: aggiungi i blocchi necessari e riprova nuovamente.", "-250761331": "Uno o più blocchi obbligatori sono disabilitati nell'area ti lavoro: abilita i blocchi necessari e riprova nuovamente.", - "-187634388": "Questo blocco è obbligatorio e ti permette di decidere se il bot dovrebbe continuare a fare trading. Ne è consentita una sola copia.", - "-2105473795": "Il parametro di soli input determina come sarà formattato l'output del blocco. Nel caso in cui il parametro dell'input sia \"stringa\", verrà aggiunta la valuta al conto.", - "-1800436138": "2. per \"numero\": 1325,68", - "-2046396241": "Questo blocco è obbligatorio ed è permessa una sola copia. Viene automaticamente aggiunto all'area di disegno quando apri Dbot.", - "-530632460": "Questo blocco è utilizzato per determinare se il prezzo di mercato si muove o meno nella direzione selezionata, fornendo un valore \"Vero\" o \"Falso\".", - "-1875717842": "Esempi:", - "-890079872": "1. Se la direzione selezionata è \"Rialzo\" e il valore del tick precedente è inferiore a quello del tick corrente, il risultato sarà \"Vero\". Diversamente, l'output corrisponderà a una stringa vuota.", - "-489739641": "2. Se la direzione selezionata è \"Ribasso\" e il valore del tick precedente è superiore a quello del tick corrente, il risultato sarà \"Vero\". Diversamente il risultato corrisponderà a una stringa vuota.", - "-2116076360": "Esistono 4 tipologie di messaggio:", - "-1421941045": "2. \"Avviso\" mostra un messaggio in giallo per evidenziare che qualcosa necessita della tua attenzione.", - "-277850921": "Selezionando \"Vincita\", verrà restituito il valore \"Vero\" se l'ultimo trade è stato vincente. Diversamente, verrà restituita una stringa vuota.", - "-1918487001": "Esempio:", - "-2139916657": "1. Nell'esempio sottostante, la ripetizione viene terminata nel caso in cui \"x\" sia \"Falso\", anche se è stata completata una sola iterazione", - "-1238900333": "2. Nell'esempio sottostante, la ripetizione passa all'iterazione successiva senza eseguire il blocco riportato di seguito nel caso in cui \"x\" sia \"Falso\"", - "-1729479576": "È possibile utilizzare \"i\" all'interno della ripetizione, ad esempio per accedere alle liste di item", - "-1474636594": "Nell'esempio il ciclo si ripete tre volte, poiché questo è il numero di articoli nell'elenco dato. Durante ogni iterazione, alla variabile \"i\" verrà assegnato un valore dall'elenco. ", - "-334040831": "2. Nell'esempio sottostante, le istruzioni sono ripetute fino a quando il valore di x sarà pari o superiore a 10. Quando il valore di x scende al di sotto di 10, la ripetizione viene interrotta.", - "-444267958": "Il blocco \"Secondi a partire dall'epoca\" restituisce il numero dei secondi dal 1° gennaio 1970.", - "-447522129": "Potrebbe essere utile quando desideri ripetere una serie di azioni dopo un determinato periodo di tempo.", - "-1488259879": "Il termine \"candela\" fa riferimento a ogni barra sul grafico a candele. Ogni candela rappresenta quattro prezzi di mercato per il periodo di tempo selezionato:", - "-2020693608": "Ogni candela sul grafico rappresenta quattro prezzi di mercato per il periodo di tempo selezionato:", - "-62728852": "- Prezzo apertura: il prezzo d'apertura", - "-1247744334": "- Prezzo minimo: il prezzo più basso", - "-1386365697": "- Prezzo chiusura: il prezzo di chiusura", - "-1498732382": "Una candela nera (o rossa) indica che il prezzo di apertura è superiore a quello di chiusura e rappresenta un movimento al ribasso del prezzo di mercato.", - "-1871864755": "Questo blocco fornisce l'ultima cifra del valore dell'ultimo tick del mercato selezionato. Qualora il valore fosse 1410.90, il blocco riporterà 0. È utile per i contratti basati su cifre come Pari/Dispari, Combacia/Differisce o Alto/Basso.", - "-1029671512": "Quando viene selezionata l'operazione \"O\", il blocco restituisce il valore \"Vero\" se uno o entrambi i valori sono \"Veri\"", - "-210295176": "Operazioni disponibili:", - "-1385862125": "- Addizione", - "-983721613": "- Sottrazione", - "-854750243": "- Moltiplicazione", - "-1394815185": "Se il numero dato è inferiore al limite minimo dell'intervallo, il blocco restituisce il valore di tale limite. Analogamente, se il numero dato è superiore al limite massimo, il blocco restituirà il valore di tale limite. Qualora il numero dato si trovasse tra i limiti, il blocco restituirà il valore inalterato.", - "-1034564248": "Nell'esempio sottostante il blocco restituisce il valore 10 quando il valore dato (5) è più basso del limite inferiore (10)", - "-2009817572": "Questo blocco esegue le seguenti operazioni su un determinato numero", - "-671300479": "Le operazioni disponibili sono:", - "-514610724": "- Assoluto", - "-1923861818": "- Il numero di Nepero (2,71) alla potenza di un dato numero", - "-1556344549": "Ecco come:", - "-1061127827": "- Visita il seguente URL, assicurandoti di sostituire con il token dell'API di Telegram che hai creato nel passaggio 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. Ritorna su DBot e aggiungi il blocco di notifica Telegram all'area di lavoro. Incolla il token dell'API di Telegram e l'ID della chat nei rispettivi campi del blocco.", - "-311389920": "In questo esempio, i prezzi di apertura ottenuti da una lista di candele sono assegnati a una variabile chiamata \"cl\".", - "-1634242212": "Utilizzato all'interno di un blocco funzionale, questo blocco restituisce un valore quando una specifica condizione è vera.", - "-1504783522": "Puoi scegliere di visualizzarne una delle seguenti:", - "-10612039": "- Profitto: il profitto che hai guadagnato", - "-555996976": "- Orario d'ingresso: l'orario di inizio del contratto", - "-1391071125": "- Orario di uscita: la scadenza del contratto", - "-1961642424": "- Valore d'uscita: il valore dell'ultimo tick del contratto", - "-111312913": "- Barriera: il valore della barriera del contratto (valida soltanto per le tipologie di contratto che la prevedono come resta dentro/termina fuori, tocca/non tocca etc.)", - "-674283099": "- Risultato: il risultato dell'ultimo contratto vinto o perso", - "-704543890": "Questo blocco fornisce il valore della candela selezionata come prezzo d'apertura, di chiusura, massimo, minimo e orario d'apertura. La candela è necessaria come parametro input.", - "-482281200": "Nell'esempio sottostante, il prezzo d'apertura è assegnato alla variabile \"op\".", - "-364621012": "Questo blocco fornisce il valore della specifica candela per un intervallo di tempo selezionato. È possibile scegliere il valore desiderato:", - "-232477769": "- Apertura: il prezzo d'apertura", - "-610736310": "Usa questo blocco per vendere il tuo contratto al prezzo di mercato. La vendita del contratto è opzionale, potresti infatti decidere di vendere se il trend di mercato non è favorevole.", - "-1307657508": "Questo blocco indica il profitto o la perdita potenziale se decidessi di vendere il contratto. Può essere utilizzato soltanto all'interno delle \"Condizioni di vendita\" del blocco radice.", - "-1921072225": "Nell'esempio sottostante, il contratto verrà venduto soltanto se la perdita o il profitto potenziale sono maggiori della puntata.", - "-955397705": "L'indicatore SMA aggiunge il prezzo di mercato in un elenco di tick o candele per un numero di periodi e divide la somma per quel numero.", - "-1424923010": "dove n è il numero di periodi.", - "-1835384051": "Cosa indica lo SMA", - "-749487251": "Lo SMA è un indicatore del trend: punta verso l'alto se il prezzo di mercato sale e viceversa. Tanto più piatta sarà la linea quanto maggiore è il numero di periodi.", - "-1996062088": "In questo esempio, ogni punto sulla linea SMA è una media aritmetica dei prezzi di chiusura degli ultimi 10 giorni.", - "-1866751721": "La lista di input accetta una lista di tick o candele, mentre il periodo è il periodo di tempo specificato.", - "-1097076512": "Puoi confrontare i valori SMA calcolati ad ogni esecuzione del bot per identificare la direzione del trend di mercato. In alternativa, puoi anche utilizzare una variazione del blocco SMA o il blocco degli Array della media mobile semplice. ", - "-1254849504": "Se viene inserito un periodo di 10, l'Array della media mobile semplice restituirà una lista di valori SMA calcolati sulla base di tale periodo.", - "-859028989": "Nell'esempio, data e ora vengono mostrati in una casella di notifica verde.", - "-1452086215": "Nell'esempio, verrà acquistato un contratto Rialzo alla mezzanotte del 1 agosto 2019.", - "-2078588404": "Seleziona la tipologia di asset e mercato desiderati. Ad esempio: Forex > coppie valutarie maggiori > AUD/JPY", - "-2037446013": "2. Tipologia di trade", - "-533927844": "Seleziona il trade desiderato. Ad esempio, Alto/Basso > Rialzo/Ribasso", - "-1192411640": "4. Intervallo predefinito delle candele", - "-485434772": "8. Opzioni di trade", - "-1827646586": "Questo blocco assegna un valore dato a una variabile, creandone una non ancora esistente.", "-1687036846": "Scarica il blocco", "-1266781295": "Espandi", "-894560707": "funzione", diff --git a/packages/translations/src/translations/ko.json b/packages/translations/src/translations/ko.json index 27646ca13ff5..c5c0b5e6cc5a 100644 --- a/packages/translations/src/translations/ko.json +++ b/packages/translations/src/translations/ko.json @@ -7,7 +7,6 @@ "11872052": "네, 뒤에 다시 돌아오겠습니다", "14365404": "{{ message_type }}에 대한 요청이 실패 되었습니다. {{ delay }}초 뒤 재시도 합니다", "15377251": "이윤 양: {{profit}}", - "17217397": "암호화폐", "17843034": "신분증명 문서 인증 상태를 확인하세요", "21035405": "귀하께서 떠나시는 이유가 무엇인지 저희에게 알려주시기 바랍니다. (최대 {{ allowed_reasons }} 이유까지 선택해주세요.)", "25854018": "이 블록은 문자열 또는 숫자, 불 또는 데이터 배열로 된 입력값과 함께 개발자의 콘솔에서 메시지를 보여줍니다.", @@ -22,6 +21,7 @@ "46523711": "귀하의 신분 증명이 확인되었습니다", "49963458": "옵션을 선택하세요", "54185751": "$100,000 미만", + "55340304": "귀하의 현재 계약을 유지하시겠습니까?", "55916349": "전체", "58254854": "범위", "59169515": "귀하께서 \"Asian Rise\"를 선택하시면, 만약 마지막에 해당되는 틱이 틱 평균보다 더 높을 경우 귀하께서는 지불금을 받으시게 됩니다.", @@ -61,7 +61,6 @@ "111931529": "7일간에 대한 최대 총 지분", "113378532": "ETH/USD", "113884303": "독일 지수", - "113933902": "Deriv X 앱을 다운받으세요", "115032488": "구입 가격 및 P/L", "116005488": "지표", "117318539": "비밀번호는 영어의 소문자 및 대문자와 숫자들을 포함해야 합니다.", @@ -163,7 +162,6 @@ "270339490": "귀하께서 만약 \"오버\"를 선택하시면, 마지막 틱의 마지막 숫자가 귀하의 예측보다 더 높을 경우 지불금을 받게 됩니다.", "270610771": "이 예시에서, 캔들의 개장가격은 변수 \"candle_open_price\"에 할당됩니다.", "270712176": "하향", - "270727821": "주가 지수", "270780527": "귀하께서는 업로드하실 수 있는 최대 문서의 수에 도달하셨습니다.", "272179372": "이 블록은 일반적으로 귀하의 다음 거래의 파라미터를 조정하고 손실제한/이익실현 논리를 시행하기 위해 활용됩니다.", "273350342": "토큰을 앱으로 복사 및 붙여넣기 하세요.", @@ -197,7 +195,6 @@ "317601768": "테마", "318865860": "종료", "318984807": "이 블록은 명시된 회수 이내에 포함된 지침들을 반복합니다.", - "319538091": "DMT5 금융 STP", "323179846": "각 캔들에 대한 시간 구간은 1분에서 1일까지 설정될 수 있습니다.", "323209316": "Deriv 봇 전략을 선택하세요", "325662004": "블록 확장하기", @@ -248,7 +245,6 @@ "384303768": "이 블록은 만약 바로 이전의 캔들이 검정이면 \"참\"을 불러옵니다. 이는 거래 파라미터 루트 블록 내를 제외하고 캔버스의 모든 곳에 위치할 수 있습니다.", "386502387": "봇이 활성화되어 있지 않습니다", "389923099": "줌 인", - "390647540": "실제 계좌", "390890891": "지난 분기", "391915203": "헤징", "392582370": "Fall Equals", @@ -256,7 +252,6 @@ "396961806": "저희는 폴리곤 (Matic) 을 지원하지 않습니다, 예금을 하시기 위해서는 오직 이더리움 ({{token}}) 만을 이용하시기 바랍니다.", "399387585": "세부 정보를 위해 귀하의 이메일을 확인해주세요. 질문이 있으시면, 우리의 <0>헬프 센터로 가주시기 바랍니다.", "401339495": "주소를 인증하세요", - "402343402": "우리 서버에서의 문제로 인하여, 귀하의 몇몇 {{platform}} 계좌들에는 현재 사용하실 수 없습니다. 귀하의 인내에 감사드립니다.", "403456289": "SMA의 공식은 다음과 같습니다:", "404743411": "총 예금액", "406359555": "계약 세부사항", @@ -271,6 +266,7 @@ "427134581": "다른 파일 종류를 이용 해보세요.", "427617266": "비트코인", "428709688": "각 리포트 사이에 귀하께서 선호하시는 시간 구간:", + "432508385": "이익 실현: {{ currency }} {{ take_profit }}", "432519573": "문서가 업로드 되었습니다", "433348384": "정치적 주요 인물들 (PEPs) 은 실제 계좌를 사용하실 수 없습니다.", "433616983": "2. 조사 단계", @@ -326,7 +322,6 @@ "505793554": "마지막 문자", "510815408": "문자, 숫자, 띄어쓰기, 하이픈만 허용됩니다", "514031715": "{{ input_list }} 목록이 비어있습니다", - "514776243": "귀하의 {{account_type}} 비밀번호가 변경되었습니다.", "514948272": "링크 복사", "518955798": "7. 시작시 한번 실행", "520136698": "Boom 500 지수", @@ -438,7 +433,6 @@ "659482342": "귀하의 답변이 정확하고 최신인 상태로 유지하는 것은 귀하의 책임이라는 것을 기억해 주시기 바랍니다. 귀하께서는 계좌 설정에서 귀하의 개인 세부정보를 언제든지 업데이트 하실 수 있습니다.", "660481941": "귀하의 모바일 앱과 다른 제 3자 앱들에 접근하기 위해서, 귀하꼐서는 먼저 API 토큰을 생성하셔야 합니다.", "660991534": "종료", - "662609119": "MT5앱을 다운받으세요", "665089217": "귀하의 계좌의 인증과 귀하의 캐셔에 접근하기 위하여 귀하의 <0>신분 증명을 제출해 주시기 바랍니다.", "665777772": "XLM/USD", "665872465": "아래의 예시에서, 시작 가격이 선택 된 후 \"op\"라는 변수에 할당됩니다.", @@ -590,6 +584,7 @@ "872957901": "다크모드 (곧 DBot에 적용됩니다)", "873166343": "1. '로그'는 일반 메시지를 보여줍니다.", "874461655": "귀하의 휴대폰으로 QR 코드를 스캔 해주세요", + "874484887": "이익실현은 반드시 양의 수여야 합니다.", "875532284": "다른 장치에서 절차를 재시작하세요", "876086855": "금융 평가서를 완료하세요", "876292912": "나가기", @@ -637,7 +632,6 @@ "947046137": "귀하의 인출은 24시간 이내로 처리될 것입니다", "947363256": "목록 만들기", "947758334": "도시는 요구되는 항목입니다", - "948156236": "{{type}} 비밀번호 생성", "949859957": "제출하기", "952655566": "지불 에이전트", "956448295": "잘려진 이미지가 발견되었습니다", @@ -756,7 +750,7 @@ "1119887091": "검증", "1119986999": "귀하의 주소 증명이 성공적으로 제출되었습니다", "1120985361": "이용약관이 업데이트되었습니다", - "1122910860": "Please complete your <0>financial assessment.", + "1122910860": "귀하의 <0>재무 평가를 완료해 주시기 바랍니다.", "1123927492": "귀하께서는 귀하의 계좌 통화를 선택하지 않으셨습니다", "1125090693": "반드시 숫자여야 합니다", "1126934455": "토큰 이름의 길이는 반드시 문자 수가 2에서 32 사이여야 합니다.", @@ -765,7 +759,6 @@ "1129124569": "귀하께서 만약 \"언더\"를 선택하시면, 귀하께서는 마지막 틱의 마지막 숫자가 귀하의 예측보다 적은 경우 지불금을 받게 될 것입니다.", "1129296176": "귀하의 자금을 받기 위한 중요한 공지", "1129842439": "취득 이윤금액을 입력해주시기 바랍니다.", - "1129984312": "은행통신망", "1130744117": "우리는 영업일 기준 10일 이내로 귀하의 불만사항을 해결할 수 있도록 노력할 것입니다. 우리는 우리의 위치에 대한 설명과 함께 결과를 귀하에게 공지해 드릴것이며 우리가 취하고자 하는 시정조치를 제시해드릴 것입니다.", "1130791706": "N", "1133651559": "라이브 챗", @@ -878,6 +871,7 @@ "1293660048": "일일당 최대 총 손실", "1294756261": "이 블록은 언제든지 실행될 수 있는 지시들의 그룹인 함수를 생성합니다. 귀하의 전략에서 필요한 액션을 수행하기 위해 다른 블록들을 여기에 가져다놓으세요. 함수에 있는 모든 지시들이 수행되면, 귀하의 봇은 귀하의 전략에서 남아있는 블록들로 진행할 것입니다. 귀하께서 선택하시는 이름을 주기 위해 “무언가 해보세요”입력란을 클릭하세요. 더하기 아이콘을 클릭하셔서 하나의 값 (이름있는 변수)을 귀하의 함수로 보내세요.", "1295284664": "진행하기 위해 우리의 <0>업데이트 된 약관을 수락 해 주시기 바랍니다.", + "1296380713": "나의 계약 종료하기", "1299479533": "8시간", "1301668579": "우리는 이 사항이 귀하에게도 곧 적용될 수 있도록 노력하고 있습니다. 만약 귀하께서 또다른 계좌를 가지고 있으시다면, 거래를 지속하기 위해 그 계좌로 바꿔주세요. 귀하께서는 DMT5 금융을 추가하실 수도 있습니다.", "1302691457": "직업", @@ -921,7 +915,6 @@ "1346339408": "관리자", "1347071802": "{{minutePast}}분 이전", "1348009461": "다음의 Deriv X 계좌(들) 에 있는 귀하의 포지션들을 닫아주시기 바랍니다:", - "1349142948": "DMT5 금융", "1349289354": "좋습니다, 우리가 필요한 모든것들이 충족되었습니다", "1349295677": "{{ input_text }} 텍스트에서 {{ position1 }} {{ index1 }} 에서 {{ position2 }} {{ index2 }} 까지의 부분열을 받으세요", "1351152200": "Deriv MT5 (DMT5) 대시보드에 오신 것을 환영합니다", @@ -1024,6 +1017,7 @@ "1467421920": "간격과 함께: %1", "1468308734": "이 블록은 주어진 조건이 참인 경우 지침들을 반복합니다", "1468419186": "Deriv는 현재 테더 USDT를 옴니지갑으로 인출을 지원합니다. 성공적인 거래를 위해서, 귀하께서 인출하고자 하시는 토큰과 호환되는 지갑의 주소를 입력하세요. <0>더 배워보기", + "1469150826": "이익 실현", "1469764234": "캐셔 오류", "1469814942": "- 나누기", "1470319695": "참 또는 거짓중에서 불러옵니다", @@ -1043,7 +1037,6 @@ "1502325741": "비밀번호는 귀하의 이메일 주소와 같을 수 없습니다.", "1503618738": "- 거래 참조 ID: 계약의 참조 ID", "1505898522": "스택 다운로드", - "1506251760": "지갑", "1509570124": "{{buy_value}} (구매)", "1509678193": "교육", "1510075920": "금/USD", @@ -1085,6 +1078,7 @@ "1577480486": "귀하의 모바일 링크는 한시간 이후에 만기될 것입니다", "1577527507": "계좌개설 이유는 필수 입력사항입니다.", "1577612026": "폴더를 선택하세요", + "1579484521": "트레이딩 허브", "1580498808": "여러 얼굴들이 발견되었습니다", "1584109614": "틱 문자열 목록", "1584936297": "XML 파일이 지원되지 않는 요소를 포함하고 있습니다. 다시 확인 또는 파일을 변경해 주시기 바랍니다.", @@ -1107,6 +1101,7 @@ "1620278321": "이름과 성 자체만으로도 쉽게 추측할 수 있습니다", "1620346110": "통화 설정", "1622662457": "확인기준날짜", + "1623706874": "승수를 귀하의 트레이드 종류로써 이용하고 싶으실 때에 이 블록을 이용하세요.", "1630372516": "우리의 피아트 온램프를 이용해 보세요", "1630417358": "인출을 활성화 하시기 위해 귀하의 계좌설정으로 가셔서 귀하의 세부인적사항을 완료해주시기 바랍니다.", "1634594289": "언어를 선택하세요", @@ -1126,6 +1121,7 @@ "1651513020": "각 간격 기간에 대하여 남아있는 시간을 보여줍니다", "1651951220": "\"abcabcabc\"과 같은 반복은 단지 \"abc\" 보다는 추측하기 약간 더 어렵습니다", "1652366857": "받기 및 제거", + "1652968048": "승수 및 지분과 같이 귀하의 트레이드 옵션을 정의하세요.", "1652976865": "이 예시에서, 이 블록은 캔들 목록으로부터 개장 가격을 받기 위해 다른 블록과 함께 사용됩니다. 그 후 해당 개장가격은 \"cl\"이라고 불리는 변수에 할당됩니다.", "1653136377": "복사되었습니다!", "1653159197": "지불 에이전트 인출", @@ -1142,6 +1138,7 @@ "1665738338": "잔액", "1665756261": "라이브챗으로 가기", "1667395210": "귀하의 신분 증명이 성공적으로 제출되었습니다", + "1670016002": "승수: {{ multiplier }}", "1670426231": "종료 시간", "1671232191": "귀하께서는 다음의 제한을 설정하셨습니다:", "1677027187": "외환", @@ -1183,7 +1180,6 @@ "1734264460": "고지 사항", "1736292549": "우편번호 업데이트", "1737352280": "Bot.init이 불려오지 않았습니다", - "1738504192": "전자지갑", "1738681493": "필요시 귀하의 안경을 제거해주세요", "1739384082": "실업상태", "1740371444": "기초시장이 선택되지 않았습니다", @@ -1250,7 +1246,6 @@ "1820332333": "완전 충전", "1824193700": "이 블록은 귀하에게 마지막 틱의 값에 대한 마지막 숫자를 제공합니다.", "1827607208": "파일이 업로드되지 않았습니다.", - "1828994348": "DMT5는 {{country}}에서는 만나실 수 없습니다", "1832974109": "SmartTrader", "1833481689": "잠금해제", "1837762008": "캐셔로 접근하시기 위해 귀하의 계좌 설정에서 귀하의 계좌를 검증하기 위한 신분증 및 주소증명을 제출해 주시기 바랍니다.", @@ -1308,7 +1303,6 @@ "1887852176": "사이트가 업데이트 되고 있습니다", "1889357660": "최대 60480분까지 (6주와 같습니다) 분의 값으로 입력해주세요.", "1890171328": "아래의 수락 버튼을 클릭하시고 계좌 개설절차를 진행함으로써 귀하께서는 귀하께서 적절히 평가하거나 완화할 수 있는 지식 및 경험이 없을 수 있는 위험 (투자금액 전체를 잃을 수 있는 위험을 포함하여 상당규모의 손실일 수 있음) 에 귀하께서 노출될 수 있다는 사실을 아셔야 합니다.", - "1890284485": "DTrader 둘러보기", "1890332321": "숫자, 띄어쓰기, 온점 및 기호를 포함하여 주어진 문자열의 문자 수를 불러옵니다.", "1894667135": "귀하의 주소증명을 인증해주세요", "1898670234": "{{opening_day}} 의 {{formatted_opening_time}} (GMT),<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "계좌 추가 또는 관리", "1973536221": "귀하께서는 아직 개설된 포지션이 없습니다.", "1982912252": "기간과 함께 목록에서의 상대강도지수 (RSI)", + "1983001416": "승수 및 지분과 같이 귀하의 트레이드 옵션을 정의하세요. 이 블록은 오직 승수 거래 종류에만 이용될 수 있습니다. 귀하께서 만약 다른 거래 종류를 선택하시면, 이 블록은 트레이드 옵션 블록으로 대체될 것입니다.", "1983387308": "미리보기", "1983544897": "주소에서 사서함은 받아들여지지 않습니다", "1983676099": "세부사항을 위해 귀하의 이메일을 확인해 주시기 바랍니다.", @@ -1491,7 +1486,6 @@ "2138861911": "스캔된 것과 복사된 것은 받아들여지지 않습니다", "2139171480": "리셋 업/리셋 다운", "2139362660": "왼쪽", - "2141055709": "새 {{type}} 비밀번호", "2143803283": "구매 오류", "2144609616": "귀하께서 \"리셋-다운”을 선택하시면, 만약 엑싯 스팟이 엔트리 스팟 또는 리셋 타임때의 스팟보다 엄격하게 낮은 경우에 귀하께서 지불금을 받습니다.", "2145690912": "수입 소득", @@ -1735,7 +1729,7 @@ "-38915613": "저장되지 않은 변경사항", "-2137450250": "귀하께서는 변경사항을 저장하지 않으셨습니다. 변경사항을 취소하시고 이 창에서 나가고 싶으신가요?", "-1067082004": "설정에서 나가기", - "-1416797980": "Please enter your {{ field_name }} as in your official identity documents.", + "-1416797980": "귀하의 공식 신분증에 나와 있는 {{ field_name }} 을 입력해 주시기 바랍니다.", "-1466268810": "귀하의 답변이 정확하고 항상 최신의 정보로 유지되는 것은 귀하의 책임인 것을 기억하시기 바랍니다. 귀하께서는 귀하의 인적 세부정보를 언제든지 귀하의 <0>계좌 설정에서 업데이트 하실 수 있습니다.", "-1120954663": "이름*", "-1659980292": "이름", @@ -1948,7 +1942,6 @@ "-582721696": "현재 허용되는 인출금액은 {{format_min_withdraw_amount}} 에서 {{format_max_withdraw_amount}} {{currency}} 입니다", "-1957498244": "더 많은", "-1684548351": "암호화폐 계좌로 변경하기", - "-1345040662": "암호화폐를 구매할 방법을 찾고 계신가요?", "-197251450": "{{currency_code}} 로 거래하고 싶지 않으신가요? 귀하께서는 다른 암호화폐를 추가로 개설하실 수 있습니다.", "-212277385": "귀하께서는 귀하의 피아트 계좌로 예금을 하셨거나 또는 실제 DMT5 또는 Deriv X 계좌를 생성하셨기 때문에 더이상 귀하의 계좌 통화를 변경하실 수 없습니다. 명확히 확인하기 위해 <0>라이브 챗을 통해 우리에게 연락 주시기 바랍니다.", "-1900848111": "이는 귀하의 {{currency_code}} 계좌입니다.", @@ -2022,6 +2015,7 @@ "-811190405": "시간", "-2004264970": "귀하의 지갑 주소는 문자수가 25에서 64개이여야 합니다.", "-1707299138": "귀하의 {{currency_symbol}} 지갑 주소", + "-1179992129": "모든 지불 에이전트", "-922432739": "유효한 고객 로그인 ID를 입력해 주시기 바랍니다.", "-1024241603": "부족한 잔액.", "-1979554765": "유효한 설명을 입력해주시기 바랍니다.", @@ -2033,7 +2027,6 @@ "-1388977563": "복사되었습니다!", "-1962894999": "이 주소는 오직 한번만 사용될 수 있습니다. 귀하의 다음 거래를 위해 새 주소를 복사하시기 바랍니다.", "-451858550": "'계속하기'를 클릭함으로써 귀하께서는 제 3자 결제 서비스 제공자인 {{ service }} 로 재연결될 것입니다. {{ service }} 에 의해 제공되는 컨텐츠 또는 서비스에 대해서 {{ website_name }} 는 책임이 없다는 것을 아시기 바랍니다. 귀하께서 만약 {{ service }} 서비스와 관련된 문제를 접하시면, 귀하께서는 반드시 바로 {{ service }} 로 연락하셔야 합니다.", - "-1179992129": "모든 지불 에이전트", "-344959847": "만약 {{website_name}}에서 귀하의 로컬 결제 방식 또는 통화가 지원되지 않는 경우에는 예금 및 인출을 처리하기 위해 지불 에이전트가 인가됩니다.", "-1232852916": "해당 거래를 확인하기 위해 우리는 귀하의 {{currency}} 계좌로 변경하고 있습니다.", "-38063175": "{{account_text}} 지갑", @@ -2056,6 +2049,7 @@ "-1615615253": "저희는 트론을 지원하지 않습니다, 예금을 하시기 위해서는 이더리움만을 이용해 주세요 ({{token}}).", "-1831000957": "귀하의 예금 출처로부터의 네트워크를 선택해 주시기 바랍니다.", "-314177745": "안타깝게도, 저희 서버가 다운된 이후로 주소를 받을 수 없었습니다. 주소를 다시 불러오기 위해 재시도를 클릭해주시거나 또는 나중에 다시 시도해 주시기 바랍니다.", + "-1345040662": "암호화폐를 구매할 방법을 찾고 계신가요?", "-2005265642": "피아트 온램프는 귀하의 Deriv 크립토 계좌를 충전하기 위해 귀하께서 피아트 통화를 암호화폐로 변환하실 수 있도록 해주는 캐셔 서비스입니다. 여기에 나열되어 있는곳은 제 3자 암호화폐 거래소들입니다. 귀하께서는 이들의 서비스를 이용하시기 위해 이 거래소들을 통해 계좌를 생성하셔야 합니다.", "-1593063457": "결제 채널을 선택하세요", "-130833284": "귀하의 최대 및 최소 인출 한도가 고정되어 있지 않다는 점을 아시기 바랍니다. 해당 한도들은 암호화폐의 높은 변동성 때문에 변합니다.", @@ -2093,6 +2087,8 @@ "-1354485738": "리셋 콜", "-376148198": "온리 업", "-1337379177": "높은 틱", + "-328036042": "현재의 잠재손실보다 더 높은 손실제한 금액을 입력해주시기 바랍니다.", + "-2127699317": "유효하지 않은 손실제한입니다. 손실제한은 지분보다 더 클 수 없습니다.", "-1940333322": "DBot은 이 계좌에 사용하실 수 없습니다", "-1210387519": "DMT5 대시보드로 가기", "-1223145005": "손실 금액: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "최대 기간: {{ max }}", "-1194719174": "귀하께서 거래를 잃으시는 경우에 귀하의 지분을 증가시키기 위해 사용되는 승수.", "-749186458": "귀하의 봇이 실행되고 있을 때에는 계좌를 전환하는 것이 중지 됩니다. 계좌를 전환하기 이전에 귀하의 봇을 중지시켜 주시기 바랍니다.", + "-662836330": "귀하의 현재 계약을 유지 또는 종료하시고 싶으십니까? 유지하시기로 결정하신다면, 귀하께서는 이후에 <0>리포트 페이지에서 확인하시고 해당 계약을 종료하실 수 있습니다.", + "-597939268": "나의 계약 유지하기", "-1322453991": "봇을 실행시키기 위해 로그인하셔야 합니다.", "-1483938124": "이 전략은 DBot과 호환될 수 없습니다.", + "-236548954": "계약 업데이트 오류", "-1428017300": " ", "-1450728048": "의", "-255051108": "귀하", "-1845434627": "입니다", "-931434605": "이", "-740712821": "한", + "-187634388": "이 블록은 의무적입니다. 여기는 귀하의 봇이 거래를 계속 해야할지를 귀하께서 결정하실 수 있는 곳입니다. 이 블록은 하나의 복사만 허용됩니다.", + "-2105473795": "블록 결과가 어떤 형식으로 될지를 결정하는 단 하나의 입력 매개변수입니다. 만약 입력 매개변수가 \"string\"이면 계좌의 통화가 추가될 것입니다.", + "-1800436138": "2. \"숫자\"에 대한 예시: 1325.68", + "-2046396241": "이 블록은 의무적입니다. 이 블록에 대한 단 하나의 복사본만 허용됩니다. 귀하께서 DBot을 여실 때에 미리 정해진 사항으로 캔버스로 추가됩니다.", + "-530632460": "이 블록은 시장 가격이 선택된 방향으로 나아갈지 또는 그렇지 않은지를 결정하는데에 이용됩니다. 이는 귀하에게 \"참\" 또는 \"거짓\"의 값을 제공합니다.", + "-1875717842": "예:", + "-890079872": "1. 만약 선택된 방향이 \"상승\"이고 이전의 틱 값이 현재의 틱값보다 더 낮으면, 결과값은 \"참\"이 될 것입니다. 그렇지 않다면, 결과는 빈 줄로 표시됩니다.", + "-489739641": "2. 만약 선택된 방향이 \"하락\"이고 이전의 틱값이 현재의 틱값보다 더 높은 경우, 결과값은 \"참\"이 될 것입니다. 그렇지 않다면, 결과값은 빈 줄로 표시됩니다.", + "-2116076360": "4가지의 메시지 종류가 있습니다:", + "-1421941045": "2. '경고'는 주의가 요구되는 사항을 강조하기 위해 메시지를 노란색으로 표시합니다.", + "-277850921": "만약 \"획득\"이 선택되면, 만약 귀하의 바로 이전의 거래가 성공적이었을 경우 \"참\"값이 나옵니다. 그렇지 않다면 빈 줄이 나올 것입니다.", + "-1918487001": "예시:", + "-2139916657": "1. 아래의 예시에서 단지 하나의 반복만 완료되더라도 \"x\"가 \"거짓\"인 경우 반복은 종료됩니다", + "-1238900333": "2. 아래의 예시에서 만약 \"x\"가 \"거짓\"인 경우 아래의 블록을 실행할 필요 없이 해당 루프는 다음의 반복으로 점프합니다", + "-1729479576": "귀하께서는 해당 반복 내에서 \"i\"를 활용하실 수 있습니다, 예로써 목록 아이템에 접근하는 것입니다", + "-1474636594": "이 예시에서는, 주어진 목록에 있는 아이템의 수에 맞게 반복이 세번 진행될 것입니다. 각 반복동안에는 변수 \"i\"가 해당 목록의 값에 할당되어질 것입니다. ", + "-908772734": "이 블록은 하나의 지시를 평가하며 해당 지시가 참일 경우에만 행동을 취할 것입니다.", + "-334040831": "2. 이 예시에서는, x의 값이 10보다 크거나 동등한 한 해당 지침이 반복됩니다. x의 값이 한번 10 아래로 떨어지면, 반복은 종료됩니다.", + "-444267958": "\"에포크 시간\"블록은 1970년 1월 1일부터 누적된 초들을 숫자로 불러옵니다.", + "-447522129": "특정 시간이 지난 이후 귀하께서 일련의 행위들을 반복하시고 싶으실 때 이것이 필요할 수 있습니다.", + "-1488259879": "\"캔들\"이라는 단어는 캔들스틱 차트의 각 막대를 의미합니다. 각 캔들은 선택된 시간 구간에 대하여 네가지의 시장 가격들을 나타냅니다:", + "-2020693608": "차트에서 각 캔들스틱은 선택된 시간 구간에 대한 네가지의 시장 가격들을 나타냅니다:", + "-62728852": "- 시작가: 시작 가격", + "-1247744334": "- 저가: 가장 낮은 가격", + "-1386365697": "- 종가: 종료 가격", + "-1498732382": "검정 (또는 빨강) 캔들은 시작가가 종가보다 높다는 것을 나타냅니다. 이는 시장가의 하향이동을 나타냅니다.", + "-1871864755": "이 블록은 선택된 시장에 대하여 가장 최근의 틱 값의 마지막 숫자를 귀하에게 제공합니다. 만약 가장 최근의 틱 값이 1410.90이면, 이 블록은 0을 불러올 것입니다. 이는 짝/홀, 일치/불일치, 또는 더 높음/더 낮음과 같은 숫자에 근거한 계약에 대해서 유용합니다.", + "-1029671512": "\"OR\" 연산이 선택되는 경우, 해당 만약 하나 또는 주어진 양쪽 모두의 값들이 \"참\"인 경우 해당 블록은 \"참\"을 불러옵니다", + "-210295176": "가능한 연산:", + "-1385862125": "- 더하기", + "-983721613": "- 빼기", + "-854750243": "- 곱하기", + "-1394815185": "주어진 숫자가 해당 범위의 낮은 장벽보다 낮은 경우에, 해당 블록은 낮은 장벽 값을 불러옵니다. 비슷하게, 주어진 숫자가 높은 장벽보다 더 큰 경우, 해당 블록은 높은 장벽 값을 불러올 것입니다. 만약 주어진 값이 장벽들의 사이인 경우, 해당 블록은 주어진 값을 변경하지 않은 채로 불러올 것입니다.", + "-1034564248": "아래의 예시에서는 주어진 값 (5) 이 낮은 장벽 (10) 보다 작음에 따라 해당 블록은 10의 값을 불러옵니다", + "-2009817572": "이 블록은 주어진 수에 다음의 연산을 수행합니다", + "-671300479": "가능한 연산들은 다음과 같습니다:", + "-514610724": "- 절댓값", + "-1923861818": "- 지수가 주어진 수이며 밑이 오일러의 수 (2.71)", + "-1556344549": "방법은 이렇습니다:", + "-1061127827": "- 다음의 URL을 방문하셔서, 을 귀하께서 1단계에서 생성하신 텔레그램 API 토큰으로 꼭 변경하세요: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. DBot으로 돌아오셔서 작업공간에 텔레그램 공지 블록을 추가하세요. 그리고 텔레그램 API 토큰과 챗 ID를 블록 항목에 붙여넣기 하세요.", + "-311389920": "이 예시에서, 캔들의 목록에서의 개장 가격은 \"cl\"이라고 불리는 변수로 할당됩니다.", + "-1460794449": "이 블록은 선택되어진 시간 간격 내의 캔들 목록을 귀하에게 제공합니다.", + "-1634242212": "함수 블록 내에서 사용되며 이 블록은 어떤 특정 조건이 참일 경우 값을 불러옵니다.", + "-2012970860": "이 블록은 귀하의 바로 이전의 계약에 대한 정보를 제공합니다.", + "-1504783522": "귀하께서는 다음의 사항 중 하나를 확인하는 것을 선택하실 수 있습니다:", + "-10612039": "- 이윤: 귀하께서 취득하신 이윤", + "-555996976": "- 진입 시간: 해당 계약의 시작 시간", + "-1391071125": "- 출구 시간: 계약의 만료 시간", + "-1961642424": "- 출구 가치: 해당 계약의 마지막 틱의 값", + "-111312913": "- 장벽: 계약의 장벽 (범위 안/밖, 터치/노터치 등과 같은 장벽에 기초한 거래에 적용가능)", + "-674283099": "- 결과: 마지막 계약의 결과: \"획득\" 또는 \"손실\"", + "-704543890": "이 블록은 시작가, 종가, 고가, 저가 및 시작 시간과 같은 선택된 캔들값을 귀하에게 제공합니다. 이는 하나의 입력 매개변수로써 캔들을 요구합니다.", + "-482281200": "아래의 예시에서, 시작가는 변수 \"op\"로 할당됩니다.", + "-364621012": "이 블록은 선택된 시간 구간에 대한 명시된 캔들의 값을 귀하에게 제공합니다. 귀하께서는 원하시는 값을 선택하실 수 있습니다:", + "-232477769": "- 시작: 시작 가격", + "-610736310": "귀하의 계약을 시장가격으로 판매하시기 위해 이 블록을 사용하세요. 귀하의 계약을 판매하는것은 선택사항입니다. 만약 시장 추세가 호의적이지 않으면 귀하께서는 판매하는 것을 선택하실 수 있습니다.", + "-1307657508": "만약 귀하께서 귀하의 계약을 판매하기로 결정하면 이 블록은 귀하에게 잠재적인 이윤 또는 손실을 제공합니다. 이는 \"판매 조건\" 루트 블록 내에서만 사용될 수 있습니다.", + "-1921072225": "아래의 예시에서는, 잠재적인 이윤 또는 손실이 지분보다 높을 경우에만 해당 계약이 판매될 것입니다.", + "-955397705": "SMA는 다수의 기간에 대하여 틱 또는 캔들의 목록에 시장 가격을 추가하며 이 합계를 해당되는 기간으로 나눕니다.", + "-1424923010": "n은 기간의 수를 의미합니다.", + "-1835384051": "SMA는 귀하에게 다음의 부분을 알려줍니다", + "-749487251": "SMA는 추세에 대한 하나의 지표로서의 역할을 수행합니다. 만약 SMA 포인트가 상승한다면 시장가격은 증가하며 그 반대로 하락한다면 시장가격은 감소합니다. 기간의 수가 클수록, SMA 선은 더 부드러워집니다.", + "-1996062088": "이 예시에서는, SMA 선의 각 포인트는 최근 10일에 대한 종료 기간의 산술평균입니다.", + "-1866751721": "기간은 명시된 기간이며 반면에 입력 목록은 틱 또는 캔들의 목록을 받아들입니다.", + "-1097076512": "귀하께서는 시장의 추세방향을 확인하기 위해 모든 봇의 실행에서 계산되어진 SMA 값들을 비교하실 수 있습니다. 대안적으로는, 귀하께서는 또한 SMA 블록의 하나인 단순이동평균 배열 블록을 활용하실 수도 있습니다. ", + "-1254849504": "만약 10의 기간이 입력되면, 단순이동평균 배열블록은 10에 대한 기간에 근거하여 계산된 SMA의 값들의 목록을 불러올 것입니다.", + "-1190046167": "이 블록은 맞춤형 메시지와 함께 대화상자를 보여줍니다. 대화상자가 보여지만, 귀하의 전략은 일시정지되며 귀하께서 \"OK\"를 클릭한 후에만 다시 재개될 것입니다.", + "-859028989": "이 예시에서, 날짜와 시간은 초록색의 공지상자로 표시될 것입니다.", + "-1452086215": "이 예시에서는 하나의 상승 계약이 2019년 8월 1일 자정에 구매되어질 것입니다.", + "-1765276625": "승수 드랍다운 메뉴를 클릭하시고 귀하께서 거래를 희망하시고자 하는 승수를 선택하세요.", + "-1872233077": "귀하의 잠재 이익은 귀하께서 선택하신 승수의 가치에 곱해질 것입니다.", + "-614454953": "승수에 대하여 더 아시고 싶으시면, <0>승수페이지로 가시기 바랍니다.", + "-2078588404": "귀하께서 희망하시는 시장과 자산 종류를 선택하세요. 예: 외환 > 주요쌍 > AUD/JPY", + "-2037446013": "2. 거래 종류", + "-533927844": "귀하께서 희망하시는 거래 종류를 선택하세요. 예: 업/다운 > 상승/하락", + "-1192411640": "4. Default Candle Interval", + "-485434772": "8. 거래 옵션", + "-1827646586": "이 블록은 변수가 존재하지 않는다면 변수를 생성하여 주어진 값을 변수에 할당합니다.", "-254421190": "목록: ({{message_length}})", "-9461328": "보안 및 개인정보 보호", "-418247251": "귀하의 저널을 다운로드하세요.", @@ -2209,17 +2287,6 @@ "-398198412": "올인원 FX 및 CFD 트레이딩 플랫폼인 Deriv MT5 (DMT5) 에서 거래하세요.", "-1793883644": "맞춤형이며 이용하기 쉬운 트레이딩 플랫폼에서 FX와 CFD를 거래하세요.", "-1246992539": "바이너리 봇", - "-563774117": "대시보드", - "-773544978": "홈", - "-1003047246": "내 앱", - "-2024365882": "둘러보기", - "-2038666662": "우리 소개", - "-832198631": "신용/직불 카드", - "-1787820992": "플랫폼", - "-837532140": "거래 종류", - "-663862998": "시장", - "-947407631": "종합 지수", - "-362324454": "원자재", "-821418875": "트레이더", "-1309011360": "오픈 포지션", "-679102561": "계약 세부사항", @@ -2317,41 +2384,47 @@ "-618539786": "귀하의 계좌는 닫힐 예정입니다", "-945275490": "귀하의 옵션 계좌에서 모든 자금을 인출하세요.", "-705744796": "귀하의 데모 계좌 잔액이 최대 한도에 도달 되었으며 귀하께서는 더이상 새로운 거래를 주문하실 수 없습니다. 귀하의 데모 계좌로부터 거래를 계속하기 위해 귀하의 잔액을 재설정하세요.", - "-2067423661": "귀하의 Deriv 계좌를 위한 더 강화된 보안", - "-1719731099": "2단계 보안 인증을 통해 귀하께서는 비밀번호와 귀하의 휴대폰을 통해 귀하의 계좌를 더욱 보호하실 수 있습니다 - 이를 통하여 만약 다른 누군가가 귀하의 비밀번호를 알더라도 오직 귀하께서만 귀하의 계좌에 접근하실 수 있습니다.", - "-1738575826": "캐셔에 접근하기 위해 귀하의 실제 계좌로 변경하시거나 또는 실제 계좌를 생성하세요.", + "-1585069798": "귀하의 적합성 시험을 완료하기 위해서는 다음의 링크를 클릭해 주시기 바랍니다.", + "-1287141934": "더 알아보세요", + "-367759751": "귀하의 계좌는 아직 인증되지 않았습니다", + "-596690079": "Enjoy using Deriv?", + "-265932467": "We’d love to hear your thoughts", + "-1815573792": "Drop your review on Trustpilot.", + "-823349637": "Go to Trustpilot", "-1204063440": "나의 계좌 통화 설정하기", + "-1164554246": "귀하께서는 만기된 신분증을 제출하셨습니다", + "-219846634": "귀하의 아이디를 검증합시다", + "-529038107": "설치", + "-87149410": "DTrader 웹 앱을 설치하세요", + "-1738575826": "캐셔에 접근하기 위해 귀하의 실제 계좌로 변경하시거나 또는 실제 계좌를 생성하세요.", + "-1329329028": "귀하께서는 귀하의 30일 턴오버 한도를 설정하지 않으셨습니다", + "-132893998": "귀하께서 30일 턴오버 한도를 설정하지 않으셨기 때문에 캐셔로의 귀하의 접근은 일시적으로 중지되어 있습니다. 자가제한으로 가셔서 한도를 설정하시기 바랍니다.", + "-1852207910": "MT5 인출이 중단되었습니다", + "-764323310": "귀하의 계좌에서 MT5 인출이 중지되었습니다. 더 자세한 사항을 확인하기 위해서 귀하의 이메일을 확인해 주시기 바랍니다.", + "-1435762703": "귀하의 신분을 인증해주시기 바랍니다", + "-1902997828": "지금 새로고침 하기", + "-753791937": "새로운 버전의 Deriv가 있습니다", + "-1775108444": "이 페이지는 가장 최신 버전을 로드하기 위해 5분 후 자동적으로 새로고침 될 것입니다.", + "-1175685940": "인출이 가능하도록 하기 위해서는 라이브 챗을 통해 저희에게 연락해 주시기 바랍니다.", + "-1125797291": "비밀번호가 업데이트되었습니다.", + "-157145612": "귀하의 업데이트된 비밀번호로 로그인해주시기 바랍니다.", + "-87177461": "예금을 활성화시키기 위해 귀하의 계좌 설정으로 가셔서 귀하의 세부 인적사항을 완료해 주시기 바랍니다.", + "-904632610": "귀하의 잔액 재설정", + "-470018967": "잔액 재설정", + "-156611181": "잠금되어 있는 것을 해제하기 위해 귀하의 계좌 설정에서 금융 평가를 완료해 주시기 바랍니다.", "-1925176811": "잠시동안 인출을 처리할 수 없습니다", "-980696193": "시스템 관리로 인해 인출은 일시적으로 불가능합니다. 귀하께서는 시스템 관리가 완료되면 인출을 진행하실 수 있습니다.", "-1647226944": "잠시동안 예금을 처리할 수 없습니다", "-488032975": "시스템 관리로 인하여 일시적으로 예금을 하실 수 없습니다. 귀하께서는 시스템 관리가 완료되면 다시 예금을 진행하실 수 있습니다.", "-67021419": "시스템 관리로 인하여 저희의 캐셔는 일시적으로 다운되어 있습니다. 몇 분 이후에 시스템 관리가 완료되면 귀하께서 다시 캐셔에 접근하실 수 있습니다.", - "-219846634": "귀하의 아이디를 검증합시다", - "-367759751": "귀하의 계좌는 아직 인증되지 않았습니다", - "-1175685940": "인출이 가능하도록 하기 위해서는 라이브 챗을 통해 저희에게 연락해 주시기 바랍니다.", - "-1852207910": "MT5 인출이 중단되었습니다", - "-764323310": "귀하의 계좌에서 MT5 인출이 중지되었습니다. 더 자세한 사항을 확인하기 위해서 귀하의 이메일을 확인해 주시기 바랍니다.", - "-1585069798": "귀하의 적합성 시험을 완료하기 위해서는 다음의 링크를 클릭해 주시기 바랍니다.", - "-1329329028": "귀하께서는 귀하의 30일 턴오버 한도를 설정하지 않으셨습니다", - "-132893998": "귀하께서 30일 턴오버 한도를 설정하지 않으셨기 때문에 캐셔로의 귀하의 접근은 일시적으로 중지되어 있습니다. 자가제한으로 가셔서 한도를 설정하시기 바랍니다.", - "-156611181": "잠금되어 있는 것을 해제하기 위해 귀하의 계좌 설정에서 금융 평가를 완료해 주시기 바랍니다.", "-849587074": "귀하께서는 귀하의 세금 식별 번호를 제공하지 않으셨습니다", "-47462430": "해당 정보는 법률 및 규정적인 요구사항을 위해 필요한 정보입니다. 귀하의 계좌 설정으로 가셔서 귀하의 가장 최근의 세금 식별 번호를 입력해 주시기 바랍니다.", - "-87177461": "예금을 활성화시키기 위해 귀하의 계좌 설정으로 가셔서 귀하의 세부 인적사항을 완료해 주시기 바랍니다.", + "-2067423661": "귀하의 Deriv 계좌를 위한 더 강화된 보안", + "-1719731099": "2단계 보안 인증을 통해 귀하께서는 비밀번호와 귀하의 휴대폰을 통해 귀하의 계좌를 더욱 보호하실 수 있습니다 - 이를 통하여 만약 다른 누군가가 귀하의 비밀번호를 알더라도 오직 귀하께서만 귀하의 계좌에 접근하실 수 있습니다.", + "-822888359": "Your withdrawal is locked", + "-1197701578": "Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.", "-2087822170": "귀하께서는 오프라인입니다", "-1669693571": "귀하의 연결을 확인해주세요.", - "-1125797291": "비밀번호가 업데이트되었습니다.", - "-157145612": "귀하의 업데이트된 비밀번호로 로그인해주시기 바랍니다.", - "-904632610": "귀하의 잔액 재설정", - "-470018967": "잔액 재설정", - "-1435762703": "귀하의 신분을 인증해주시기 바랍니다", - "-1164554246": "귀하께서는 만기된 신분증을 제출하셨습니다", - "-1902997828": "지금 새로고침 하기", - "-753791937": "새로운 버전의 Deriv가 있습니다", - "-1775108444": "이 페이지는 가장 최신 버전을 로드하기 위해 5분 후 자동적으로 새로고침 될 것입니다.", - "-529038107": "설치", - "-87149410": "DTrader 웹 앱을 설치하세요", - "-1287141934": "더 알아보세요", "-1998049070": "귀하께서 저희의 쿠키 활용에 동의하신다면, 동의하기 버튼을 클릭하세요. 더 많은 정보를 위해서는, <0>우리의 정책을 확인해주세요.", "-1721181859": "귀하께서는 {{deriv_account}} 계좌가 필요합니다", "-1989074395": "{{dmt5_account}} 계좌를 추가하시기 이전에 {{deriv_account}} 계좌를 먼저 추가해 주시기 바랍니다. 귀하의 {{dmt5_label}} 계좌에 대한 예금 및 인출은 {{deriv_label}} 계좌로부터 또는 이 계좌로 자금을 송금하심으로써 완료됩니다.", @@ -2386,6 +2459,7 @@ "-1950045402": "귀하의 모든 자금을 인출하세요", "-168971942": "이것이 귀하에게 의미하는 점", "-905560792": "네, 이해합니다", + "-2024365882": "둘러보기", "-1197864059": "무료 데모 계좌를 생성하세요", "-1485242688": "{{step}} 단계: {{step_title}} ({{steps}} 의 {{step}})", "-1829842622": "귀하께서는 각 암호화폐에 대하여 계좌를 개설하실 수 있습니다.", @@ -2439,6 +2513,7 @@ "-1917706589": "귀하의 Deriv 계좌는 {{social_identity_provider}}로부터 연결이 해제되었습니다. 추후 로그인 하시기 위해 귀하의 이메일 및 비밀번호를 이용하시기 바랍니다.", "-2017825013": "알겠습니다", "-505449293": "귀하의 Deriv 계좌에 대해 새로운 비밀번호를 입력하세요.", + "-1787820992": "플랫폼", "-184713104": "옵션을 통해 고정된 지불금을 받으시거나, 또는 제한된 위험으로 귀하의 이익을 확대시키기 위해 승수를 거래하세요.", "-1571775875": "우리의 플래그십 옵션 및 승수 트레이딩 플랫폼.", "-1107320163": "귀하의 트레이딩을 자동화하세요, 코딩이 필요없습니다.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.만약 결정되어진 결론이 우리에게 더 나은 것이라면, 귀하께서는 해당 결론이 결정되어진 때부터 7일 이내에 저희에게 동의서를 제출하셔야 합니다, 그리고 해당 불만사항은 종료된 것으로 간주될 것입니다.", "-429248139": "5. 고지사항", "-818926350": "금융 위원회는 사건 발생일로부터 45일간만 항소를 받아들이며 해당 트레이더가 해당 문제를 해당 회사와 직접적으로 통해 해결하려고 한 이후에만 받아들여집니다.", - "-236548954": "계약 업데이트 오류", "-1282933308": "{{barrier}} 아님", "-968190634": "{{barrier}} 일치", "-1747377543": "{{barrier}} 아래", @@ -2498,8 +2572,6 @@ "-763273340": "숫자", "-1790089996": "새롭습니다!", "-590018519": "구매된 계약", - "-328036042": "현재의 잠재손실보다 더 높은 손실제한 금액을 입력해주시기 바랍니다.", - "-2127699317": "유효하지 않은 손실제한입니다. 손실제한은 지분보다 더 클 수 없습니다.", "-405439829": "죄송합니다, 해당 계약은 이 계좌에 속하지 않기 떄문에 이 계좌를 볼 수 없습니다.", "-1714959941": "이 차트 디스플레이는 틱 계약에 대해 이상적이지 않습니다", "-1254554534": "더 나은 트레이딩 경험을 위해 차트 기간을 틱으로 변환해 주시기 바랍니다.", @@ -2593,22 +2665,13 @@ "-584696680": "만약 귀하께서 “이익 실현”을 선택하시고 귀하께서 벌고자 하시는 금액을 명시하시면, 귀하의 이익이 이 금액과 일치하거나 또는 더 많을 경우에 귀하의 포지션은 자동적으로 종료될 것입니다. 귀하의 이익은 종료시에 시장 가격에 따라 귀하께서 입력하신 금액보다 더 많을 수 있습니다.", "-178096090": "“이익 실현”은 업데이트 될 수 없습니다. 귀하께서는 오직 “거래 취소”가 만료된 경우에만 이를 업데이트 하실 수 있습니다.", "-206909651": "엔트리 스팟은 귀하의 계약이 우리의 서버들에 의해 처리될 때의 시장 가격입니다.", - "-673424733": "데모 계좌", - "-1066565281": "서버관리는 매 일요일 06:00 GMT에 시작되며 최대 2시간까지 걸릴 수 있습니다. 이 시간에는 서비스가 원활하지 않을 수 있습니다.", - "-1481390656": "서버관리는 매 일요일 01:00 GMT에 시작됩니다. 이 절차는 완료되기까지 2시간 정도가 소요될 수 있습니다. 이 시간에는 서비스가 원활하지 않을 수 있습니다.", - "-1199152768": "우리의 다른 플랫폼들도 둘러보시기 바랍니다.", - "-498346912": "DBot 둘러보기", + "-464262734": "{{platform}} 실제 {{account_title}} 계좌 비밀번호 관리하기", "-2042845290": "귀하의 투자자 비밀번호가 변경되었습니다.", "-1882295407": "귀하의 비밀번호가 변경되었습니다.", "-254497873": "다른 사용자에게 볼 수 있는 접근 권한을 부여하기 위해 이 비밀번호를 사용하세요. 그들이 귀하의 트레이딩 계좌를 볼 수 있더라도 그들은 거래 또는 다른 행동들을 취할 수 없습니다.", "-161656683": "현재의 투자자 비밀번호", "-374736923": "새로운 투자자 비밀번호", "-1793894323": "투자자 비밀번호를 생성 또는 재설정하세요", - "-464262734": "{{platform}} 실제 {{account_title}} 계좌 비밀번호 관리하기", - "-1928229820": "Deriv X 투자자 비밀번호 재설정", - "-1917043724": "DMT5 투자자 비밀번호 재설정", - "-1087845020": "주요", - "-1950683866": "투자자", "-149836494": "귀하의 거래 참조 번호는 {{transaction_id}} 입니다", "-1382749084": "트레이딩으로 돌아가기", "-538215347": "순 예금", @@ -2737,7 +2800,6 @@ "-1588406981": "귀하꼐서는 이 블록을 통한 바로 이전의 거래의 결과를 확인하실 수 있습니다.", "-1459154781": "계약 세부사항: {{ contract_detail }}", "-1652241017": "계약 세부 목록으로부터 선택된 자산을 읽습니다", - "-2012970860": "이 블록은 귀하의 바로 이전의 계약에 대한 정보를 제공합니다.", "-2082345383": "이 블록들은 구매 조건 블록으로 컨트롤을 전송합니다.", "-172574065": "이 블록은 귀하께서 다른 계약을 구매하실 수 있도록 함과 동시에 구매 조건 블록으로 컨트롤을 전송할 것입니다.", "-403103225": "재시작", @@ -2780,7 +2842,6 @@ "-1556495906": "선택되어진 시간 구간에 따라 캔들 목록으로부터 구체적인 값들의 목록을 불러옵니다", "-166816850": "캔들 값의 목록 생성하기 (1)", "-1261436901": "캔들 목록", - "-1460794449": "이 블록은 선택되어진 시간 간격 내의 캔들 목록을 귀하에게 제공합니다.", "-1174859923": "선택된 캔들의 값을 읽으세요", "-1972165119": "캔들 값 읽기 (1)", "-1956100732": "귀하의 거래에 상관없이 귀하께서는 틱들을 분석하기 위해 이 블록을 사용하실 수 있습니다", @@ -2830,10 +2891,13 @@ "-702370957": "날짜/시간으로 변경하기", "-982729677": "타임 스탬프로 변경하기", "-311268215": "이 블록은 날짜와 초를 나타내는 텍스트 스트링을 유닉스 에포크 (1970 1월 1일)부터 경과된 초로 변환합니다. 시간과 시간대는 오프셋은 최적화 되어 있습니다. 예시: 2019-01-01 21:03:45 GMT+0800은 1546347825로 변환될 것입니다.", + "-1797602591": "스탑 로스: {{ currency }} {{ stop_loss }}", + "-1214929127": "손실제한은 반드시 양의 수여야 합니다.", + "-2142851225": "승수 거래 옵션", + "-625636913": "금액은 반드시 양의 수여야 합니다.", "-1466383897": "기간: {{ duration_unit }} {{ duration_value }}", "-440702280": "거래 옵션", "-1193894978": "기간과 지분과 같은 귀하의 거래 옵션을 정의하세요. 몇몇의 옵션은 특정 거래 종류들에만 적용될 수 있습니다.", - "-625636913": "금액은 반드시 양의 수여야 합니다.", "-46523443": "기간값은 허용되지 않습니다. 봇을 실행시키기 위해, {{min}} 과 {{max}} 사이에 있는 값을 입력해주시기 바랍니다.", "-1483427522": "거래 종류: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. 거래 파라미터", @@ -2841,7 +2905,6 @@ "-783173909": "거래 옵션:", "-376956832": "여기는 귀하의 계약에 대한 파라미터를 정의하는 곳입니다.", "-1244007240": "만약 {{ condition }} 이면", - "-908772734": "이 블록은 하나의 지시를 평가하며 해당 지시가 참일 경우에만 행동을 취할 것입니다.", "-1577206704": "만약 그렇지 않다면", "-33796979": "참", "-1434883449": "이것은 참 또는 거짓이든지, 불린 값을 불러오는 단일 블록입니다.", @@ -2903,84 +2966,11 @@ "-1133072029": "텍스트 문자열 길이", "-1109723338": "{{ input_text }} 프린트", "-736668830": "출력", - "-1190046167": "이 블록은 맞춤형 메시지와 함께 대화상자를 보여줍니다. 대화상자가 보여지만, 귀하의 전략은 일시정지되며 귀하께서 \"OK\"를 클릭한 후에만 다시 재개될 것입니다.", "-1821552998": "{{ input_text }} 의 {{ side }} 에서 띄어쓰기를 제거합니다", "-801766026": "오른쪽", "-474779821": "띄어쓰기를 제거합니다", "-1219239717": "하나 또는 그 이상의 의무적인 블록이 귀하의 작업공간에 없습니다. 요구되는 블록(들) 을 추가해주시고 다시 시작해주세요.", "-250761331": "하나 또는 그 이상의 의무적인 블록이 귀하의 작업공간에서 비활성화되었습니다. 요구되는 블록(들) 을 활성화 시키시고 다시 시도해주시기 바랍니다.", - "-187634388": "이 블록은 의무적입니다. 여기는 귀하의 봇이 거래를 계속 해야할지를 귀하께서 결정하실 수 있는 곳입니다. 이 블록은 하나의 복사만 허용됩니다.", - "-2105473795": "블록 결과가 어떤 형식으로 될지를 결정하는 단 하나의 입력 매개변수입니다. 만약 입력 매개변수가 \"string\"이면 계좌의 통화가 추가될 것입니다.", - "-1800436138": "2. \"숫자\"에 대한 예시: 1325.68", - "-2046396241": "이 블록은 의무적입니다. 이 블록에 대한 단 하나의 복사본만 허용됩니다. 귀하께서 DBot을 여실 때에 미리 정해진 사항으로 캔버스로 추가됩니다.", - "-530632460": "이 블록은 시장 가격이 선택된 방향으로 나아갈지 또는 그렇지 않은지를 결정하는데에 이용됩니다. 이는 귀하에게 \"참\" 또는 \"거짓\"의 값을 제공합니다.", - "-1875717842": "예:", - "-890079872": "1. 만약 선택된 방향이 \"상승\"이고 이전의 틱 값이 현재의 틱값보다 더 낮으면, 결과값은 \"참\"이 될 것입니다. 그렇지 않다면, 결과는 빈 줄로 표시됩니다.", - "-489739641": "2. 만약 선택된 방향이 \"하락\"이고 이전의 틱값이 현재의 틱값보다 더 높은 경우, 결과값은 \"참\"이 될 것입니다. 그렇지 않다면, 결과값은 빈 줄로 표시됩니다.", - "-2116076360": "4가지의 메시지 종류가 있습니다:", - "-1421941045": "2. '경고'는 주의가 요구되는 사항을 강조하기 위해 메시지를 노란색으로 표시합니다.", - "-277850921": "만약 \"획득\"이 선택되면, 만약 귀하의 바로 이전의 거래가 성공적이었을 경우 \"참\"값이 나옵니다. 그렇지 않다면 빈 줄이 나올 것입니다.", - "-1918487001": "예시:", - "-2139916657": "1. 아래의 예시에서 단지 하나의 반복만 완료되더라도 \"x\"가 \"거짓\"인 경우 반복은 종료됩니다", - "-1238900333": "2. 아래의 예시에서 만약 \"x\"가 \"거짓\"인 경우 아래의 블록을 실행할 필요 없이 해당 루프는 다음의 반복으로 점프합니다", - "-1729479576": "귀하께서는 해당 반복 내에서 \"i\"를 활용하실 수 있습니다, 예로써 목록 아이템에 접근하는 것입니다", - "-1474636594": "이 예시에서는, 주어진 목록에 있는 아이템의 수에 맞게 반복이 세번 진행될 것입니다. 각 반복동안에는 변수 \"i\"가 해당 목록의 값에 할당되어질 것입니다. ", - "-334040831": "2. 이 예시에서는, x의 값이 10보다 크거나 동등한 한 해당 지침이 반복됩니다. x의 값이 한번 10 아래로 떨어지면, 반복은 종료됩니다.", - "-444267958": "\"에포크 시간\"블록은 1970년 1월 1일부터 누적된 초들을 숫자로 불러옵니다.", - "-447522129": "특정 시간이 지난 이후 귀하께서 일련의 행위들을 반복하시고 싶으실 때 이것이 필요할 수 있습니다.", - "-1488259879": "\"캔들\"이라는 단어는 캔들스틱 차트의 각 막대를 의미합니다. 각 캔들은 선택된 시간 구간에 대하여 네가지의 시장 가격들을 나타냅니다:", - "-2020693608": "차트에서 각 캔들스틱은 선택된 시간 구간에 대한 네가지의 시장 가격들을 나타냅니다:", - "-62728852": "- 시작가: 시작 가격", - "-1247744334": "- 저가: 가장 낮은 가격", - "-1386365697": "- 종가: 종료 가격", - "-1498732382": "검정 (또는 빨강) 캔들은 시작가가 종가보다 높다는 것을 나타냅니다. 이는 시장가의 하향이동을 나타냅니다.", - "-1871864755": "이 블록은 선택된 시장에 대하여 가장 최근의 틱 값의 마지막 숫자를 귀하에게 제공합니다. 만약 가장 최근의 틱 값이 1410.90이면, 이 블록은 0을 불러올 것입니다. 이는 짝/홀, 일치/불일치, 또는 더 높음/더 낮음과 같은 숫자에 근거한 계약에 대해서 유용합니다.", - "-1029671512": "\"OR\" 연산이 선택되는 경우, 해당 만약 하나 또는 주어진 양쪽 모두의 값들이 \"참\"인 경우 해당 블록은 \"참\"을 불러옵니다", - "-210295176": "가능한 연산:", - "-1385862125": "- 더하기", - "-983721613": "- 빼기", - "-854750243": "- 곱하기", - "-1394815185": "주어진 숫자가 해당 범위의 낮은 장벽보다 낮은 경우에, 해당 블록은 낮은 장벽 값을 불러옵니다. 비슷하게, 주어진 숫자가 높은 장벽보다 더 큰 경우, 해당 블록은 높은 장벽 값을 불러올 것입니다. 만약 주어진 값이 장벽들의 사이인 경우, 해당 블록은 주어진 값을 변경하지 않은 채로 불러올 것입니다.", - "-1034564248": "아래의 예시에서는 주어진 값 (5) 이 낮은 장벽 (10) 보다 작음에 따라 해당 블록은 10의 값을 불러옵니다", - "-2009817572": "이 블록은 주어진 수에 다음의 연산을 수행합니다", - "-671300479": "가능한 연산들은 다음과 같습니다:", - "-514610724": "- 절댓값", - "-1923861818": "- 지수가 주어진 수이며 밑이 오일러의 수 (2.71)", - "-1556344549": "방법은 이렇습니다:", - "-1061127827": "- 다음의 URL을 방문하셔서, 을 귀하께서 1단계에서 생성하신 텔레그램 API 토큰으로 꼭 변경하세요: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. DBot으로 돌아오셔서 작업공간에 텔레그램 공지 블록을 추가하세요. 그리고 텔레그램 API 토큰과 챗 ID를 블록 항목에 붙여넣기 하세요.", - "-311389920": "이 예시에서, 캔들의 목록에서의 개장 가격은 \"cl\"이라고 불리는 변수로 할당됩니다.", - "-1634242212": "함수 블록 내에서 사용되며 이 블록은 어떤 특정 조건이 참일 경우 값을 불러옵니다.", - "-1504783522": "귀하께서는 다음의 사항 중 하나를 확인하는 것을 선택하실 수 있습니다:", - "-10612039": "- 이윤: 귀하께서 취득하신 이윤", - "-555996976": "- 진입 시간: 해당 계약의 시작 시간", - "-1391071125": "- 출구 시간: 계약의 만료 시간", - "-1961642424": "- 출구 가치: 해당 계약의 마지막 틱의 값", - "-111312913": "- 장벽: 계약의 장벽 (범위 안/밖, 터치/노터치 등과 같은 장벽에 기초한 거래에 적용가능)", - "-674283099": "- 결과: 마지막 계약의 결과: \"획득\" 또는 \"손실\"", - "-704543890": "이 블록은 시작가, 종가, 고가, 저가 및 시작 시간과 같은 선택된 캔들값을 귀하에게 제공합니다. 이는 하나의 입력 매개변수로써 캔들을 요구합니다.", - "-482281200": "아래의 예시에서, 시작가는 변수 \"op\"로 할당됩니다.", - "-364621012": "이 블록은 선택된 시간 구간에 대한 명시된 캔들의 값을 귀하에게 제공합니다. 귀하께서는 원하시는 값을 선택하실 수 있습니다:", - "-232477769": "- 시작: 시작 가격", - "-610736310": "귀하의 계약을 시장가격으로 판매하시기 위해 이 블록을 사용하세요. 귀하의 계약을 판매하는것은 선택사항입니다. 만약 시장 추세가 호의적이지 않으면 귀하께서는 판매하는 것을 선택하실 수 있습니다.", - "-1307657508": "만약 귀하께서 귀하의 계약을 판매하기로 결정하면 이 블록은 귀하에게 잠재적인 이윤 또는 손실을 제공합니다. 이는 \"판매 조건\" 루트 블록 내에서만 사용될 수 있습니다.", - "-1921072225": "아래의 예시에서는, 잠재적인 이윤 또는 손실이 지분보다 높을 경우에만 해당 계약이 판매될 것입니다.", - "-955397705": "SMA는 다수의 기간에 대하여 틱 또는 캔들의 목록에 시장 가격을 추가하며 이 합계를 해당되는 기간으로 나눕니다.", - "-1424923010": "n은 기간의 수를 의미합니다.", - "-1835384051": "SMA는 귀하에게 다음의 부분을 알려줍니다", - "-749487251": "SMA는 추세에 대한 하나의 지표로서의 역할을 수행합니다. 만약 SMA 포인트가 상승한다면 시장가격은 증가하며 그 반대로 하락한다면 시장가격은 감소합니다. 기간의 수가 클수록, SMA 선은 더 부드러워집니다.", - "-1996062088": "이 예시에서는, SMA 선의 각 포인트는 최근 10일에 대한 종료 기간의 산술평균입니다.", - "-1866751721": "기간은 명시된 기간이며 반면에 입력 목록은 틱 또는 캔들의 목록을 받아들입니다.", - "-1097076512": "귀하께서는 시장의 추세방향을 확인하기 위해 모든 봇의 실행에서 계산되어진 SMA 값들을 비교하실 수 있습니다. 대안적으로는, 귀하께서는 또한 SMA 블록의 하나인 단순이동평균 배열 블록을 활용하실 수도 있습니다. ", - "-1254849504": "만약 10의 기간이 입력되면, 단순이동평균 배열블록은 10에 대한 기간에 근거하여 계산된 SMA의 값들의 목록을 불러올 것입니다.", - "-859028989": "이 예시에서, 날짜와 시간은 초록색의 공지상자로 표시될 것입니다.", - "-1452086215": "이 예시에서는 하나의 상승 계약이 2019년 8월 1일 자정에 구매되어질 것입니다.", - "-2078588404": "귀하께서 희망하시는 시장과 자산 종류를 선택하세요. 예: 외환 > 주요쌍 > AUD/JPY", - "-2037446013": "2. 거래 종류", - "-533927844": "귀하께서 희망하시는 거래 종류를 선택하세요. 예: 업/다운 > 상승/하락", - "-1192411640": "4. Default Candle Interval", - "-485434772": "8. 거래 옵션", - "-1827646586": "이 블록은 변수가 존재하지 않는다면 변수를 생성하여 주어진 값을 변수에 할당합니다.", "-1687036846": "블록 다운로드", "-1266781295": "확장하기", "-894560707": "함수", diff --git a/packages/translations/src/translations/pl.json b/packages/translations/src/translations/pl.json index df18cbe69205..000b9f98e398 100644 --- a/packages/translations/src/translations/pl.json +++ b/packages/translations/src/translations/pl.json @@ -7,7 +7,6 @@ "11872052": "Tak, wrócę później", "14365404": "Żądanie nie powiodło się dla: {{ message_type }}, ponowna próba za {{ delay }}s", "15377251": "Kwota zysku: {{profit}}", - "17217397": "Kryptowaluta", "17843034": "Sprawdź status weryfikacji dokumentu potwierdzającego tożsamość", "21035405": "Powiedz nam, dlaczego opuszczasz portal (wybierz do {{ allowed_reasons }} powodów.)", "25854018": "Ten blok wyświetla wiadomości w konsoli dewelopera zawierającą ciąg tekstu, liczbę, operator logiczny lub szereg danych.", @@ -22,6 +21,7 @@ "46523711": "Twoje potwierdzenie tożsamości zostało zweryfikowane", "49963458": "Wybierz opcję", "54185751": "Mniej niż 100 000 $", + "55340304": "Keep your current contract?", "55916349": "Wszystko", "58254854": "Zakresy", "59169515": "Jeśli wybierzesz zakład „Azjatycki - wzrośnie”, zdobędziesz wypłatę, gdy ostatni najmniejszy przyrost ceny będzie wyższy niż średnia najmniejszych przyrostów ceny.", @@ -61,7 +61,6 @@ "111931529": "Całkowita maks. stawka w ciągu 7 dni", "113378532": "ETH/USD", "113884303": "Indeks niemiecki", - "113933902": "Pobierz aplikację Deriv X", "115032488": "Cena zakupu i P/L", "116005488": "Wskaźniki", "117318539": "Hasło powinno się składać z małych i wielkich angielskich liter oraz cyfr.", @@ -163,7 +162,6 @@ "270339490": "Jeśli wybierzesz „ponad”, zdobędziesz wypłatę, gdy ostatnia cyfra ostatniego ticku będzie większa niż cyfra przewidywana przez Ciebie.", "270610771": "W tym przykładzie cena otwarcia świecy jest przypisana do zmiennej „candle_open_price”.", "270712176": "malejącp", - "270727821": "Wskaźniki giełdowe", "270780527": "Osiągnięto limit przesyłanych dokumentów.", "272179372": "Ten blok jest powszechnie używany, aby dostosować parametry Twojego nowego zakładu i wprowadzić logikę stop stratom/uzyskaj zysk.", "273350342": "Skopiuj i wklej token w aplikacji.", @@ -197,7 +195,6 @@ "317601768": "Motywy", "318865860": "zamknij", "318984807": "Ten blok powtarza instrukcje zawarte w nim określoną liczbę razy.", - "319538091": "Finansowe STP DMT5", "323179846": "Interwał czasowy dla poszczególnych świec może wynieść od jednej minuty do jednego dnia.", "323209316": "Wybierz strategię Deriv Bot", "325662004": "Rozszerz blok", @@ -248,7 +245,6 @@ "384303768": "Ten blok zwraca wartość „Prawda”, jeśli ostatnia świeca jest czarna. Można go umieścić w dowolnym miejscu w kanwie z wyjątkiem Parametrów zakładu bloku źródłowego.", "386502387": "Bot nie jest uruchomiony", "389923099": "Powiększ", - "390647540": "Prawdziwe konto", "390890891": "Ostatni kwartał", "391915203": "Hedging", "392582370": "Spadek Równa się", @@ -256,7 +252,6 @@ "396961806": "Nie obsługujemy Polygon (Matic), aby dokonać wpłaty użyj Ethereum ({{token}}).", "399387585": "Sprawdź swoją skrzynkę e-mailową, aby uzyskać więcej szczegółów. Jeśli masz pytania, przejdź do <0>Centrum wsparcia.", "401339495": "Zweryfikuj adres", - "402343402": "Z powodu problemów na naszym serwerze niektóre konta {{platform}} są w chwili obecnej niedostępne. Przepraszamy za niedogodności i dziękujemy za cierpliwość.", "403456289": "Formuła dla SMA to:", "404743411": "Wszystkie wpłaty", "406359555": "Szczegóły kontraktu", @@ -271,6 +266,7 @@ "427134581": "Spróbuj użyć innego rodzaju pliku.", "427617266": "Bitcoin", "428709688": "Preferowany odstęp czasu między raportami:", + "432508385": "Take Profit: {{ currency }} {{ take_profit }}", "432519573": "Przesłano dokument", "433348384": "Prawdziwe konta są niedostępne dla osób zajmujących eksponowane stanowiska polityczne (PEP).", "433616983": "2. Faza rozpatrywania", @@ -326,7 +322,6 @@ "505793554": "ostatnia litera", "510815408": "Tylko litery, liczby, spacje, myślniki", "514031715": "lista {{ input_list }} jest pusta", - "514776243": "Hasło do Twojego konta {{account_type}} zostało zmienione.", "514948272": "Kopiuj link", "518955798": "7. Uruchom raz przy starcie", "520136698": "Indeks Boom 500", @@ -438,7 +433,6 @@ "659482342": "Pamiętaj, że Twoim obowiązkiem jest podanie odpowiednich odpowiedzi i aktualizowanie ich. Możesz zaktualizować swoje informacje w dowolnej chwili w ustawieniach konta.", "660481941": "Aby uzyskać dostęp do swoich aplikacji mobilnych i do aplikacji stron trzecich, musisz najpierw wygenerować token API.", "660991534": "Zakończ", - "662609119": "Pobierz aplikację dla systemu MT5", "665089217": "Prześlij <0>potwierdzenie tożsamości, aby zatwierdzić swoje konto i uzyskać dostęp do sekcji Kasjer.", "665777772": "XLM/USD", "665872465": "W poniższym przykładzie wybrana jest cena otwarcia, która następnie jest przypisana do zmiennej o nazwie „op”.", @@ -590,6 +584,7 @@ "872957901": "Ciemny (wkrótce w DBot)", "873166343": "1. „Dziennik” wyświetla standardową wiadomość.", "874461655": "Zeskanuj kod QR swoim telefonem", + "874484887": "Take profit must be a positive number.", "875532284": "Rozpocznij proces od nowa na innym urządzeniu", "876086855": "Wypełnij formularz oceny finansowej", "876292912": "Wyjdź", @@ -637,7 +632,6 @@ "947046137": "Twoja wypłata zostanie zrealizowana w ciągu 24 godzin", "947363256": "Utwórz listę", "947758334": "Miasto to pole wymagane", - "948156236": "Utwórz hasło {{type}}", "949859957": "Prześlij", "952655566": "Pośrednik płatności", "956448295": "Wykryto przycięty obraz", @@ -765,7 +759,6 @@ "1129124569": "Jeśli wybierzesz „poniżej”, zdobędziesz wypłatę, gdy ostatnia cyfra ostatniego najmniejszego przyrostu ceny będzie mniejsza niż cyfra przewidywana przez Ciebie.", "1129296176": "WAŻNA INFORMACJA DOT. TWOICH ŚRODKÓW", "1129842439": "Wprowadź kwotę opcji Uzyskaj zysk.", - "1129984312": "Przelew bankowy", "1130744117": "Będziemy się starać rozpatrzeć Twoją skargę w terminie 10 dni roboczych. Poinformujemy Cię o wyniku jej rozpatrzenia wraz z wyjaśnieniem naszego stanowiska i zaproponujemy środku zaradcze, jakie zamierzamy podjąć.", "1130791706": "N", "1133651559": "Czat na żywo", @@ -878,6 +871,7 @@ "1293660048": "Maks. całkowita strata na dzień", "1294756261": "Blok tworzy funkcje, która jest grupą instrukcji, które można wykonać w dowolnej chwili. Umieść inne bloki tutaj, aby wykonać dowolny rodzaj działania potrzebny w Twojej strategii. Gdy wszystkie instrukcje w funkcji zostaną zrealizowane, Twój bot będzie kontynuował realizację pozostałych bloków w Twojej strategii. Kliknij pole „zrób coś”, aby nadać wybraną nazwę. Kliknij ikonę plus, aby wysłać wartość (jako nazwana zmienna) do swojej funkcji.", "1295284664": "Aby przejść dalej, zaakceptuj <0>zaktualizowany Regulamin.", + "1296380713": "Close my contract", "1299479533": "8 godzin", "1301668579": "Opcja wkrótce będzie dostępna. Jeśli masz inne konto, przejdź na nie, aby kontynuować inwestowanie. Możesz dodać konto finansowe DMT5.", "1302691457": "Zawód", @@ -921,7 +915,6 @@ "1346339408": "Kierownicy", "1347071802": "{{minutePast}}min temu", "1348009461": "Zamknij swoje pozycje na następujących kontach Deriv X:", - "1349142948": "Finansowe DMT5", "1349289354": "Świetnie, to wszystko, czego potrzebujemy", "1349295677": "w tekście {{ input_text }} uzyskaj ciąg podrzędny z {{ position1 }} {{ index1 }} do {{ position2 }} {{ index2 }} {{ index2 }}", "1351152200": "Witaj w pulpicie Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "z interwałem: %1", "1468308734": "Blok powtarza instrukcje, jeśli określony warunek jest prawdziwy", "1468419186": "Deriv obecnie obsługuje wypłaty Tether USDT do portfela Omni. Aby zagwarantować zrealizowanie transakcji, wprowadź adres portfela zgodną z tokenami, które chcesz wypłacić. <0>Dowiedz się więcej", + "1469150826": "Take Profit", "1469764234": "Błąd sekcji Kasjer", "1469814942": "- Dzielenie", "1470319695": "Zwraca wartość Prawda lub Fałsz", @@ -1043,7 +1037,6 @@ "1502325741": "Twoje hasło nie może być takie samo jak adres e-mail.", "1503618738": "- ID referencyjne transakcji: numer referencyjny kontraktu", "1505898522": "Pobierz stos", - "1506251760": "Portfele", "1509570124": "{{buy_value}} (Kup)", "1509678193": "Edukacja", "1510075920": "Złoto/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Twój link mobilny wygaśnie za godzinę", "1577527507": "Wymagane jest podanie powodu otwarcia konta.", "1577612026": "Wybierz folder", + "1579484521": "Trading hub", "1580498808": "Wykryto kilka twarzy", "1584109614": "Lista ciągu ticków", "1584936297": "Plik XML zawiera nieobsługiwane elementy. Sprawdź lub zmień plik.", @@ -1107,6 +1101,7 @@ "1620278321": "Imiona i nazwiska użyte samodzielnie są łatwe do przewidzenia", "1620346110": "Ustaw walutę", "1622662457": "Data od", + "1623706874": "Use this block when you want to use multipliers as your trade type.", "1630372516": "Wypróbuj on-ramp dla waluty fiducjarnej", "1630417358": "Przejdź do ustawień swojego konta i dodaj dane osobowe, aby włączyć możliwość dokonywania wypłat.", "1634594289": "Wybierz język", @@ -1126,6 +1121,7 @@ "1651513020": "Wyświetl pozostały czas dla każdego interwału", "1651951220": "Ciągi, takie jak „abcabcabc” są tylko trochę trudniejsze do przewidzenia niż „abc”", "1652366857": "pobierz i usuń", + "1652968048": "Define your trade options such as multiplier and stake.", "1652976865": "W poniższym przykładzie blok jest użyty z innym blokiem w celu uzyskania cen otwarcia z listy świec. Ceny otwarcia są następnie przypisywane do zmiennej nazywanej „cl”.", "1653136377": "skopiowane!", "1653159197": "Wypłata od pośrednika płatności", @@ -1142,6 +1138,7 @@ "1665738338": "Saldo", "1665756261": "Przejdź na czat na żywo", "1667395210": "Twoje potwierdzenie tożsamości zostało przesłane", + "1670016002": "Multiplier: {{ multiplier }}", "1670426231": "Czas zakończenia", "1671232191": "Ustalono następujące limity:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Zastrzeżenie", "1736292549": "Zaktualizuj kod pocztowy", "1737352280": "Nie wywołano Bot.init", - "1738504192": "E-portfel", "1738681493": "Zdejmij okulary, jeśli to konieczne", "1739384082": "Osoba bezrobotna", "1740371444": "Nie wybrano rynku bazowego", @@ -1250,7 +1246,6 @@ "1820332333": "Doładowanie", "1824193700": "Ten blok daje ostatnią cyfrę wartości ostatniego ticku.", "1827607208": "Nie przesłano pliku.", - "1828994348": "DMT5 nie jest dostępny w: {{country}}", "1832974109": "SmartTrader", "1833481689": "Odblokuj", "1837762008": "Prześlij potwierdzenie tożsamości i danych adresowych, aby zweryfikować swoje konto w jego ustawieniach i uzyskać dostęp do sekcji Kasjer.", @@ -1308,7 +1303,6 @@ "1887852176": "Trwa aktualizowanie strony", "1889357660": "Wprowadź wartość w minutach, do 60480 min (ekwiwalent 6 tygodni).", "1890171328": "Kliknięcie poniższego przycisku Akceptuję i kontynuowanie procedury otwarcia konta oznacza, że zdajesz sobie sprawę z tego, że możesz być narażony/a na ryzyka (które mogą być znaczne, w tym na ryzyko utraty całej zainwestowanej sumy) i możesz nie posiadać wystarczającej wiedzy i wystarczającego doświadczenia, aby sobie z nimi poradzić.", - "1890284485": "Poznaj DTrader", "1890332321": "Zwraca liczbę znaków danego ciągu tekstu, uwzględniając liczby, spacje, znaki interpunkcyjne i symbole.", "1894667135": "Zweryfikuj dokument potwierdzający Twój adres", "1898670234": "{{formatted_opening_time}} (GMT) w {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Dodaj konto lub zarządzaj nim", "1973536221": "Nie masz jeszcze żadnych otwartych pozycji.", "1982912252": "Wskaźnik względnej siły (RSI) z listy z okresem", + "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.", "1983387308": "Podgląd", "1983544897": "Kod skrzynki pocztowej nie jest akceptowany w adresie", "1983676099": "Sprawdź swoją skrzynkę e-mailową, aby uzyskać więcej informacji.", @@ -1491,7 +1486,6 @@ "2138861911": "Skany i fotokopie nie są akceptowane", "2139171480": "Reset Wzrost/Reset Spadek", "2139362660": "lewa strona", - "2141055709": "Nowe hasło {{type}}", "2143803283": "Błąd zakupu", "2144609616": "Jeśli wybierzesz „Reset-Down”, zdobędziesz wypłatę, gdy punkt wyjściowy będzie znacząco niższy niż punkt wejściowy lub punkt spot w momencie resetowania.", "2145690912": "Uzyskanie dochodu", @@ -1735,7 +1729,7 @@ "-38915613": "Niezapisane zmiany", "-2137450250": "Masz niezapisane zmiany. Czy na pewno chcesz odrzucić zmiany i opuścić stronę?", "-1067082004": "Opuść sekcję Ustawienia", - "-1416797980": "Please enter your {{ field_name }} as in your official identity documents.", + "-1416797980": "Wprowadź {{ field_name }} zgodne z oficjalnymi dokumentami tożsamości.", "-1466268810": "Pamiętaj, że Twoim obowiązkiem jest podanie odpowiednich odpowiedzi i aktualizowanie ich. Możesz zaktualizować swoje informacje w dowolnej chwili w <0>ustawieniach konta.", "-1120954663": "Imię*", "-1659980292": "Imię", @@ -1948,7 +1942,6 @@ "-582721696": "Dozwolona kwota wypłaty to {{format_min_withdraw_amount}} - {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "więcej", "-1684548351": "Przejść na konto w kryptowalucie", - "-1345040662": "Szukasz sposobu zakupu kryptowaluty?", "-197251450": "Nie chcesz handlować w {{currency_code}}? Możesz otworzyć kolejne konto w kryptowalucie.", "-212277385": "Nie możesz już zmienić waluty konta, gdyż dokonano wpłaty na konto w walucie fiducjarnej lub utworzono prawdziwe konto DMT5 lub konto Deriv X. Skontaktuj się z nami przez <0>czat na żywo, aby uzyskać więcej informacji.", "-1900848111": "To Twoje konto {{currency_code}}.", @@ -2022,6 +2015,7 @@ "-811190405": "Czas", "-2004264970": "Adres Twojego portfelu powinien składać się z 25-64 znaków.", "-1707299138": "Adres Twojego adresu {{currency_symbol}}", + "-1179992129": "Wszyscy pośrednicy płatności", "-922432739": "Proszę podać poprawny identyfikator logowania.", "-1024241603": "Niewystarczające saldo.", "-1979554765": "Proszę podać prawidłowy opis.", @@ -2033,7 +2027,6 @@ "-1388977563": "Skopiowano!", "-1962894999": "Ten adres może być użyty tylko RAZ. Skopiuj nowy adres dla następnej transakcji.", "-451858550": "Kliknięcie przycisku „Kontynuuj” spowoduje przekierowanie do {{ service }}, zewnętrznego dostarczyciela usług w zakresie płatności. Pamiętaj, że {{ website_name }} nie ponosi odpowiedzialności za zawartość tego serwisu ani za usługi świadczone przez {{ service }}. Jeśli wystąpią jakiekolwiek problemy związane z usługami {{ service }}, skontaktuj się bezpośrednio z {{ service }}.", - "-1179992129": "Wszyscy pośrednicy płatności", "-344959847": "Pośrednik płatności jest uprawniony do przetwarzania wpłat i wypłat, jeśli Twoje lokalne metody płatności lub waluty nie są obsługiwane na stronie {{website_name}}.", "-1232852916": "W celu wyświetlenia transakcji nastąpi przekierowanie na Twoje konto {{currency}}.", "-38063175": "portfel {{account_text}}", @@ -2056,6 +2049,7 @@ "-1615615253": "Nie obsługujemy Tron, aby dokonać wpłaty użyj Ethereum ({{token}}).", "-1831000957": "Wybierz sieć, z której będzie dokonywana wpłata.", "-314177745": "Niestety nie udało się uzyskać danych adresowych, gdyż nas serwer nie działał. Kliknij Odśwież, aby załadować adres ponownie lub spróbuj później.", + "-1345040662": "Szukasz sposobu zakupu kryptowaluty?", "-2005265642": "On-ramp dla waluty fiducjarnej to usługa typu „kasjer”, która umożliwia konwertowanie walut fiducjarnych na kryptowaluty, aby zasilić konta kryptowalutowe Deriv. Na stronie wymienione są zewnętrzne kantowy kryptowalutowe. Aby korzystać z ich usług, konieczne będzie utworzenie konta na tych portalach.", "-1593063457": "Wybierz kanał płatności", "-130833284": "Twój maksymalny i minimalny limit wypłat nie jest stały. Zmienia się z powodu dużej zmienności kryptowalut.", @@ -2093,6 +2087,8 @@ "-1354485738": "Reset Call", "-376148198": "Tylko wzrosty", "-1337379177": "Duże zmiany ceny", + "-328036042": "Podaj kwotę dla opcji Stop stratom, która jest większa niż obecna potencjalna strata.", + "-2127699317": "Nieprawidłowa wartość Stop stratom. Wartość Stop stratom nie może być wyższa niż stawka.", "-1940333322": "DBot nie jest dostępny dla tego konta", "-1210387519": "Przejdź do pulpitu DMT5", "-1223145005": "Kwota straty: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Maksymalny okres trwania: {{ max }}", "-1194719174": "Kwota mnożnika używana do zwiększenia Twojej stawki w przypadku straty zakładu.", "-749186458": "Przełączanie kont jest wyłączone, gdy bot jest uruchomiony. Zatrzymaj bot przed przełączeniem kont.", + "-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.", + "-597939268": "Keep my contract", "-1322453991": "Przed uruchomieniem bota musisz się zalogować.", "-1483938124": "W chwili obecnej ta strategia nie jest kompatybilna z DBot.", + "-236548954": "Błąd aktualizacji kontraktu", "-1428017300": " ", "-1450728048": "Z", "-255051108": "TY", "-1845434627": "JEST", "-931434605": "TEN", "-740712821": " ", + "-187634388": "Ten blok jest obowiązkowy. Tutaj możesz zdecydować, czy Twój bot ma dalej handlować. Dozwolona jest tylko jedna kopia tego bloku.", + "-2105473795": "Jedyny parametr wejściowy określa, jak dane wyjściowe bloku zostaną sformatowane. Jeśli parametr wejściowy to „ciąg”, wówczas dodana zostanie waluta konta.", + "-1800436138": "2. dla „liczy”: 1325,68", + "-2046396241": "Ten blok jest obowiązkowy. Dozwolona jest tylko jedna kopia tego bloku. Blok jest domyślnie dodawany do kanwy, gdy otwierasz DBot.", + "-530632460": "Ten blok określa, czy cena rynkowa zmienia się w wybranym kierunku. Daje wartość „Prawda” lub „Fałsz\".", + "-1875717842": "Przykłady:", + "-890079872": "1. Jeśli wybrany kierunek to „Wzrost”, a wartość poprzedniego ticku jest niższa od wartości obecnego ticku, wynikiem będzie „Prawda”. W przeciwnym wypadku wynikiem będzie pusty ciąg.", + "-489739641": "2. Jeśli wybrany kierunek to „Spadek”, a wartość poprzedniego ticku jest wyższa od wartości obecnego ticku, wynikiem będzie „Prawda”. W przeciwnym wypadku wynikiem będzie pusty ciąg.", + "-2116076360": "Są 4 rodzaje wiadomości:", + "-1421941045": "2. Polecenie „Ostrzegaj” wyświetla wiadomość na żółto, aby podkreślić treści, na które należy zwrócić uwagę.", + "-277850921": "Jeśli została wybrana wartość „Wygrana”, zwróci wartość „Prawda”, jeśli Twój ostatni zakład nie wygrał. W przeciwnym wypadku zwróci pusty ciąg.", + "-1918487001": "Przykład:", + "-2139916657": "1. W poniższym przykładzie pętla kończy się, gdy „x” ma wartość „Fałsz”, nawet jeśli ukończona została tylko jedna iteracja", + "-1238900333": "2. W poniższym przykładzie pętla przechodzi do następnego interwału czasowego bez wykonania poniższego bloku, jeśli „x” to „Prawda”", + "-1729479576": "Możesz użyć „i” w pętli, na przykład aby uzyskać dostęp do listy elementów", + "-1474636594": "W tym przykładzie pętla powtarza się trzy razy, gdyż jest to liczba elementów na określonej liście. W trakcie każdej iteracji zmiennej „i” zostanie przypisana wartość z listy. ", + "-908772734": "Ten blok ocenia twierdzenie i wykonuje działanie, tylko jeśli twierdzenie jest prawdziwe.", + "-334040831": "2. W tym przykładzie instrukcje są powtarzane do czasu, gdy wartość x jest równa 10 lub wyższa. Gdy wartość x spadnie poniżej 10, pętla zostaje zakończona.", + "-444267958": "Blok „Sekundy od epoki” zwraca liczbę sekund od 1 stycznia 1970 r.", + "-447522129": "Możesz go potrzebować, jeśli chcesz powtórzyć serię działań po określonym czasie.", + "-1488259879": "Termin „świeca” odnosi się do poszczególnych słupków wykresu świecowego. Każda świeca przedstawia cztery ceny rynkowe w określonym interwale czasowym:", + "-2020693608": "Każda świeca na wykresie przedstawia 4 ceny rynkowe w określonym interwale czasowym:", + "-62728852": "- Cena otwarcia: cena otwierająca", + "-1247744334": "- Cena niska: najniższa cena", + "-1386365697": "- Cena zamknięcia: cena zamykająca", + "-1498732382": "Czarna (lub czerwona) świeca wskazuje, że cena otwarcia jest wyższa niż cena zamknięcia. Reprezentuje spadek ceny rynkowej.", + "-1871864755": "Ten blok daje ostatnią cyfrę ostatniego ticku na wybranym rynku. Jeśli wartość ostatniego ticku wynosi 1410,90, wówczas blok zwraca 0. Jest to przydatne w przypadku kontraktów opartych na cyfrach, takich jak: Parzyste/Nieparzyste, Zgadza się/Różni się lub Wyższe/Niższe.", + "-1029671512": "Jeśli zostanie wybrane działanie „LUB”, blok zwróci wartość „Prawda” w przypadku, gdy jedna lub obie określone wartości będą miały wartość „Prawda”.", + "-210295176": "Dostępne działania:", + "-1385862125": "- Dodatek", + "-983721613": "- Odejmowanie", + "-854750243": "- Mnożenie", + "-1394815185": "Jeśli określona liczba jest mniejsza niż niższa granica zakresu, blok zwraca wartość niższej granicy. Adekwatnie, jeśli określona liczba jest większa niż wyższa granica, wówczas blok zwraca wartość wyższej granicy. Jeśli określona liczba mieści się między granicami, blok zwróci określoną wartość bez zmian.", + "-1034564248": "W poniższym przykładzie blok zwraca wartość 10, gdyż określona wartość (5) jest mniejsza niż niższa granica (10)", + "-2009817572": "Ten blok wykonuje następujące działania na określonej liczbie", + "-671300479": "Dostępne działania to:", + "-514610724": "- Absolutna", + "-1923861818": "- Liczba Eulera (2,71) podniesiona do potęgi danej liczby", + "-1556344549": "Oto jak:", + "-1061127827": "- Odwiedź ten adres URL, w miejsce wprowadź token Telegram API utworzony w kroku 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. Wróć do DBot i dodaj blok Powiadom Telegram do obszaru roboczego. Wklej token Telegram API oraz ID czatu w odpowiednie pola bloku.", + "-311389920": "W tym przykładzie ceny otwarcia z listy świec są przypisane do zmiennej o nazwie „cl”.", + "-1460794449": "Ten blok daje listę świec w wybranym interwale czasowym.", + "-1634242212": "Ten blok, stosowany w ramach bloku funkcji, zwraca wartość, gdy określony warunek jest prawdziwy.", + "-2012970860": "Ten blok zapewnia Ci informacje o ostatnim kontrakcie.", + "-1504783522": "Możesz wybrać, aby zobaczyć jedne z poniższych:", + "-10612039": "- Zysk: zarobiony przez Ciebie zysk", + "-555996976": "- Czas wejściowy: czas rozpoczęcia kontraktu", + "-1391071125": "- Czas wyjściowy: czas wygaśnięcia kontraktu", + "-1961642424": "- Wartość wyjściowa: wartość ostatniego ticku kontraktu", + "-111312913": "- Limit: wartość limitu kontraktu (mający zastosowanie do rodzajów kontraktów opartych na limicie, takich jak pozostanie w/poza. osiągnie/nie osiągnie itp.)", + "-674283099": "- Wynik: wynik ostatniego zakładu: „wygrana” lub „strata”", + "-704543890": "Ten blok zwraca wartość wybranej świecy, taką jak cenę otwarcia, cenę zamknięcia, cenę wysoką, cenę niską i czas otwarcia. Wymaga świecy jako parametru wejściowego.", + "-482281200": "W poniższym przykładzie cena otwarci jest przypisana do zmiennej „op”.", + "-364621012": "Ten blok daje wartość określonej świecy dla wybranego interwału czasowego. Możesz wybrać wartość, jaką chcesz:", + "-232477769": "- Otwarcia: cena otwarcia", + "-610736310": "Użyj tego bloku, aby sprzedać kontrakt po cenie rynkowej. Sprzedaż kontraktu jest opcjonalna. Możesz go sprzedać, jeśli trend rynkowy jest niekorzystny.", + "-1307657508": "Ten blok daje potencjalny zysk lub stratę, jeśli zdecydujesz się sprzedać swój kontrakt. Można go użyć tylko w ramach bloku źródłowego „Warunki sprzedaży”.", + "-1921072225": "W poniższym przypadku kontrakt zostanie sprzedany, jeśli potencjalny zysk lub strata będzie niższy niż stawka.", + "-955397705": "SMA dodaje cenę rynkową na liście ticków lub świec do liczby okresów czasowych i dzili sumę przez liczbę okresów czasowych.", + "-1424923010": "gdzie n oznacza liczbę okresów.", + "-1835384051": "Co może Ci powiedzieć SMA", + "-749487251": "SMA pełni rolę wskaźnika trendu. Jeśli SMA jest skierowana w górę, wówczas cena rynkowa wzrasta i odwrotnie. Im większa liczba okresów, tym linia SMA jest gładsza.", + "-1996062088": "W tym przykładzie każdy punkt linii SMA jest średnią arytmetyczną cen zamknięcia w okresie ostatnich 10 dni.", + "-1866751721": "Lista wejściowa akceptuje listy ticków lub świec, podczas gdy okres to określony okres czasu.", + "-1097076512": "Możesz porównać wartości SMA obliczane przy każdym uruchomieniu bota, aby przewidywać zmiany trendów rynkowych. Możesz też skorzystać z odmiennej wersji bloku SMA, bloku szeregu prostej średniej kroczącej. ", + "-1254849504": "Jeśli wprowadzony jest okres 10, szereg prostej średniej kroczącej zwróci listę wartości SMA obliczoną w oparciu o okres 10.", + "-1190046167": "Ten blok wyświetla okno dialogowe ze spersonalizowaną wiadomością. Gdy wyświetlane jest okno dialogowe, Twoja strategia zostaje zatrzymana i zostaje wznowiona po kliknięciu „OK”.", + "-859028989": "W tym przypadku data i godzina zostaną wyświetlone w zielonym oknie powiadomienia.", + "-1452086215": "W tym przypadku kontrakt Wzrost zostanie zakupiony o północy dnia 1 sierpnia 2019 r.", + "-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": "Wybierz rodzaj rynku i aktywa. Na przykład Forex > Główne pary > AUD/JPY", + "-2037446013": "2. Rodzaj zakładu", + "-533927844": "Wybierz rodzaj kontraktu. Na przykład: Góra/Dół > Wzrost/Spadek", + "-1192411640": "4. Domyślny interwał świecy", + "-485434772": "8. Opcje zakładu", + "-1827646586": "Blok przypisuje określoną wartość do zmiennej, tworząc zmienną, jeśli jeszcze nie istnieje.", "-254421190": "Lista: ({{message_length}})", "-9461328": "Bezpieczeństwo i prywatność", "-418247251": "Pobierz rejestr.", @@ -2209,17 +2287,6 @@ "-398198412": "Inwestuj na Deriv MT5 (DMT5), wszechstronnej platformie do handlowania kontraktami na różnice kursowe i forex.", "-1793883644": "Handluj FX i kontraktami CFD na łatwej w użyciu platformie handlowej z możliwością dostosowania do Twoich potrzeb.", "-1246992539": "Binary Bot", - "-563774117": "Pulpit", - "-773544978": "Strona główna", - "-1003047246": "Moje aplikacje", - "-2024365882": "Przeglądaj", - "-2038666662": "O nas", - "-832198631": "Karta kredytowa/ debetowa", - "-1787820992": "Platformy", - "-837532140": "Typy zakładów", - "-663862998": "Rynki", - "-947407631": "Wskaźniki syntetyczne", - "-362324454": "Towary", "-821418875": "Gracz", "-1309011360": "Otwarte pozycje", "-679102561": "Szczegóły kontraktu", @@ -2317,41 +2384,47 @@ "-618539786": "Twoje konto zostanie zamknięte", "-945275490": "Wypłać środki ze swojego konta do opcji.", "-705744796": "Saldo na Twoim koncie demo osiągnęło maksymalny limit i nie będzie już możliwe zawieranie nowych zakładów. Zresetuj swoje konto, aby kontynuować inwestowanie ze swojego konta demo.", - "-2067423661": "Większe bezpieczeństwo dla Twojego konta Deriv", - "-1719731099": "Dzięki uwierzytelnaniu dwuskładnikowemu zabezpieczysz swoje konto zarówno hasłem i telefonem - tylko Ty będziesz mieć dostęp do konta, nawet jeśli ktoś wejdzie w posiadanie Twojego hasła.", - "-1738575826": "Przejdź na swoje prawdziwe konto lub utwórz je, aby uzyskać dostęp do sekcji Kasjer.", + "-1585069798": "Kliknij na poniższy link, aby ukończyć ocenę zdolności.", + "-1287141934": "Dowiedz się więcej", + "-367759751": "Twoje konto nie zostało zweryfikowane", + "-596690079": "Enjoy using Deriv?", + "-265932467": "We’d love to hear your thoughts", + "-1815573792": "Drop your review on Trustpilot.", + "-823349637": "Go to Trustpilot", "-1204063440": "Ustaw walutę konta", + "-1164554246": "Przesłano nieważny dokument tożsamości", + "-219846634": "Potwierdźmy Twoją tożsamość", + "-529038107": "Instaluj", + "-87149410": "Instaluj aplikację internetową DTrader", + "-1738575826": "Przejdź na swoje prawdziwe konto lub utwórz je, aby uzyskać dostęp do sekcji Kasjer.", + "-1329329028": "Nie ustawiono 30-dniowego limitu obrotów", + "-132893998": "Twój dostęp do sekcji Kasjer został tymczasowo wyłączony, gdyż nie ustawiono 30-dniowego limitu obrotów. Przejdź do sekcji Samodzielnego wykluczenia, aby ustawić limit.", + "-1852207910": "Wypłata z MT5 wyłączona", + "-764323310": "Opcja dokonywania wypłat z MT5 została wyłączona na Twoim koncie. Sprawdź swoją skrzynkę e-mailową, aby uzyskać więcej informacji.", + "-1435762703": "Potwierdź swoją tożsamość", + "-1902997828": "Odśwież teraz", + "-753791937": "Dostępna jest nowa wersja Deriv", + "-1775108444": "Ta strona zostanie automatycznie odświeżona za 5 minut, aby załadować najnowszą wersję.", + "-1175685940": "Skontaktuj się z nami przez czat na żywo, aby włączyć możliwość dokonywania wypłat.", + "-1125797291": "Zaktualizowano hasło.", + "-157145612": "Zaloguj się przy użyciu zaktualizowanego hasła.", + "-87177461": "Przejdź do ustawień swojego konta i dodaj dane osobowe, aby włączyć możliwość dokonywania wpłat.", + "-904632610": "Resetuj swoje saldo", + "-470018967": "Resetuj saldo", + "-156611181": "Ukończ ocenę finansową w ustawieniach swojego konta, aby odblokować.", "-1925176811": "W obecnej chwili nie można realizować wypłat", "-980696193": "Wypłaty są tymczasowo niedostępne z powodu konserwacji systemu. Możesz dokonać wypłaty po zakończeniu konserwacji.", "-1647226944": "W obecnej chwili nie można realizować wpłat", "-488032975": "Wpłaty są tymczasowo niedostępne z powodu konserwacji systemu. Możesz dokonać wpłaty po zakończeniu konserwacji.", "-67021419": "Kasjer jest tymczasowo niedostępny z powodu konserwacji systemu. Możesz skorzystać z sekcji Kasjer za kilka minut, gdy zakończymy konserwację.", - "-219846634": "Potwierdźmy Twoją tożsamość", - "-367759751": "Twoje konto nie zostało zweryfikowane", - "-1175685940": "Skontaktuj się z nami przez czat na żywo, aby włączyć możliwość dokonywania wypłat.", - "-1852207910": "Wypłata z MT5 wyłączona", - "-764323310": "Opcja dokonywania wypłat z MT5 została wyłączona na Twoim koncie. Sprawdź swoją skrzynkę e-mailową, aby uzyskać więcej informacji.", - "-1585069798": "Kliknij na poniższy link, aby ukończyć ocenę zdolności.", - "-1329329028": "Nie ustawiono 30-dniowego limitu obrotów", - "-132893998": "Twój dostęp do sekcji Kasjer został tymczasowo wyłączony, gdyż nie ustawiono 30-dniowego limitu obrotów. Przejdź do sekcji Samodzielnego wykluczenia, aby ustawić limit.", - "-156611181": "Ukończ ocenę finansową w ustawieniach swojego konta, aby odblokować.", "-849587074": "Nie podano numeru identyfikacji podatkowej", "-47462430": "Ta informacja jest potrzebna w związku z wymogami prawnymi i regulacyjnymi. Przejdź do ustawień konta i podaj najnowszy numer identyfikacji podatkowej.", - "-87177461": "Przejdź do ustawień swojego konta i dodaj dane osobowe, aby włączyć możliwość dokonywania wpłat.", + "-2067423661": "Większe bezpieczeństwo dla Twojego konta Deriv", + "-1719731099": "Dzięki uwierzytelnaniu dwuskładnikowemu zabezpieczysz swoje konto zarówno hasłem i telefonem - tylko Ty będziesz mieć dostęp do konta, nawet jeśli ktoś wejdzie w posiadanie Twojego hasła.", + "-822888359": "Your withdrawal is locked", + "-1197701578": "Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.", "-2087822170": "Jesteś off-line", "-1669693571": "Sprawdź swoje połączenie.", - "-1125797291": "Zaktualizowano hasło.", - "-157145612": "Zaloguj się przy użyciu zaktualizowanego hasła.", - "-904632610": "Resetuj swoje saldo", - "-470018967": "Resetuj saldo", - "-1435762703": "Potwierdź swoją tożsamość", - "-1164554246": "Przesłano nieważny dokument tożsamości", - "-1902997828": "Odśwież teraz", - "-753791937": "Dostępna jest nowa wersja Deriv", - "-1775108444": "Ta strona zostanie automatycznie odświeżona za 5 minut, aby załadować najnowszą wersję.", - "-529038107": "Instaluj", - "-87149410": "Instaluj aplikację internetową DTrader", - "-1287141934": "Dowiedz się więcej", "-1998049070": "Jeśli zgadzasz się na wykorzystywanie przez nas plików cookies, kliknij Akceptuję. <0>Przeczytaj naszą politykę, aby uzyskać więcej informacji.", "-1721181859": "Potrzebne Ci będzie konto {{deriv_account}}", "-1989074395": "Przed dodaniem konta {{dmt5_account}} dodaj konto {{deriv_account}}. Wpłaty i wypłaty w przypadku Twojego konta {{dmt5_label}} są dokonywane przez przelanie środków na konto {{deriv_label}} lub z niego.", @@ -2386,6 +2459,7 @@ "-1950045402": "Wypłać wszystkie swoje środki", "-168971942": "Co to oznacza dla Ciebie", "-905560792": "OK, rozumiem", + "-2024365882": "Przeglądaj", "-1197864059": "Otwórz darmowe konto demonstracyjne", "-1485242688": "Krok {{step}}: {{step_title}} ({{step}} z {{steps}})", "-1829842622": "Dla każdej kryptowaluty możesz utworzyć jedno konto.", @@ -2439,6 +2513,7 @@ "-1917706589": "Powiązanie Twojego konta Deriv z {{social_identity_provider}} zostało zakończone. Korzystaj ze swojego adresu e-mail i hasła podczas logowania.", "-2017825013": "Rozumiem", "-505449293": "Wprowadź nowe hasło do konta Deriv.", + "-1787820992": "Platformy", "-184713104": "Zyskaj stałe wypłaty z opcjami, lub inwestuj w mnożniki, aby zwiększyć swoje zyski przy ograniczonym ryzyku.", "-1571775875": "Nasze flagowa platforma do handlu opcjami i mnożnikami.", "-1107320163": "Zautomatyzuj swoje inwestowanie bez konieczności kodowania.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.Jeśli decyzja zostanie podjęta na naszą korzyść, w ciągu 7 dni od podjęcia decyzji musisz przekazać nam dokument potwierdzający zwolnienie z roszczeń, wówczas skarga zostanie uznana za zamkniętą.", "-429248139": "5. Zastrzeżenie", "-818926350": "Komisja Finansowa akceptuje odwołania w ciągu 45 dni od daty zdarzenia i wyłącznie do uprzedniej próbie inwestora rozwiązania sprawy bezpośrednio z firmą.", - "-236548954": "Błąd aktualizacji kontraktu", "-1282933308": "Nie {{barrier}}", "-968190634": "Równa się {{barrier}}", "-1747377543": "Poniżej {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Cyfry", "-1790089996": "NOWOŚĆ!", "-590018519": "Zakupiono kontrakt", - "-328036042": "Podaj kwotę dla opcji Stop stratom, która jest większa niż obecna potencjalna strata.", - "-2127699317": "Nieprawidłowa wartość Stop stratom. Wartość Stop stratom nie może być wyższa niż stawka.", "-405439829": "Przepraszamy, nie możesz zobaczyć tego kontraktu, gdyż nie należy do tego konta.", "-1714959941": "Wygląd tego wykresu nie jest najlepszy dla kontraktów tick", "-1254554534": "Zmień okres wykresu na tick, aby zapewnić lepsze doświadczenia podczas handlowania.", @@ -2593,22 +2665,13 @@ "-584696680": "Jeśli wybierzesz opcję „Uzyskaj zysk” i określisz kwotę, którą chcesz zarobić, Twoja pozycja zostanie zamknięta automatycznie, gdy Twój zysk jest równy tej kwocie lub wyższy. Twój zysk może wynieść więcej niż podana przez Ciebie kwota, w zależności od ceny rynkowej w momencie zamknięcia kontraktu.", "-178096090": "Nie można zaktualizować opcji „Uzyskaj zysk”. Możesz zaktualizować ją tylko, gdy „Anulowanie transakcji” wygaśnie.", "-206909651": "Cena wejściowa oznacza cenę rynkową w momencie przetworzenia Twojego kontraktu przez nasze serwery.", - "-673424733": "Konto demo", - "-1066565281": "Konserwacja serwera rozpoczyna się o godz. 06:00 GMT w każdą niedzielę. Konserwacja może potrwać do 2 godzin. Usługa może nie być dostępna w tym czasie.", - "-1481390656": "Konserwacja serwera rozpoczyna się o godz. 01:00 GMT w każdą niedzielę. Konserwacja może potrwać do 2 godzin. Usługa może nie być dostępna w tym czasie.", - "-1199152768": "Poznaj nasze pozostałe platformy.", - "-498346912": "Poznaj DBot", + "-464262734": "Zarządzaj hasłem do prawdziwego konta {{platform}} {{account_title}}", "-2042845290": "Twoje hasło inwestora zostało zmienione.", "-1882295407": "Twoje hasło zostało zmienione.", "-254497873": "Użyj tego hasła, aby udzielić innemu użytkownikowi prawa podglądu. Będzie mógł zobaczyć Twoje konto handlowe, ale nie będzie mieć możliwości handlowania ani wykonania innych działań.", "-161656683": "Obecne hasło inwestora", "-374736923": "Nowe hasło inwestora", "-1793894323": "Utwórz lub resetuj hasło inwestora", - "-464262734": "Zarządzaj hasłem do prawdziwego konta {{platform}} {{account_title}}", - "-1928229820": "Zresetuj hasło inwestora Deriv X", - "-1917043724": "Zresetuj hasło inwestora DMT5", - "-1087845020": "główne", - "-1950683866": "inwestor", "-149836494": "Numer referencyjny Twojej transakcji to {{transaction_id}}", "-1382749084": "Wróć do handlowania", "-538215347": "Wpłaty netto", @@ -2737,7 +2800,6 @@ "-1588406981": "Dzięki temu blokowi możesz sprawdzić wynik ostatniego zakładu.", "-1459154781": "Szczegóły kontraktu: {{ contract_detail }}", "-1652241017": "Wczytuje wybraną właściwość z listy szczegółów kontraktu", - "-2012970860": "Ten blok zapewnia Ci informacje o ostatnim kontrakcie.", "-2082345383": "Te bloki przenoszą kontrolę na blok Warunki zakupu.", "-172574065": "Ten blok przeniesie kontrolę z powrotem na blok Warunki zakupu, umożliwiając Ci zakup kolejnego kontraktu.", "-403103225": "restartuj", @@ -2780,7 +2842,6 @@ "-1556495906": "Zwraca listę określonych wartości z listy świec zgodnie z wybranym okresem czasowym", "-166816850": "Utwórz listę wartości świecy (1)", "-1261436901": "Lista świec", - "-1460794449": "Ten blok daje listę świec w wybranym interwale czasowym.", "-1174859923": "Czytaj wybraną wartość świecy", "-1972165119": "Czytaj wartość świecy (1)", "-1956100732": "Możesz korzystać z tego bloku w celu analizowania najmniejszych zmian ceny bez względu na twoje zakłady", @@ -2830,10 +2891,13 @@ "-702370957": "Zmień na datę/czas", "-982729677": "Zmień na znacznik czasu", "-311268215": "Blok zamienia ciąg tekstu reprezentujący datę i godzinę na sekundy od początku epoki Uniksa (1 stycznia 1970 r.). Godzina i strefa czasowa są opcjonalne. Na przykład: 2019-01-01 21:03:45 GMT+0800 zostanie zamieniony na 1546347825.", + "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", + "-1214929127": "Stop loss must be a positive number.", + "-2142851225": "Multiplier trade options", + "-625636913": "Kwota musi być liczbą dodatnią.", "-1466383897": "Czas trwania: {{ duration_unit }} {{ duration_value }}", "-440702280": "Opcje zakładu", "-1193894978": "Określ opcje swojego zakładu, takie jak czas trwania i stawka. Niektóre opcje mają zastosowanie tylko w odniesieniu do niektórych rodzajów zakładów.", - "-625636913": "Kwota musi być liczbą dodatnią.", "-46523443": "Wprowadzono niedozwoloną wartość czasu trwania. Aby uruchomić bot, wprowadź wartość między {{min}} a {{max}}.", "-1483427522": "Rodzaj zakładu: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Parametry zakładu", @@ -2841,7 +2905,6 @@ "-783173909": "Opcje zakładu:", "-376956832": "Tutaj określasz właściwości kontraktu.", "-1244007240": "jeśli {{ condition }} to", - "-908772734": "Ten blok ocenia twierdzenie i wykonuje działanie, tylko jeśli twierdzenie jest prawdziwe.", "-1577206704": "chyba że", "-33796979": "prawda", "-1434883449": "To pojedynczy blok, który zwraca wartość logiczną: prawda lub fałsz.", @@ -2903,84 +2966,11 @@ "-1133072029": "Długość ciągu tekstu", "-1109723338": "drukuj {{ input_text }}", "-736668830": "Drukuj", - "-1190046167": "Ten blok wyświetla okno dialogowe ze spersonalizowaną wiadomością. Gdy wyświetlane jest okno dialogowe, Twoja strategia zostaje zatrzymana i zostaje wznowiona po kliknięciu „OK”.", "-1821552998": "przytnij odstępy od {{ side }} w {{ input_text }}", "-801766026": "prawa strona", "-474779821": "Usuwa odstępy", "-1219239717": "W obszarze roboczym brakuje co najmniej jednego obowiązkowego bloku. Dodaj wymagany blok lub bloki i spróbuj ponownie.", "-250761331": "W obszarze roboczym brakuje co najmniej jednego obowiązkowego bloku. Włącz wymagany blok lub bloki i spróbuj ponownie.", - "-187634388": "Ten blok jest obowiązkowy. Tutaj możesz zdecydować, czy Twój bot ma dalej handlować. Dozwolona jest tylko jedna kopia tego bloku.", - "-2105473795": "Jedyny parametr wejściowy określa, jak dane wyjściowe bloku zostaną sformatowane. Jeśli parametr wejściowy to „ciąg”, wówczas dodana zostanie waluta konta.", - "-1800436138": "2. dla „liczy”: 1325,68", - "-2046396241": "Ten blok jest obowiązkowy. Dozwolona jest tylko jedna kopia tego bloku. Blok jest domyślnie dodawany do kanwy, gdy otwierasz DBot.", - "-530632460": "Ten blok określa, czy cena rynkowa zmienia się w wybranym kierunku. Daje wartość „Prawda” lub „Fałsz\".", - "-1875717842": "Przykłady:", - "-890079872": "1. Jeśli wybrany kierunek to „Wzrost”, a wartość poprzedniego ticku jest niższa od wartości obecnego ticku, wynikiem będzie „Prawda”. W przeciwnym wypadku wynikiem będzie pusty ciąg.", - "-489739641": "2. Jeśli wybrany kierunek to „Spadek”, a wartość poprzedniego ticku jest wyższa od wartości obecnego ticku, wynikiem będzie „Prawda”. W przeciwnym wypadku wynikiem będzie pusty ciąg.", - "-2116076360": "Są 4 rodzaje wiadomości:", - "-1421941045": "2. Polecenie „Ostrzegaj” wyświetla wiadomość na żółto, aby podkreślić treści, na które należy zwrócić uwagę.", - "-277850921": "Jeśli została wybrana wartość „Wygrana”, zwróci wartość „Prawda”, jeśli Twój ostatni zakład nie wygrał. W przeciwnym wypadku zwróci pusty ciąg.", - "-1918487001": "Przykład:", - "-2139916657": "1. W poniższym przykładzie pętla kończy się, gdy „x” ma wartość „Fałsz”, nawet jeśli ukończona została tylko jedna iteracja", - "-1238900333": "2. W poniższym przykładzie pętla przechodzi do następnego interwału czasowego bez wykonania poniższego bloku, jeśli „x” to „Prawda”", - "-1729479576": "Możesz użyć „i” w pętli, na przykład aby uzyskać dostęp do listy elementów", - "-1474636594": "W tym przykładzie pętla powtarza się trzy razy, gdyż jest to liczba elementów na określonej liście. W trakcie każdej iteracji zmiennej „i” zostanie przypisana wartość z listy. ", - "-334040831": "2. W tym przykładzie instrukcje są powtarzane do czasu, gdy wartość x jest równa 10 lub wyższa. Gdy wartość x spadnie poniżej 10, pętla zostaje zakończona.", - "-444267958": "Blok „Sekundy od epoki” zwraca liczbę sekund od 1 stycznia 1970 r.", - "-447522129": "Możesz go potrzebować, jeśli chcesz powtórzyć serię działań po określonym czasie.", - "-1488259879": "Termin „świeca” odnosi się do poszczególnych słupków wykresu świecowego. Każda świeca przedstawia cztery ceny rynkowe w określonym interwale czasowym:", - "-2020693608": "Każda świeca na wykresie przedstawia 4 ceny rynkowe w określonym interwale czasowym:", - "-62728852": "- Cena otwarcia: cena otwierająca", - "-1247744334": "- Cena niska: najniższa cena", - "-1386365697": "- Cena zamknięcia: cena zamykająca", - "-1498732382": "Czarna (lub czerwona) świeca wskazuje, że cena otwarcia jest wyższa niż cena zamknięcia. Reprezentuje spadek ceny rynkowej.", - "-1871864755": "Ten blok daje ostatnią cyfrę ostatniego ticku na wybranym rynku. Jeśli wartość ostatniego ticku wynosi 1410,90, wówczas blok zwraca 0. Jest to przydatne w przypadku kontraktów opartych na cyfrach, takich jak: Parzyste/Nieparzyste, Zgadza się/Różni się lub Wyższe/Niższe.", - "-1029671512": "Jeśli zostanie wybrane działanie „LUB”, blok zwróci wartość „Prawda” w przypadku, gdy jedna lub obie określone wartości będą miały wartość „Prawda”.", - "-210295176": "Dostępne działania:", - "-1385862125": "- Dodatek", - "-983721613": "- Odejmowanie", - "-854750243": "- Mnożenie", - "-1394815185": "Jeśli określona liczba jest mniejsza niż niższa granica zakresu, blok zwraca wartość niższej granicy. Adekwatnie, jeśli określona liczba jest większa niż wyższa granica, wówczas blok zwraca wartość wyższej granicy. Jeśli określona liczba mieści się między granicami, blok zwróci określoną wartość bez zmian.", - "-1034564248": "W poniższym przykładzie blok zwraca wartość 10, gdyż określona wartość (5) jest mniejsza niż niższa granica (10)", - "-2009817572": "Ten blok wykonuje następujące działania na określonej liczbie", - "-671300479": "Dostępne działania to:", - "-514610724": "- Absolutna", - "-1923861818": "- Liczba Eulera (2,71) podniesiona do potęgi danej liczby", - "-1556344549": "Oto jak:", - "-1061127827": "- Odwiedź ten adres URL, w miejsce wprowadź token Telegram API utworzony w kroku 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. Wróć do DBot i dodaj blok Powiadom Telegram do obszaru roboczego. Wklej token Telegram API oraz ID czatu w odpowiednie pola bloku.", - "-311389920": "W tym przykładzie ceny otwarcia z listy świec są przypisane do zmiennej o nazwie „cl”.", - "-1634242212": "Ten blok, stosowany w ramach bloku funkcji, zwraca wartość, gdy określony warunek jest prawdziwy.", - "-1504783522": "Możesz wybrać, aby zobaczyć jedne z poniższych:", - "-10612039": "- Zysk: zarobiony przez Ciebie zysk", - "-555996976": "- Czas wejściowy: czas rozpoczęcia kontraktu", - "-1391071125": "- Czas wyjściowy: czas wygaśnięcia kontraktu", - "-1961642424": "- Wartość wyjściowa: wartość ostatniego ticku kontraktu", - "-111312913": "- Limit: wartość limitu kontraktu (mający zastosowanie do rodzajów kontraktów opartych na limicie, takich jak pozostanie w/poza. osiągnie/nie osiągnie itp.)", - "-674283099": "- Wynik: wynik ostatniego zakładu: „wygrana” lub „strata”", - "-704543890": "Ten blok zwraca wartość wybranej świecy, taką jak cenę otwarcia, cenę zamknięcia, cenę wysoką, cenę niską i czas otwarcia. Wymaga świecy jako parametru wejściowego.", - "-482281200": "W poniższym przykładzie cena otwarci jest przypisana do zmiennej „op”.", - "-364621012": "Ten blok daje wartość określonej świecy dla wybranego interwału czasowego. Możesz wybrać wartość, jaką chcesz:", - "-232477769": "- Otwarcia: cena otwarcia", - "-610736310": "Użyj tego bloku, aby sprzedać kontrakt po cenie rynkowej. Sprzedaż kontraktu jest opcjonalna. Możesz go sprzedać, jeśli trend rynkowy jest niekorzystny.", - "-1307657508": "Ten blok daje potencjalny zysk lub stratę, jeśli zdecydujesz się sprzedać swój kontrakt. Można go użyć tylko w ramach bloku źródłowego „Warunki sprzedaży”.", - "-1921072225": "W poniższym przypadku kontrakt zostanie sprzedany, jeśli potencjalny zysk lub strata będzie niższy niż stawka.", - "-955397705": "SMA dodaje cenę rynkową na liście ticków lub świec do liczby okresów czasowych i dzili sumę przez liczbę okresów czasowych.", - "-1424923010": "gdzie n oznacza liczbę okresów.", - "-1835384051": "Co może Ci powiedzieć SMA", - "-749487251": "SMA pełni rolę wskaźnika trendu. Jeśli SMA jest skierowana w górę, wówczas cena rynkowa wzrasta i odwrotnie. Im większa liczba okresów, tym linia SMA jest gładsza.", - "-1996062088": "W tym przykładzie każdy punkt linii SMA jest średnią arytmetyczną cen zamknięcia w okresie ostatnich 10 dni.", - "-1866751721": "Lista wejściowa akceptuje listy ticków lub świec, podczas gdy okres to określony okres czasu.", - "-1097076512": "Możesz porównać wartości SMA obliczane przy każdym uruchomieniu bota, aby przewidywać zmiany trendów rynkowych. Możesz też skorzystać z odmiennej wersji bloku SMA, bloku szeregu prostej średniej kroczącej. ", - "-1254849504": "Jeśli wprowadzony jest okres 10, szereg prostej średniej kroczącej zwróci listę wartości SMA obliczoną w oparciu o okres 10.", - "-859028989": "W tym przypadku data i godzina zostaną wyświetlone w zielonym oknie powiadomienia.", - "-1452086215": "W tym przypadku kontrakt Wzrost zostanie zakupiony o północy dnia 1 sierpnia 2019 r.", - "-2078588404": "Wybierz rodzaj rynku i aktywa. Na przykład Forex > Główne pary > AUD/JPY", - "-2037446013": "2. Rodzaj zakładu", - "-533927844": "Wybierz rodzaj kontraktu. Na przykład: Góra/Dół > Wzrost/Spadek", - "-1192411640": "4. Domyślny interwał świecy", - "-485434772": "8. Opcje zakładu", - "-1827646586": "Blok przypisuje określoną wartość do zmiennej, tworząc zmienną, jeśli jeszcze nie istnieje.", "-1687036846": "Pobierz blok", "-1266781295": "Rozwiń", "-894560707": "funkcja", diff --git a/packages/translations/src/translations/pt.json b/packages/translations/src/translations/pt.json index a613819aa9c9..448e76081326 100644 --- a/packages/translations/src/translations/pt.json +++ b/packages/translations/src/translations/pt.json @@ -7,7 +7,6 @@ "11872052": "Sim, voltarei mais tarde", "14365404": "A solicitação falhou para: {{ message_type }}, tentando novamente em {{ delay }}s", "15377251": "Valor do lucro: {{profit}}", - "17217397": "Criptomoeda", "17843034": "Verifique o status de verificação do comprovante de identidade", "21035405": "Conte-nos por que você está saindo. (Selecione até {{ allowed_reasons }} motivos.)", "25854018": "Este bloco exibe mensagens no console do desenvolvedor com uma entrada que pode ser uma sequência de texto, um número, booleano ou um conjunto de dados.", @@ -22,6 +21,7 @@ "46523711": "Seu comprovante de identidade foi verificado", "49963458": "Selecione uma opção", "54185751": "Menos de $100.000", + "55340304": "Deseja manter seu contrato atual?", "55916349": "Tudo", "58254854": "Âmbitos", "59169515": "Se você selecionar \"Ascensão asiática\", ganhará o pagamento se o último tick for superior à média dos ticks.", @@ -61,7 +61,6 @@ "111931529": "Máx. entrada total em 7 dias", "113378532": "ETH/USD", "113884303": "Índice Alemão", - "113933902": "Baixe o aplicativo para Deriv X", "115032488": "Preço de compra e P/L", "116005488": "Indicadores", "117318539": "A senha deve conter letras maiúsculas e minúsculas com números.", @@ -163,7 +162,6 @@ "270339490": "Se você selecionar \"Acima\", receberá o Pagamento se o último dígito do último tick for maior que a sua previsão.", "270610771": "Neste exemplo, o preço de abertura de uma vela é atribuído à variável \"candle_open_price\".", "270712176": "descendente", - "270727821": "Índices de ações", "270780527": "Você atingiu o limite de upload de seus documentos.", "272179372": "Esse bloco é comumente usado para ajustar os parâmetros de sua próxima negociação e implementar a lógica de stop loss/take profit.", "273350342": "Copie e cole o token no aplicativo.", @@ -197,7 +195,6 @@ "317601768": "Temas", "318865860": "fechar", "318984807": "Este bloco repete as instruções contidas nele por um número específico de vezes.", - "319538091": "DMT5 Financeira STP", "323179846": "O intervalo de tempo para cada vela pode ser definido de um minuto a um dia.", "323209316": "Selecione uma estratégia do Deriv Bot", "325662004": "Expandir Bloco", @@ -248,7 +245,6 @@ "384303768": "Este bloco retorna \"Verdadeiro\" se a última vela estiver preta. Ele pode ser colocado em qualquer lugar da tela, exceto nos parâmetros do bloco raiz Negociação.", "386502387": "O robô não está em execução", "389923099": "Aumentar o zoom", - "390647540": "Conta Real", "390890891": "Último trimestre", "391915203": "Cobertura", "392582370": "Desce-Equivalentes", @@ -256,7 +252,6 @@ "396961806": "Nós não aceitamos Polygon (Matic), para depositar utilize apenas ({{token}}) Ethereum.", "399387585": "Por favor, verifique seu e-mail para mais detalhes. Se você tiver alguma dúvida, acesse nossa <0>Central de Ajuda.", "401339495": "Verificar endereço", - "402343402": "Devido a um problema em nosso servidor, algumas de suas contas {{platform}} estão indisponíveis no momento. Tenha paciência e obrigado por sua paciência.", "403456289": "A fórmula para SMA é:", "404743411": "Depósitos totais", "406359555": "Detalhes do contrato", @@ -271,6 +266,7 @@ "427134581": "Tente enviar outro tipo de arquivo.", "427617266": "Bitcoin", "428709688": "Seu intervalo de tempo preferido entre cada relatório:", + "432508385": "Take Profit: {{ currency }} {{ take_profit }}", "432519573": "Documento enviado", "433348384": "Contas reais não estão disponíveis para pessoas politicamente expostas (PEPs).", "433616983": "2. Fase de investigação", @@ -326,7 +322,6 @@ "505793554": "última letra", "510815408": "Letras, números, espaços, hifens apenas", "514031715": "lista {{ input_list }} está em branco", - "514776243": "Sua senha de {{account_type}} foi alterada.", "514948272": "Copiar link", "518955798": "7. Executar uma vez ao iniciar", "520136698": "Índice Boom 500", @@ -438,7 +433,6 @@ "659482342": "Lembre-se de que é sua responsabilidade manter suas respostas corretas e atualizadas. Você pode atualizar seus dados pessoais a qualquer momento nas configurações de sua conta.", "660481941": "Para acessar seus aplicativos móveis e outros aplicativos de terceiros, primeiro você precisa gerar um token de API.", "660991534": "Terminar", - "662609119": "Baixe o aplicativo para MT5", "665089217": "Por favor, envie seu <0>documento de identidade para autenticar sua conta e acessar seu Caixa.", "665777772": "XLM/USD", "665872465": "No exemplo abaixo, o preço de abertura é selecionado, o qual é atribuído a uma variável chamada \"op\".", @@ -590,6 +584,7 @@ "872957901": "Escuro (em breve no DBot)", "873166343": "1. 'Log' exibe uma mensagem regular.", "874461655": "Digitalize o código QR com o seu telefone", + "874484887": "O take profit deve ser um número positivo.", "875532284": "Reinicie o processo em um dispositivo diferente", "876086855": "Preencha o formulário de Avaliação Financeira", "876292912": "Sair", @@ -637,7 +632,6 @@ "947046137": "Sua retirada será processada dentro das 24 horas", "947363256": "Criar lista", "947758334": "Cidade é obrigatório", - "948156236": "Crie a senha de(a) {{type}}", "949859957": "Enviar", "952655566": "Agente de pagamento", "956448295": "Imagem de corte detectada", @@ -765,7 +759,6 @@ "1129124569": "Se você selecionar \"Abaixo\", receberá o Pagamento se o último dígito do último tick for menor que a sua previsão.", "1129296176": "AVISO IMPORTANTE PARA RECEBER SEUS FUNDOS", "1129842439": "Digite um valor de Take Profit.", - "1129984312": "Transferência Bancária", "1130744117": "Tentaremos resolver sua reclamação em 10 dias úteis. Iremos informá-lo do resultado juntamente com uma explicação de nossa posição e propor as medidas corretivas que pretendemos tomar.", "1130791706": "N", "1133651559": "Chat ao vivo", @@ -878,6 +871,7 @@ "1293660048": "Máx. perda total por dia", "1294756261": "Este bloco cria uma função, que é um grupo de instruções que podem ser executadas a qualquer momento. Coloque outros blocos aqui para executar qualquer tipo de ação necessária em sua estratégia. Quando todas as instruções em uma função tiverem sido executadas, seu bot continuará com os blocos restantes em sua estratégia. Clique no campo \"faça alguma coisa\" para dar um nome para sua escolha. Clique no ícone de adição para enviar um valor (como uma variável nomeada) para sua função.", "1295284664": "Aceite os <0>Termos e Condições atualizados para continuar.", + "1296380713": "Fechar o contrato", "1299479533": "8 horas", "1301668579": "Estamos trabalhando para disponibilizar isso para você em breve. Se você tiver outra conta, mude para essa conta para continuar negociando. Você pode adicionar uma DMT5 Financeira.", "1302691457": "Ocupação", @@ -921,7 +915,6 @@ "1346339408": "Gerentes", "1347071802": "{{minutePast}}m atrás", "1348009461": "Favor fechar suas posições na(s) seguinte(s) conta(s) Deriv X:", - "1349142948": "DMT5 Financeira", "1349289354": "Ótimo, é tudo o que precisamos", "1349295677": "no texto {{ input_text }} obter substring de {{ position1 }} {{ index1 }} para {{ position2 }} {{ index2 }}", "1351152200": "Bem-vindo ao seu painel Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "com intervalo: %1", "1468308734": "Este bloco repete as instruções desde que uma determinada condição seja verdadeira", "1468419186": "Deriv atualmente suporta retiradas de Tether USDT para carteira Omni. Para garantir uma transação bem-sucedida, insira um endereço de carteira compatível com os tokens que deseja retirar. <0>Saiba mais", + "1469150826": "Take Profit", "1469764234": "Erro do Caixa", "1469814942": "- Divisão", "1470319695": "Retorna Verdadeiro ou Falso", @@ -1043,7 +1037,6 @@ "1502325741": "Sua senha não pode ser igual ao seu endereço de e-mail.", "1503618738": "- ID de referência da transação: o ID de referência do contrato", "1505898522": "Download pilhas de blocos", - "1506251760": "Carteiras", "1509570124": "{{buy_value}} (Comprar)", "1509678193": "Educação", "1510075920": "Ouro/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Seu link para celular expirará em uma hora", "1577527507": "O motivo da abertura da conta é obrigatório.", "1577612026": "Selecione uma pasta", + "1579484521": "Trading hub", "1580498808": "Mais de um rosto encontrado", "1584109614": "Lista String Ticks", "1584936297": "O arquivo XML contém elementos não suportados. Por favor, verifique ou modifique o arquivo.", @@ -1107,6 +1101,7 @@ "1620278321": "Nomes e sobrenomes sozinhos são fáceis de adivinhar", "1620346110": "Definir moeda", "1622662457": "Desde", + "1623706874": "Use this block when you want to use multipliers as your trade type.", "1630372516": "Experimente nosso Fiat onramp", "1630417358": "Vá para as configurações de sua conta e preencha seus dados pessoais para permitir saques.", "1634594289": "Selecione o idioma", @@ -1126,6 +1121,7 @@ "1651513020": "Exibir o tempo restante para cada intervalo", "1651951220": "Repetições como \"abcabcabc\" são um pouco mais difíceis de adivinhar do que \"abc\"", "1652366857": "obter e remover", + "1652968048": "Define your trade options such as multiplier and stake.", "1652976865": "Neste exemplo, esse bloco é usado com outro bloco para obter os preços de abertura de uma lista de velas. Os preços em aberto são então atribuídos à variável chamada \"cl\".", "1653136377": "copiado!", "1653159197": "Retirada Agente de Pagamentos", @@ -1142,6 +1138,7 @@ "1665738338": "Saldo", "1665756261": "Vá para o chat", "1667395210": "Seu comprovante de identidade foi enviado com sucesso", + "1670016002": "Multiplicadores: {{ multiplier }}", "1670426231": "Hora final", "1671232191": "Você definiu os seguintes limites:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Aviso Legal", "1736292549": "Atualize o código postal", "1737352280": "Bot.init não foi chamado", - "1738504192": "Carteira eletrônica", "1738681493": "Retire os óculos, se necessário", "1739384082": "Desempregado", "1740371444": "Mercado subjacente não está selecionado", @@ -1250,7 +1246,6 @@ "1820332333": "Carregar com saldo", "1824193700": "Este bloco fornece o último dígito do último valor do tick.", "1827607208": "Arquivo não carregado.", - "1828994348": "DMT5 não está disponível em {{country}}", "1832974109": "SmartTrader", "1833481689": "Desbloquear", "1837762008": "Envie seu comprovante de identidade e comprovante de endereço para verificar sua conta nas configurações de conta para poder acessar o caixa.", @@ -1308,7 +1303,6 @@ "1887852176": "O site está sendo atualizado", "1889357660": "Insira um valor em minutos, até 60480 minutos (equivalente a 6 semanas).", "1890171328": "Ao clicar em Aceitar abaixo e continuar com a abertura de conta, você deve observar de que poderá expor-se a riscos (que poderão ser significativos, incluindo o risco de perder a totalidade do valor investido), dos quais você talvez não tenha o conhecimento, nem a experiência para avaliar ou atenuar de forma correta.", - "1890284485": "Explore DTrader", "1890332321": "Retorna o número de caracteres de uma determinada sequência de texto, incluindo números, espaços, sinais de pontuação e símbolos.", "1894667135": "Envie seu comprovante de endereço", "1898670234": "{{formatted_opening_time}} (GMT) em {{opening_day}}, <0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Adicionar ou gerenciar conta", "1973536221": "Você ainda não tem posições em aberto.", "1982912252": "Índice de Força Relativa (RSI) a partir de uma lista com um período", + "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.", "1983387308": "Pré-visualização", "1983544897": "Caixas postais não aceitas como endereço", "1983676099": "Por favor verifique seu email para mais detalhes.", @@ -1491,7 +1486,6 @@ "2138861911": "Digitalizações e fotocópias não são aceitas", "2139171480": "Redefinição Acima/Redefinição Abaixo", "2139362660": "lado esquerdo", - "2141055709": "Nova senha de(a) {{type}}", "2143803283": "Erro de compra", "2144609616": "Se você selecionar \"Redefinir-Abaixo\", ganhará o Pagamento se o ponto de saída for estritamente menor que o ponto de entrada ou o ponto no momento da redefinição.", "2145690912": "Ganho de rendimentos", @@ -1948,7 +1942,6 @@ "-582721696": "O valor de saque permitido no momento é de {{format_min_withdraw_amount}} a {{format_max_withdraw_amount}}{{currency}}", "-1957498244": "mais", "-1684548351": "Mudar para conta cripto", - "-1345040662": "Procurando uma maneira de comprar criptomoedas?", "-197251450": "Não quer negociar em {{currency_code}}? Você pode abrir outra conta em criptomoeda.", "-212277385": "Você não pode mais mudar a moeda de sua conta porque fez um depósito em sua conta fiduciária ou criou uma conta DMT5 ou Deriv X real. Por favor, entre em contato conosco através de <0>live chat para esclarecimento.", "-1900848111": "Esta é sua conta {{currency_code}}.", @@ -2022,6 +2015,7 @@ "-811190405": "Data", "-2004264970": "O endereço da carteira deve ter de 25 a 64 caracteres.", "-1707299138": "O endereço de sua carteira {{currency_symbol}}", + "-1179992129": "Todos os agentes de pagamento", "-922432739": "Digite um ID de login do cliente válido.", "-1024241603": "Saldo insuficiente.", "-1979554765": "Por favor, insira uma descrição válida.", @@ -2033,7 +2027,6 @@ "-1388977563": "Copiado!", "-1962894999": "Este endereço só pode ser usado UMA VEZ. Copie um novo para sua próxima transação.", "-451858550": "Ao clicar em 'Continuar', você será redirecionado para {{ service }}, um provedor de serviços de pagamento terceirizado. Observe que {{ website_name }} não é responsável pelo conteúdo ou serviços fornecidos por {{ service }}. Se você encontrar qualquer problema relacionado aos serviços de {{ service }}, deve entrar em contato com {{ service }} diretamente.", - "-1179992129": "Todos os agentes de pagamento", "-344959847": "Um agente de pagamento está autorizado a processar depósitos e saques para você se suas formas de pagamento locais ou moedas locais não forem suportadas em {{website_name}}.", "-1232852916": "Estamos mudando para sua conta {{currency}} para ver a transação.", "-38063175": "Carteira {{account_text}}", @@ -2056,6 +2049,7 @@ "-1615615253": "Não oferecemos suporte ao Tron, para depositar, use apenas Ethereum ({{token}}).", "-1831000957": "Selecione a rede de onde virá o seu depósito.", "-314177745": "Infelizmente, não foi possível obter o endereço porque nosso servidor estava fora do ar. Clique em Atualizar para recarregar o endereço ou tente novamente mais tarde.", + "-1345040662": "Procurando uma maneira de comprar criptomoedas?", "-2005265642": "O Fiat onramp é um serviço de caixa que permite converter moedas fiduciárias em criptografia para recarregar suas contas de criptografia Deriv. Aqui estão listadas trocas de criptografia de terceiros. Você precisará criar uma conta com eles para usar seus serviços.", "-1593063457": "Selecione o canal de pagamento", "-130833284": "Observe que seus limites máximo e mínimo de retirada não são fixos. Eles mudam devido à alta volatilidade da criptomoeda.", @@ -2093,6 +2087,8 @@ "-1354485738": "Redefinição - Compra", "-376148198": "Sempre acima", "-1337379177": "Tick Alto", + "-328036042": "Digite um valor de Stop Loss superior à perda potencial atual.", + "-2127699317": "Stop Loss inválido. Stop Loss não pode ser mais do que Entrada.", "-1940333322": "DBot não está disponível para esta conta", "-1210387519": "Vá para o Painel DMT5", "-1223145005": "Valor da perda: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Duração máxima: {{ max }}", "-1194719174": "O valor multiplicador usado para aumentar sua Entrada se você estiver perdendo uma negociação.", "-749186458": "A troca de conta é desativada enquanto seu bot está em execução. Pare seu bot antes de trocar de conta.", + "-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.", + "-597939268": "Keep my contract", "-1322453991": "Você precisa fazer login para executar o bot.", "-1483938124": "Atualmente, essa estratégia não é compatível com o DBot.", + "-236548954": "Erro de atualização do contrato", "-1428017300": "O", "-1450728048": "DE", "-255051108": "VOCÊ", "-1845434627": "É", "-931434605": "ESTE", "-740712821": "A", + "-187634388": "Este bloco é obrigatório. Aqui é onde você pode decidir se o seu bot deve continuar sendo negociado. Apenas uma cópia deste bloco é permitida.", + "-2105473795": "O único parâmetro de entrada determina como a saída do bloco será formatada. Caso o parâmetro de entrada seja \"string\", a moeda da conta será adicionada.", + "-1800436138": "2. para \"número\": 1325.68", + "-2046396241": "Este bloco é obrigatório. Apenas uma cópia deste bloco é permitida. É adicionado à tela por padrão quando você abre o DBot.", + "-530632460": "Este bloco é usado para determinar se o preço de mercado se move na direção selecionada ou não. Ele fornece um valor de \"Verdadeiro\" ou \"Falso\".", + "-1875717842": "Exemplos:", + "-890079872": "1. Se a direção selecionada for \"Sobe\", e o valor anterior do tick for menor que o valor atual do tick, a saída será \"Verdadeira\". Caso contrário, a saída será uma sequência vazia.", + "-489739641": "2. Se a direção selecionada for \"Desce\" e o valor do tick anterior for maior que o valor do tick atual, a saída será \"Verdadeiro\". Caso contrário, a saída será uma string vazia.", + "-2116076360": "Existem 4 tipos de mensagens:", + "-1421941045": "2. 'Aviso' exibe uma mensagem em amarelo para destacar algo que precisa de atenção.", + "-277850921": "Se \"Ganhar\" for selecionado, ele retornará \"Verdadeiro\" se sua última negociação tiver sido bem-sucedida. Caso contrário, ele retornará uma string vazia.", + "-1918487001": "Exemplo:", + "-2139916657": "1. No exemplo abaixo, o loop é encerrado caso \"x\" seja \"Falso\", embora apenas uma iteração esteja completa", + "-1238900333": "2. No exemplo abaixo, o loop salta para a próxima iteração sem executar o bloco abaixo, caso \"x\" seja \"Falso\"", + "-1729479576": "Você pode usar \"i\" dentro do loop, por exemplo, para acessar itens da lista", + "-1474636594": "Neste exemplo, o loop será repetido três vezes, pois esse é o número de itens na lista fornecida. Durante cada iteração, a variável \"i\" receberá um valor da lista. ", + "-908772734": "Este bloco avalia uma instrução e executará uma ação somente quando a instrução for verdadeira.", + "-334040831": "2. Neste exemplo, as instruções são repetidas desde que o valor de x seja maior ou igual a 10. Quando o valor de x cai abaixo de 10, o loop é encerrado.", + "-444267958": "O bloco \"Segundos desde Epoch\" retorna o número de segundos desde 1º de janeiro de 1970.", + "-447522129": "Pode ser necessário quando você deseja repetir uma série de ações após um certo período de tempo.", + "-1488259879": "O termo \"vela\" refere-se a cada barra no gráfico de velas. Cada vela representa quatro preços de mercado para o intervalo de tempo selecionado:", + "-2020693608": "Cada Vela-Stick no gráfico representa 4 preços de mercado para o intervalo de tempo selecionado:", + "-62728852": "- Preço de abertura: o preço de abertura", + "-1247744334": "- Preço baixo: o preço mais baixo", + "-1386365697": "- Preço de fechamento: o preço de fechamento", + "-1498732382": "Uma vela preta (ou vermelha) indica que o preço de abertura é mais alto que o preço de fechamento. Isso representa um movimento descendente do preço de mercado.", + "-1871864755": "Este bloco fornece o último dígito do último valor de tick do mercado selecionado. Se o valor mais recente do tick for 1410,90, esse bloco retornará 0. É útil para contratos baseados em dígitos, como Par/Ímpar, Combina/Difere ou Superior/Inferior.", + "-1029671512": "Caso a operação \"OR\" seja selecionada, o bloco retornará \"Verdadeiro\", caso um ou ambos os valores fornecidos sejam \"Verdadeiro\"", + "-210295176": "Operações disponíveis:", + "-1385862125": "- Adição", + "-983721613": "- Subtração", + "-854750243": "- Multiplicação", + "-1394815185": "Caso o número fornecido seja menor que o limite inferior do intervalo, o bloco retornará o valor do limite inferior. Da mesma forma, se o número fornecido for maior que o limite mais alto, o bloco retornará o valor do limite mais alto. Caso o valor especificado esteja entre os limites, o bloco retornará o valor especificado inalterado.", + "-1034564248": "No exemplo abaixo, o bloco retorna o valor 10, pois o valor fornecido (5) é menor que o limite inferior", + "-2009817572": "Este bloco executa as seguintes operações para um determinado número", + "-671300479": "As operações disponíveis são:", + "-514610724": "- Absoluto", + "-1923861818": "- número de Euler (2,71) à potência de um determinado número", + "-1556344549": "Veja como:", + "-1061127827": "- Visite a seguinte URL, substitua pelo token da Telegram API que você criou na Etapa 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. Volte ao DBot e adicione o bloco Notificar Telegram à área de trabalho. Cole o token da API do Telegram e o ID do bate-papo nos campos do bloco de acordo.", + "-311389920": "Neste exemplo, os preços em aberto de uma lista de velas são atribuídos a uma variável chamada \"cl\".", + "-1460794449": "Este bloco fornece uma lista de velas dentro de um intervalo de tempo selecionado.", + "-1634242212": "Usado dentro de um bloco de funções, esse bloco retorna um valor quando uma condição específica é verdadeira.", + "-2012970860": "Este bloco fornece informações sobre seu último contrato.", + "-1504783522": "Você pode optar por ver um dos seguintes:", + "-10612039": "- Lucro: o lucro que você obteve", + "-555996976": "- Horário de entrada: a hora de início do contrato", + "-1391071125": "- Hora de saída: a hora de vencimento do contrato", + "-1961642424": "- Valor de saída: o valor do último tick do contrato", + "-111312913": "- Barreira: o valor da barreira do contrato (aplicável a tipos de negociação baseados em barreiras, como Fica entre/fora, Toca/Não toca, etc.)", + "-674283099": "- Resultado: o resultado do último contrato: \"vitória\" ou \"perda\"", + "-704543890": "Esse bloco fornece o valor de vela selecionado, como preço de abertura, preço de fechamento, preço alto, preço baixo e tempo de abertura. Requer uma vela como parâmetro de entrada.", + "-482281200": "No exemplo abaixo, o preço em aberto é atribuído à variável \"op\".", + "-364621012": "Este bloco fornece o valor especificado da vela para um intervalo de tempo selecionado. Você pode escolher qual valor deseja:", + "-232477769": "- Aberto: o preço de abertura", + "-610736310": "Use este bloco para vender seu contrato pelo preço de mercado. A venda do seu contrato é opcional. Você pode optar por vender se a tendência do mercado for desfavorável.", + "-1307657508": "Esse bloco fornece o lucro ou perda potencial se você decidir vender seu contrato. Só pode ser usado dentro do bloco raiz \"Condições de Venda\".", + "-1921072225": "No exemplo abaixo, o contrato será vendido apenas se o lucro ou perda potencial for maior que a Entrada.", + "-955397705": "A SMA adiciona o preço de mercado a uma lista de ticks ou velas por vários períodos e divide a soma por esse número de períodos.", + "-1424923010": "onde n é o número de períodos.", + "-1835384051": "O que a SMA diz", + "-749487251": "A SMA serve como um indicador da tendência. Se a SMA apontar, o preço de mercado está aumentando e vice-versa. Quanto maior o número do período, mais suave é a linha SMA.", + "-1996062088": "Neste exemplo, cada ponto da linha SMA é uma média aritmética dos preços de fechamento nos últimos 10 dias.", + "-1866751721": "A lista de entrada aceita uma lista de ticks ou velas, enquanto período é o tempo do período especificado.", + "-1097076512": "Você pode comparar os valores de SMA calculados em cada execução de bot para identificar a direção da tendência do mercado. Como alternativa, você também pode usar uma variação do bloco SMA, o bloco Matriz de Média Móvel Simples. ", + "-1254849504": "Se um período de 10 for inserido, o bloco Matriz Média Móvel Simples retornará uma lista de valores SMA calculados com base no período de 10.", + "-1190046167": "Este bloco exibe uma caixa de diálogo com uma mensagem personalizada. Quando a caixa de diálogo é exibida, sua estratégia é pausada e só será retomada depois que você clicar em \"OK\".", + "-859028989": "Neste exemplo, a data e a hora serão exibidas em uma caixa de notificação verde.", + "-1452086215": "Neste exemplo, um contrato de Sobe será adquirido à meia-noite de 1 de agosto de 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": "Selecione o mercado e o tipo de ativo desejados. Por exemplo, Forex > Pares principais > AUD/JPY", + "-2037446013": "2. Tipo de negociação", + "-533927844": "Selecione o tipo de negociação desejada. Por exemplo, Acima/Abaixo > Sobe/Desce", + "-1192411640": "4. Intervalo de Vela Padrão", + "-485434772": "8. Opções de negociação", + "-1827646586": "Este bloco atribui um determinado valor a uma variável, criando a variável se ela ainda não existir.", "-254421190": "Lista: ({{message_length}})", "-9461328": "Segurança e privacidade", "-418247251": "Baixe seus avisos.", @@ -2209,17 +2287,6 @@ "-398198412": "Negocie na Deriv MT5 (DMT5), a plataforma de negociação multifuncional de FX e CFD.", "-1793883644": "Negocie FX e CFDs em uma plataforma de negociação personalizável e fácil de usar.", "-1246992539": "Binary Bot", - "-563774117": "Painel de controle", - "-773544978": "Página Inicial", - "-1003047246": "Meus Aplicativos", - "-2024365882": "Explorar", - "-2038666662": "Sobre nós", - "-832198631": "Cartão de Crédito/Débito", - "-1787820992": "Plataformas", - "-837532140": "Tipos de negociações", - "-663862998": "Mercados", - "-947407631": "Índices Sintéticos", - "-362324454": "Commodities", "-821418875": "Trader", "-1309011360": "Posições em aberto", "-679102561": "Detalhes do contrato", @@ -2317,41 +2384,47 @@ "-618539786": "Sua conta está programada para ser encerrada", "-945275490": "Retire todos os fundos de sua conta de Opções.", "-705744796": "O saldo da sua conta demo atingiu o limite máximo e você não poderá fazer novas negociações. Redefina seu saldo para continuar negociando a partir de sua conta demo.", - "-2067423661": "Mais segurança para sua conta Deriv", - "-1719731099": "Com a autenticação em dois fatores, você protegerá sua conta com sua senha e seu telefone - assim, somente você poderá acessar sua conta, mesmo que alguém saiba sua senha.", - "-1738575826": "Mude para sua conta real ou crie uma para acessar o caixa.", + "-1585069798": "Clique no link a seguir para concluir seu Teste de Adequação.", + "-1287141934": "Saiba mais", + "-367759751": "Sua conta não foi verificada", + "-596690079": "Enjoy using Deriv?", + "-265932467": "We’d love to hear your thoughts", + "-1815573792": "Drop your review on Trustpilot.", + "-823349637": "Go to Trustpilot", "-1204063440": "Definir a moeda da minha conta", + "-1164554246": "Você enviou documentos de identificação expirados", + "-219846634": "Vamos verificar sua identidade", + "-529038107": "Instalar", + "-87149410": "Instale o aplicativo da web DTrader", + "-1738575826": "Mude para sua conta real ou crie uma para acessar o caixa.", + "-1329329028": "Você não definiu seu limite de rotatividade de 30 dias", + "-132893998": "Seu acesso ao caixa foi temporariamente desativado porque você não definiu o limite de faturamento de 30 dias. Vá para Auto-exclusão e defina o limite.", + "-1852207910": "Retirada do MT5 desabilitada", + "-764323310": "Retiradas da MT5 foram desabilitadas na sua conta. Confira o seu e-mail para mais detalhes.", + "-1435762703": "Verifique sua identidade", + "-1902997828": "Atualize agora", + "-753791937": "Uma nova versão da Deriv está disponível", + "-1775108444": "Esta página será atualizada automaticamente em 5 minutos para carregar a versão mais recente.", + "-1175685940": "Entre em contato conosco através do chat para permitir retiradas.", + "-1125797291": "Senha atualizada.", + "-157145612": "Faça login com sua senha atualizada.", + "-87177461": "Vá para as configurações de sua conta e preencha seus dados pessoais para permitir depósitos.", + "-904632610": "Reinicie o seu saldo", + "-470018967": "Reinicie o seu saldo", + "-156611181": "Conclua a avaliação financeira nas configurações da sua conta para desbloqueá-la.", "-1925176811": "Incapaz de processar retiradas no momento", "-980696193": "As retiradas estão temporariamente indisponíveis devido à manutenção do sistema. Você poderá fazer retiradas quando a manutenção for concluída.", "-1647226944": "Incapaz de processar o depósito no momento", "-488032975": "Os depósitos estão temporariamente indisponíveis devido à manutenção do sistema. Você poderá fazer depósitos quando a manutenção for concluída.", "-67021419": "Nosso caixa está temporariamente fora do ar devido à manutenção do sistema. Você poderá acessar o caixa em alguns minutos quando a manutenção for concluída.", - "-219846634": "Vamos verificar sua identidade", - "-367759751": "Sua conta não foi verificada", - "-1175685940": "Entre em contato conosco através do chat para permitir retiradas.", - "-1852207910": "Retirada do MT5 desabilitada", - "-764323310": "Retiradas da MT5 foram desabilitadas na sua conta. Confira o seu e-mail para mais detalhes.", - "-1585069798": "Clique no link a seguir para concluir seu Teste de Adequação.", - "-1329329028": "Você não definiu seu limite de rotatividade de 30 dias", - "-132893998": "Seu acesso ao caixa foi temporariamente desativado porque você não definiu o limite de faturamento de 30 dias. Vá para Auto-exclusão e defina o limite.", - "-156611181": "Conclua a avaliação financeira nas configurações da sua conta para desbloqueá-la.", "-849587074": "Você não forneceu seu número de identificação fiscal", "-47462430": "Essas informações são necessárias para os requisitos legais e regulamentares. Vá para as configurações de sua conta e preencha seu último número de identificação fiscal.", - "-87177461": "Vá para as configurações de sua conta e preencha seus dados pessoais para permitir depósitos.", + "-2067423661": "Mais segurança para sua conta Deriv", + "-1719731099": "Com a autenticação em dois fatores, você protegerá sua conta com sua senha e seu telefone - assim, somente você poderá acessar sua conta, mesmo que alguém saiba sua senha.", + "-822888359": "Your withdrawal is locked", + "-1197701578": "Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.", "-2087822170": "Você está offline", "-1669693571": "Verifique sua conexão.", - "-1125797291": "Senha atualizada.", - "-157145612": "Faça login com sua senha atualizada.", - "-904632610": "Reinicie o seu saldo", - "-470018967": "Reinicie o seu saldo", - "-1435762703": "Verifique sua identidade", - "-1164554246": "Você enviou documentos de identificação expirados", - "-1902997828": "Atualize agora", - "-753791937": "Uma nova versão da Deriv está disponível", - "-1775108444": "Esta página será atualizada automaticamente em 5 minutos para carregar a versão mais recente.", - "-529038107": "Instalar", - "-87149410": "Instale o aplicativo da web DTrader", - "-1287141934": "Saiba mais", "-1998049070": "Se você concorda com o uso de cookies, clique em Aceitar. Para mais informações, <0>consulte nossa política.", "-1721181859": "Você precisará de uma conta {{deriv_account}}", "-1989074395": "Por favor adicionar uma conta {{deriv_account}} antes de adicionar uma conta {{dmt5_account}}. Os depósitos e saques para sua conta {{dmt5_label}} são feitos por transferência de fundos de e para sua conta {{deriv_label}}.", @@ -2386,6 +2459,7 @@ "-1950045402": "Retire todos os seus fundos", "-168971942": "O que isso significa para você", "-905560792": "Sim, eu compreendo", + "-2024365882": "Explorar", "-1197864059": "Crie uma conta demo gratuita", "-1485242688": "Passo {{step}}: {{step_title}} ({{step}} de {{steps}})", "-1829842622": "Você pode abrir uma conta para cada criptomoeda.", @@ -2439,6 +2513,7 @@ "-1917706589": "Sua conta Deriv foi desvinculada do {{social_identity_provider}}. Use seu e-mail e senha para login no futuro.", "-2017825013": "Entendi", "-505449293": "Insira uma nova senha para sua conta Deriv.", + "-1787820992": "Plataformas", "-184713104": "Receba pagamentos fixos com opções ou negocie multiplicadores para amplificar seus ganhos com risco limitado.", "-1571775875": "Nossas opções principais e plataforma de negociação de multiplicadores.", "-1107320163": "Automatize sua negociação, sem necessidade de codificação.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d. Se a decisão for a nosso favor, você deve nos fornecer uma liberação dentro de 7 dias a partir de quando a decisão for tomada, e a reclamação será considerada encerrada.", "-429248139": "5. Isenção de responsabilidade", "-818926350": "A Comissão Financeira aceita recursos por 45 dias após a data do incidente e somente após o negociador ter tentado resolver o problema diretamente com a empresa.", - "-236548954": "Erro de atualização do contrato", "-1282933308": "Não {{barrier}}", "-968190634": "Igual a {{barrier}}", "-1747377543": "Abaixo de {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Dígitos", "-1790089996": "NOVO!", "-590018519": "Contrato adquirido", - "-328036042": "Digite um valor de Stop Loss superior à perda potencial atual.", - "-2127699317": "Stop Loss inválido. Stop Loss não pode ser mais do que Entrada.", "-405439829": "Você não pode visualizar este contrato porque ele não pertence a esta conta.", "-1714959941": "Essa exibição de gráfico não é ideal para contratos de tick", "-1254554534": "Altere a duração do gráfico para tick para uma melhor experiência de negociação.", @@ -2593,22 +2665,13 @@ "-584696680": "Se você selecionar \"Take Profit\" e especificar um valor que gostaria de ganhar, sua posição será fechada automaticamente quando seu lucro for maior ou igual a esse valor. Seu lucro pode ser superior ao valor digitado, dependendo do preço de mercado no fechamento.", "-178096090": "\"Take Profit\" não pode ser atualizado. Você pode atualizá-lo apenas quando o tempo de \"Cancelamento da transação\" expirar.", "-206909651": "O ponto de entrada é o preço de mercado quando seu contrato é processado por nossos servidores.", - "-673424733": "Conta Demo", - "-1066565281": "A manutenção do servidor começa a partir das 06:00 GMT todos os domingos e pode levar até 2 horas para ser concluído. O serviço pode ser interrompido durante esse período.", - "-1481390656": "Manutenção do servidor a partir de 01:00 GMT todos os Domingos. Esse processo pode levar até 2 horas para ser concluído. O serviço pode ser interrompido durante este período.", - "-1199152768": "Explore nossas outras plataformas.", - "-498346912": "Explore DBot", + "-464262734": "Gerenciar sua senha da conta real {{platform}} {{account_title}}", "-2042845290": "Sua senha de investidor foi alterada.", "-1882295407": "Sua senha foi modificada.", "-254497873": "Use esta senha para conceder acesso de visualização a outro usuário. Embora eles possam visualizar sua conta de negociação, eles não poderão negociar ou realizar qualquer outra ação.", "-161656683": "Senha atual do investidor", "-374736923": "Nova senha do investidor", "-1793894323": "Criar ou redefinir a senha do investidor", - "-464262734": "Gerenciar sua senha da conta real {{platform}} {{account_title}}", - "-1928229820": "Redefinir a senha do investidor da Deriv X", - "-1917043724": "Redefinir a senha do investidor da DMT5", - "-1087845020": "principal", - "-1950683866": "investidor", "-149836494": "O número de referência da sua transação é {{transaction_id}}", "-1382749084": "Voltar as negociações", "-538215347": "Depósitos líquido", @@ -2737,7 +2800,6 @@ "-1588406981": "Você pode verificar o resultado da última negociação com este bloco.", "-1459154781": "Detalhes do contrato: {{ contract_detail }}", "-1652241017": "Lê uma propriedade selecionada da lista de detalhes do contrato", - "-2012970860": "Este bloco fornece informações sobre seu último contrato.", "-2082345383": "\nEsses blocos transferem o controle para o bloco de condições de compra.", "-172574065": "Esse bloco transferirá o controle de volta ao bloco Condições de compra, permitindo a compra de outro contrato.", "-403103225": "reiniciar", @@ -2780,7 +2842,6 @@ "-1556495906": "Retorna uma lista de valores específicos de uma lista de velas de acordo com o intervalo de tempo selecionado", "-166816850": "Crie uma lista de valores de vela (1)", "-1261436901": "Lista de Velas", - "-1460794449": "Este bloco fornece uma lista de velas dentro de um intervalo de tempo selecionado.", "-1174859923": "Leia o valor da vela selecionada", "-1972165119": "Leia o valor da vela (1)", "-1956100732": "Você pode usar este bloco para analisar os ticks, independentemente de suas negociações", @@ -2830,10 +2891,13 @@ "-702370957": "Converter em data/hora", "-982729677": "Converter em timestamp", "-311268215": "Este bloco converte uma sequência de texto que representa a data e a hora em segundos desde Unix Epoch (1 de janeiro de 1970). A hora e o deslocamento do fuso horário são opcionais. Exemplo: 2019-01-01 21:03:45 GMT+0800 será convertido em 1546347825.", + "-1797602591": "Stop Loss: {{ currency }} {{ stop_loss }}", + "-1214929127": "Stop loss must be a positive number.", + "-2142851225": "Multiplier trade options", + "-625636913": "Valor deve ser um número positivo.", "-1466383897": "Duração: {{ duration_unit }} {{ duration_value }}", "-440702280": "Opções de negociação", "-1193894978": "Defina suas opções de negociação, como duração e entrada. Algumas opções são aplicáveis ​​apenas a certos tipos de negociação.", - "-625636913": "Valor deve ser um número positivo.", "-46523443": "O valor da duração não é permitido. Para executar o bot, digite um valor entre {{min}} e {{max}}.", "-1483427522": "Tipo de Negociação: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Parâmetros de Negociação", @@ -2841,7 +2905,6 @@ "-783173909": "Opções de negociação:", "-376956832": "Aqui é onde você define os parâmetros do seu contrato.", "-1244007240": "se {{ condition }} então", - "-908772734": "Este bloco avalia uma instrução e executará uma ação somente quando a instrução for verdadeira.", "-1577206704": "então se", "-33796979": "verdadeiro", "-1434883449": "Este é um único bloco que retorna um valor booleano, verdadeiro ou falso.", @@ -2903,84 +2966,11 @@ "-1133072029": "String Comprimento Texto", "-1109723338": "imprimir {{ input_text }}", "-736668830": "Mensagem", - "-1190046167": "Este bloco exibe uma caixa de diálogo com uma mensagem personalizada. Quando a caixa de diálogo é exibida, sua estratégia é pausada e só será retomada depois que você clicar em \"OK\".", "-1821552998": "recortar espaços de {{ side }} de {{ input_text }}", "-801766026": "lado direito", "-474779821": "Apara os espaços", "-1219239717": "Um ou mais blocos obrigatórios estão faltando em sua área de trabalho. Adicione o(s) bloco(s) necessário(s) e tente novamente.", "-250761331": "Um ou mais blocos obrigatórios estão desabilitados em seu espaço de trabalho. Ative o(s) bloco(s) necessário(s) e tente novamente.", - "-187634388": "Este bloco é obrigatório. Aqui é onde você pode decidir se o seu bot deve continuar sendo negociado. Apenas uma cópia deste bloco é permitida.", - "-2105473795": "O único parâmetro de entrada determina como a saída do bloco será formatada. Caso o parâmetro de entrada seja \"string\", a moeda da conta será adicionada.", - "-1800436138": "2. para \"número\": 1325.68", - "-2046396241": "Este bloco é obrigatório. Apenas uma cópia deste bloco é permitida. É adicionado à tela por padrão quando você abre o DBot.", - "-530632460": "Este bloco é usado para determinar se o preço de mercado se move na direção selecionada ou não. Ele fornece um valor de \"Verdadeiro\" ou \"Falso\".", - "-1875717842": "Exemplos:", - "-890079872": "1. Se a direção selecionada for \"Sobe\", e o valor anterior do tick for menor que o valor atual do tick, a saída será \"Verdadeira\". Caso contrário, a saída será uma sequência vazia.", - "-489739641": "2. Se a direção selecionada for \"Desce\" e o valor do tick anterior for maior que o valor do tick atual, a saída será \"Verdadeiro\". Caso contrário, a saída será uma string vazia.", - "-2116076360": "Existem 4 tipos de mensagens:", - "-1421941045": "2. 'Aviso' exibe uma mensagem em amarelo para destacar algo que precisa de atenção.", - "-277850921": "Se \"Ganhar\" for selecionado, ele retornará \"Verdadeiro\" se sua última negociação tiver sido bem-sucedida. Caso contrário, ele retornará uma string vazia.", - "-1918487001": "Exemplo:", - "-2139916657": "1. No exemplo abaixo, o loop é encerrado caso \"x\" seja \"Falso\", embora apenas uma iteração esteja completa", - "-1238900333": "2. No exemplo abaixo, o loop salta para a próxima iteração sem executar o bloco abaixo, caso \"x\" seja \"Falso\"", - "-1729479576": "Você pode usar \"i\" dentro do loop, por exemplo, para acessar itens da lista", - "-1474636594": "Neste exemplo, o loop será repetido três vezes, pois esse é o número de itens na lista fornecida. Durante cada iteração, a variável \"i\" receberá um valor da lista. ", - "-334040831": "2. Neste exemplo, as instruções são repetidas desde que o valor de x seja maior ou igual a 10. Quando o valor de x cai abaixo de 10, o loop é encerrado.", - "-444267958": "O bloco \"Segundos desde Epoch\" retorna o número de segundos desde 1º de janeiro de 1970.", - "-447522129": "Pode ser necessário quando você deseja repetir uma série de ações após um certo período de tempo.", - "-1488259879": "O termo \"vela\" refere-se a cada barra no gráfico de velas. Cada vela representa quatro preços de mercado para o intervalo de tempo selecionado:", - "-2020693608": "Cada Vela-Stick no gráfico representa 4 preços de mercado para o intervalo de tempo selecionado:", - "-62728852": "- Preço de abertura: o preço de abertura", - "-1247744334": "- Preço baixo: o preço mais baixo", - "-1386365697": "- Preço de fechamento: o preço de fechamento", - "-1498732382": "Uma vela preta (ou vermelha) indica que o preço de abertura é mais alto que o preço de fechamento. Isso representa um movimento descendente do preço de mercado.", - "-1871864755": "Este bloco fornece o último dígito do último valor de tick do mercado selecionado. Se o valor mais recente do tick for 1410,90, esse bloco retornará 0. É útil para contratos baseados em dígitos, como Par/Ímpar, Combina/Difere ou Superior/Inferior.", - "-1029671512": "Caso a operação \"OR\" seja selecionada, o bloco retornará \"Verdadeiro\", caso um ou ambos os valores fornecidos sejam \"Verdadeiro\"", - "-210295176": "Operações disponíveis:", - "-1385862125": "- Adição", - "-983721613": "- Subtração", - "-854750243": "- Multiplicação", - "-1394815185": "Caso o número fornecido seja menor que o limite inferior do intervalo, o bloco retornará o valor do limite inferior. Da mesma forma, se o número fornecido for maior que o limite mais alto, o bloco retornará o valor do limite mais alto. Caso o valor especificado esteja entre os limites, o bloco retornará o valor especificado inalterado.", - "-1034564248": "No exemplo abaixo, o bloco retorna o valor 10, pois o valor fornecido (5) é menor que o limite inferior", - "-2009817572": "Este bloco executa as seguintes operações para um determinado número", - "-671300479": "As operações disponíveis são:", - "-514610724": "- Absoluto", - "-1923861818": "- número de Euler (2,71) à potência de um determinado número", - "-1556344549": "Veja como:", - "-1061127827": "- Visite a seguinte URL, substitua pelo token da Telegram API que você criou na Etapa 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. Volte ao DBot e adicione o bloco Notificar Telegram à área de trabalho. Cole o token da API do Telegram e o ID do bate-papo nos campos do bloco de acordo.", - "-311389920": "Neste exemplo, os preços em aberto de uma lista de velas são atribuídos a uma variável chamada \"cl\".", - "-1634242212": "Usado dentro de um bloco de funções, esse bloco retorna um valor quando uma condição específica é verdadeira.", - "-1504783522": "Você pode optar por ver um dos seguintes:", - "-10612039": "- Lucro: o lucro que você obteve", - "-555996976": "- Horário de entrada: a hora de início do contrato", - "-1391071125": "- Hora de saída: a hora de vencimento do contrato", - "-1961642424": "- Valor de saída: o valor do último tick do contrato", - "-111312913": "- Barreira: o valor da barreira do contrato (aplicável a tipos de negociação baseados em barreiras, como Fica entre/fora, Toca/Não toca, etc.)", - "-674283099": "- Resultado: o resultado do último contrato: \"vitória\" ou \"perda\"", - "-704543890": "Esse bloco fornece o valor de vela selecionado, como preço de abertura, preço de fechamento, preço alto, preço baixo e tempo de abertura. Requer uma vela como parâmetro de entrada.", - "-482281200": "No exemplo abaixo, o preço em aberto é atribuído à variável \"op\".", - "-364621012": "Este bloco fornece o valor especificado da vela para um intervalo de tempo selecionado. Você pode escolher qual valor deseja:", - "-232477769": "- Aberto: o preço de abertura", - "-610736310": "Use este bloco para vender seu contrato pelo preço de mercado. A venda do seu contrato é opcional. Você pode optar por vender se a tendência do mercado for desfavorável.", - "-1307657508": "Esse bloco fornece o lucro ou perda potencial se você decidir vender seu contrato. Só pode ser usado dentro do bloco raiz \"Condições de Venda\".", - "-1921072225": "No exemplo abaixo, o contrato será vendido apenas se o lucro ou perda potencial for maior que a Entrada.", - "-955397705": "A SMA adiciona o preço de mercado a uma lista de ticks ou velas por vários períodos e divide a soma por esse número de períodos.", - "-1424923010": "onde n é o número de períodos.", - "-1835384051": "O que a SMA diz", - "-749487251": "A SMA serve como um indicador da tendência. Se a SMA apontar, o preço de mercado está aumentando e vice-versa. Quanto maior o número do período, mais suave é a linha SMA.", - "-1996062088": "Neste exemplo, cada ponto da linha SMA é uma média aritmética dos preços de fechamento nos últimos 10 dias.", - "-1866751721": "A lista de entrada aceita uma lista de ticks ou velas, enquanto período é o tempo do período especificado.", - "-1097076512": "Você pode comparar os valores de SMA calculados em cada execução de bot para identificar a direção da tendência do mercado. Como alternativa, você também pode usar uma variação do bloco SMA, o bloco Matriz de Média Móvel Simples. ", - "-1254849504": "Se um período de 10 for inserido, o bloco Matriz Média Móvel Simples retornará uma lista de valores SMA calculados com base no período de 10.", - "-859028989": "Neste exemplo, a data e a hora serão exibidas em uma caixa de notificação verde.", - "-1452086215": "Neste exemplo, um contrato de Sobe será adquirido à meia-noite de 1 de agosto de 2019.", - "-2078588404": "Selecione o mercado e o tipo de ativo desejados. Por exemplo, Forex > Pares principais > AUD/JPY", - "-2037446013": "2. Tipo de negociação", - "-533927844": "Selecione o tipo de negociação desejada. Por exemplo, Acima/Abaixo > Sobe/Desce", - "-1192411640": "4. Intervalo de Vela Padrão", - "-485434772": "8. Opções de negociação", - "-1827646586": "Este bloco atribui um determinado valor a uma variável, criando a variável se ela ainda não existir.", "-1687036846": "Download bloco", "-1266781295": "Expandir", "-894560707": "função", diff --git a/packages/translations/src/translations/ru.json b/packages/translations/src/translations/ru.json index c9a0fba6960a..b29cab452e86 100644 --- a/packages/translations/src/translations/ru.json +++ b/packages/translations/src/translations/ru.json @@ -7,7 +7,6 @@ "11872052": "Да, я вернусь позже", "14365404": "Ошибка запроса для: {{ message_type }}, повторная попытка через {{ delay }} сек.", "15377251": "Размер прибыли: {{profit}}", - "17217397": "Криптовалюта", "17843034": "Проверить статус верификации документа, удостоверяющего личность", "21035405": "Расскажите, почему вы уходите. (Выберите до {{ allowed_reasons }} причин).", "25854018": "Этот блок отображает сообщения в консоли разработчика с вводом, который может быть строкой текста, числом, логическим значением или массивом данных.", @@ -22,6 +21,7 @@ "46523711": "Ваше подтверждение личности принято", "49963458": "Выбрать", "54185751": "Менее $100 000", + "55340304": "Оставить текущий контракт?", "55916349": "Все", "58254854": "Сфера действия", "59169515": "Если вы выбираете \"Азиатские – Повышение\", вы выигрываете, если последняя котировка окажется выше, чем общее среднее значение котировок.", @@ -61,7 +61,6 @@ "111931529": "Макс. общая ставка за 7 дней", "113378532": "ETH/USD", "113884303": "Немецкий Индекс", - "113933902": "Скачать приложение Deriv X", "115032488": "Цена покупки и П/У", "116005488": "Индикаторы", "117318539": "Пароль должен состоять из заглавных, строчных латинских букв и цифр.", @@ -163,7 +162,6 @@ "270339490": "Если вы выбираете \"Больше\", вы выигрываете, если последняя десятичная последней котировки будет больше вашего прогноза.", "270610771": "В этом примере цена открытия свечи присваивается переменной \"candle_open_price\".", "270712176": "нисходящий", - "270727821": "Фондовые индексы", "270780527": "Вы достигли лимита на загрузку документов.", "272179372": "Этот блок обычно используется для настройки параметров вашего следующего контракта и применения функции стоп лосс/тейк профит.", "273350342": "Скопируйте и вставьте ключ в приложение.", @@ -197,7 +195,6 @@ "317601768": "Темы", "318865860": "закрыть", "318984807": "Этот блок повторяет находящиеся в нем инструкции указанное количество раз.", - "319538091": "DMT5 Финансовый STP", "323179846": "Временной интервал каждой свечи может быть установлен от одной минуты до одного дня.", "323209316": "Выберите стратегию бота Deriv", "325662004": "Развернуть блок", @@ -248,7 +245,6 @@ "384303768": "Этот блок возвращает значение “Верно”, если последняя свеча черная. Блок может быть размещен где угодно, за исключением корневого блока параметров контракта.", "386502387": "Бот не запущен", "389923099": "Увеличить", - "390647540": "Реальный счет", "390890891": "Последний квартал", "391915203": "Хеджирование", "392582370": "Падение равно", @@ -256,7 +252,6 @@ "396961806": "Мы не поддерживаем пополнение в токенах Polygon (Matic), используйте только Ethereum ({{token}}).", "399387585": "Для получения подробной информации проверьте свою электронную почту. Если у вас появятся какие-либо вопросы, пожалуйста, обратитесь в <0>Центр поддержки.", "401339495": "Подтвердить адрес", - "402343402": "Из-за неполадок на нашем сервере некоторые из ваших счетов {{platform}} в настоящее время недоступны. Мы работаем над устранением проблемы. Приносим свои извинения и благодарим за понимание.", "403456289": "Формула SMA:", "404743411": "Общая сумма пополнения", "406359555": "Детали контракта", @@ -271,6 +266,7 @@ "427134581": "Попробуйте использовать другой тип файла.", "427617266": "Bitcoin", "428709688": "Предпочтительный интервал времени между отчетами:", + "432508385": "Тейк профит: {{ currency }} {{ take_profit }}", "432519573": "Документ загружен", "433348384": "Реальные счета недоступны для политически значимых лиц (ПЗЛ).", "433616983": "2. Этап рассмотрения", @@ -326,7 +322,6 @@ "505793554": "последняя буква", "510815408": "Только буквы, цифры, пробелы, дефисы", "514031715": "список {{ input_list }} пуст", - "514776243": "Пароль вашего {{account_type}} счета был изменен.", "514948272": "Копировать ссылку", "518955798": "7. Запустить один раз в начале", "520136698": "Индекс Boom 500", @@ -438,7 +433,6 @@ "659482342": "Помните, что вы несете ответственность за то, чтобы ваши ответы были точными и актуальными. Вы можете обновить личные данные в любое время в настройках счета.", "660481941": "Чтобы получить доступ к мобильным приложениям и другим сторонним приложениям, вам сначала необходимо сгенерировать ключ API.", "660991534": "Завершить", - "662609119": "Загрузить приложение MT5", "665089217": "Пожалуйста, отправьте свое <0>удостоверение личности для аутентификации счета и доступа к кассе.", "665777772": "XLM/USD", "665872465": "В приведенном ниже примере выбирается цена открытия, которая затем присваивается переменной с именем \"цо\".", @@ -590,6 +584,7 @@ "872957901": "Темная (Скоро на DBot)", "873166343": "1. 'Журнал' отображает обычное сообщение.", "874461655": "Отсканируйте QR-код со своего телефона", + "874484887": "Тейк профит должен быть положительным числом.", "875532284": "Повторите процесс на другом устройстве", "876086855": "Заполните форму финансовой оценки", "876292912": "Выход", @@ -637,7 +632,6 @@ "947046137": "Ваш вывод будет обработан в течение 24 часов.", "947363256": "Создать список", "947758334": "Необходимо указать город", - "948156236": "Создать {{type}} пароль", "949859957": "Подтвердить", "952655566": "Платёжный агент", "956448295": "Обнаружено обрезанное изображение", @@ -765,7 +759,6 @@ "1129124569": "Если вы выбираете \"Ниже\", вы выигрываете, если последняя десятичная последней котировки будет ниже вашего прогноза.", "1129296176": "ВАЖНОЕ УВЕДОМЛЕНИЕ ДЛЯ ПОЛУЧЕНИЯ ВАШИХ СРЕДСТВ", "1129842439": "Пожалуйста, введите сумму тейк профит.", - "1129984312": "Банковский перевод", "1130744117": "Мы постараемся решить вашу жалобу в течение 10 рабочих дней. Мы проинформируем вас о результате, разъясним нашу позицию и предложим меры по исправлению ситуации, которые мы намерены предпринять.", "1130791706": "Нет", "1133651559": "Чат", @@ -878,6 +871,7 @@ "1293660048": "Макс. размер потерь в день", "1294756261": "Этот блок создает функцию, представляющую собой группу инструкций, которые могут быть выполнены в любое время. Разместите здесь другие блоки, чтобы выполнить любое действие, необходимое в вашей стратегии. После выполнения всех инструкций в функции бот продолжит работу с оставшимися блоками в вашей стратегии. Нажмите на поле «сделай что-нибудь», чтобы дать блоку/функции имя. Нажмите значок плюса, чтобы отправить значение (в виде именованной переменной) в вашу функцию.", "1295284664": "Чтобы продолжить, пожалуйста, примите <0>обновленные правила и условия.", + "1296380713": "Закрыть контракт", "1299479533": "8 часов", "1301668579": "Мы работаем над тем, чтобы в ближайшее время сделать этот функционал доступным. Если у вас есть другой счет, переключитесь на него, чтобы продолжить торговлю. Вы можете добавить Финансовый счет DMT5.", "1302691457": "Вид деятельности", @@ -921,7 +915,6 @@ "1346339408": "Менеджеры", "1347071802": "{{minutePast}}мин назад", "1348009461": "Пожалуйста, закройте позиции на следующих счетах Deriv X:", - "1349142948": "DMT5 Финансовый", "1349289354": "Отлично, это все, что нам нужно.", "1349295677": "в тексте {{ input_text }} получить подстроку от {{ position1 }} {{ index1 }} до {{ position2 }} {{ index2 }}", "1351152200": "Добро пожаловать на панель управления Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "с интервалом: %1", "1468308734": "Этот блок повторяет инструкции, пока заданное условие остается верным", "1468419186": "В настоящее время Deriv поддерживает вывод Tether USDT на кошелек Omni. Чтобы обеспечить успешную транзакцию, введите адрес кошелька, совместимого с токенами, которые вы хотите вывести. <0>Узнать больше", + "1469150826": "Тейк профит", "1469764234": "Ошибка Кассы", "1469814942": "- Деление", "1470319695": "Возвращает значение Верно или Неверно", @@ -1043,7 +1037,6 @@ "1502325741": "Пароль и адрес электронной почты не могут совпадать.", "1503618738": "- Номер контракта: номер/идентификатор контракта", "1505898522": "Загрузить стек", - "1506251760": "Кошельки", "1509570124": "{{buy_value}} (Купить)", "1509678193": "Образование", "1510075920": "Золото/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Срок действия вашей мобильной ссылки истечет через час.", "1577527507": "Необходимо указать причину открытия счета.", "1577612026": "Выберите папку", + "1579484521": "Центр трейдинга", "1580498808": "Найдено несколько лиц.", "1584109614": "Строка тиков Список", "1584936297": "XML-файл содержит неподдерживаемые элементы. Пожалуйста, перепроверьте или отредактируйте файл.", @@ -1107,6 +1101,7 @@ "1620278321": "Пароли, состоящие только из имен и фамилий, легко угадать", "1620346110": "Установить валюту", "1622662457": "Дата, с", + "1623706874": "Используйте этот блок, если хотите торговать с мультипликаторами.", "1630372516": "Открыть Fiat onramp", "1630417358": "Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать вывод средств.", "1634594289": "Выберите язык", @@ -1126,6 +1121,7 @@ "1651513020": "Показать оставшееся время для каждого интервала", "1651951220": "Повторения типа \"abcabcabc\" угадать немногим сложнее, чем \"abc\"", "1652366857": "получить и удалить", + "1652968048": "Задайте параметры контракта, такие как мультипликатор и ставка.", "1652976865": "В этом примере этот блок используется с другим блоком, чтобы получить цены открытия из списка свечей. Затем цены открытия присваиваются переменной \"cl\".", "1653136377": "скопировано!", "1653159197": "Вывод через платежного агента", @@ -1142,6 +1138,7 @@ "1665738338": "Баланс", "1665756261": "Перейти в чат", "1667395210": "Документ, удостоверяющий вашу личность, получен", + "1670016002": "Мультипликатор: {{ multiplier }}", "1670426231": "Время окончания", "1671232191": "Вы установили следующие лимиты:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Отказ от ответственности", "1736292549": "Обновить индекс", "1737352280": "Bot.init не вызывается", - "1738504192": "Электронный кошелёк", "1738681493": "При необходимости снимите очки.", "1739384082": "Безработный", "1740371444": "Не выбран актив", @@ -1250,7 +1246,6 @@ "1820332333": "Пополнить", "1824193700": "Этот блок отображает значение последней десятичной последнего тика.", "1827607208": "Файл не загружен.", - "1828994348": "DMT5 недоступен в {{country}}", "1832974109": "SmartTrader", "1833481689": "Разблокировать", "1837762008": "Пожалуйста, предоставьте удостоверение личности и подтверждение адреса в настройках счета, чтобы подтвердить свой счет и получить доступ к кассе.", @@ -1308,7 +1303,6 @@ "1887852176": "Сайт обновляется", "1889357660": "Введите значение в минутах, до 60480 минут (эквивалент 6 недель).", "1890171328": "Обратите внимание, что, нажимая на кнопку Согласен внизу и переходя к открытию счета, вы можете подвергать себя различным рискам (которые иногда могут быть значительными, включая риск потери всей инвестированной суммы), для оценки и смягчения которых у вас может не быть достаточных знаний или опыта.", - "1890284485": "Открыть DTrader", "1890332321": "Возвращает количество символов заданной строки текста, включая цифры, пробелы, знаки пунктуации и символы.", "1894667135": "Пожалуйста, предоставьте подтверждение адреса", "1898670234": "{{formatted_opening_time}} (GMT) в {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Добавить или настроить счет", "1973536221": "У вас пока нет открытых позиций.", "1982912252": "Индекс относительной силы (RSI) из списка с периодом", + "1983001416": "Задайте параметры контракта, такие как мультипликатор и ставка. Этот блок можно использовать только в контрактах с мультипликаторами. Если вы выберете другой тип контракта, блок будет заменен стандартным блоком Параметры контракта.", "1983387308": "Предварительный просмотр", "1983544897": "Не указывайте почтовый ящик в строке адреса.", "1983676099": "Пожалуйста, проверьте свою электронную почту.", @@ -1491,7 +1486,6 @@ "2138861911": "Сканы и ксерокопии не принимаются", "2139171480": "Reset Вверх/Reset Вниз", "2139362660": "левая сторона", - "2141055709": "Новый {{type}} пароль", "2143803283": "Ошибка покупки", "2144609616": "Если вы выбираете \"Reset-Вниз\", вы получаете выплату, если спот-котировка на выходе будет строго ниже входной спот-котировки или котировки на момент Reset.", "2145690912": "Заработок", @@ -1948,7 +1942,6 @@ "-582721696": "Разрешенная сумма вывода сейчас составляет от {{format_min_withdraw_amount}} до {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "больше", "-1684548351": "Перейти на крипто счет", - "-1345040662": "Ищете способ купить криптовалюту?", "-197251450": "Не хотите торговать в {{currency_code}}? Вы можете открыть другой криптовалютный счет.", "-212277385": "Вы больше не можете изменить валюту счета, потому что вы пополнили фиатный счет или открыли реальный счет DMT5 или Deriv X. Пожалуйста, свяжитесь с нами через <0>чат для получения разъяснений.", "-1900848111": "Это ваш счет {{currency_code}}.", @@ -2022,6 +2015,7 @@ "-811190405": "Время", "-2004264970": "Адрес вашего кошелька должен содержать от 25 до 64 символов.", "-1707299138": "Адрес вашего кошелька {{currency_symbol}}", + "-1179992129": "Все платежные агенты", "-922432739": "Пожалуйста, введите правильное ID (логин) клиента.", "-1024241603": "Недостаточно средств на счете.", "-1979554765": "Пожалуйста, введите правильное описание.", @@ -2033,7 +2027,6 @@ "-1388977563": "Скопировано!", "-1962894999": "Этот адрес можно использовать только ОДИН РАЗ. Сгенерируйте новый адрес для следующей транзакции.", "-451858550": "Нажав \"Продолжить\", вы перейдете на сайт {{ service }}, стороннего поставщика платежных услуг. Обратите внимание, что {{ website_name }} не несет ответственности за контент или услуги, предоставляемые {{ service }}. Если во время использования {{ service }} у вас возникнут какие-либо проблемы, вам нужно будет связаться с {{ service }} напрямую.", - "-1179992129": "Все платежные агенты", "-344959847": "Платежный агент уполномочен обрабатывать для вас пополнения и вывод средств, если ваши местные способы оплаты или валюты не поддерживаются на {{website_name}}.", "-1232852916": "Мы переключаемся на ваш счет {{currency}}, чтобы просмотреть транзакцию.", "-38063175": "{{account_text}} кошелек", @@ -2056,6 +2049,7 @@ "-1615615253": "Мы не поддерживаем пополнение в токенах Tron, используйте только Ethereum ({{token}}).", "-1831000957": "Пожалуйста, выберите сеть, из которой поступит пополнение.", "-314177745": "К сожалению, из-за проблем на сервере мы не смогли получить адрес. Нажмите 'Обновить', чтобы обновить адрес, или повторите попытку позже.", + "-1345040662": "Ищете способ купить криптовалюту?", "-2005265642": "Fiat onramp - это сервис, который позволяет конвертировать фиатные валюты в криптовалюты для пополнения ваших счетов Deriv. Это список сторонних криптобирж. Вам нужно будет создать на них учетную запись, чтобы пользоваться их услугами.", "-1593063457": "Выберите платежный канал", "-130833284": "Обратите внимание, что ваши лимиты на максимальный и минимальный вывод средств не фиксированы. Они меняются из-за высокой волатильности криптовалюты.", @@ -2093,6 +2087,8 @@ "-1354485738": "Reset Колл", "-376148198": "Только вверх", "-1337379177": "Высокий тик", + "-328036042": "Пожалуйста, введите сумму стоп лосс, превышающую текущий потенциальный убыток.", + "-2127699317": "Неправильный стоп лосс. Стоп лосс не может быть больше, чем ставка.", "-1940333322": "DBot недоступен для этого счета", "-1210387519": "Перейти на панель DMT5", "-1223145005": "Размер убытка: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Максимальная длительность: {{ max }}", "-1194719174": "Размер мультипликатора, используемого для увеличения вашей ставки, если рынок движется не в вашу пользу.", "-749186458": "Переключение между счетами невозможно во время работы вашего бота. Пожалуйста, остановите бота, если хотите сменить счет.", + "-662836330": "Хотите оставить текущий контракт или закрыть его? Если решите оставить контракт, то сможете проверить и закрыть его позже на странице <0>отчеты.", + "-597939268": "Оставить контракт", "-1322453991": "Чтобы запустить робота, вам нужно войти в систему.", "-1483938124": "Эта стратегия в настоящее время несовместима с DBot.", + "-236548954": "Ошибка обновления контракта", "-1428017300": " ", "-1450728048": "О", "-255051108": "ВЫ", "-1845434627": "ЯВЛЯЕТСЯ", "-931434605": "ЭТО", "-740712821": " ", + "-187634388": "Этот блок является обязательным. Здесь вы можете решить, следует ли боту продолжать торговлю. Допускается только одна копия этого блока.", + "-2105473795": "Единственный входной параметр определяет, как будут отформатированы выходные данные блока. Если входным параметром является «строка», то на выходе будет добавлена валюта счета.", + "-1800436138": "2. в формате числа: 1325.68", + "-2046396241": "Этот блок является обязательным и по умолчанию добавляется на рабочее пространство, когда вы открываете DBot. Допускается только одна копия этого блока.", + "-530632460": "Этот блок определяет, движется ли рыночная цена в выбранном направлении. Блок возвращает значение «Верно» или «Неверно».", + "-1875717842": "Примеры:", + "-890079872": "1. Если выбрано направление «Повышение», а предыдущее значение тика меньше текущего значения тика, будет отображено «Верно». В противном случае будет отображена пустая строка.", + "-489739641": "2. Если выбрано направление «Падение», а предыдущее значение тика выше текущего значения тика, будет отображено «Верно». В противном случае будет отображена пустая строка.", + "-2116076360": "Существует 4 типа сообщений:", + "-1421941045": "2. «Предупредить» отображает сообщение желтым цветом, чтобы выделить то, что требует внимания.", + "-277850921": "Если выбран «Прибыль», он вернет «Верно», если ваш последний контракт был успешным. В противном случае он вернет пустую строку.", + "-1918487001": "Пример:", + "-2139916657": "1. В приведенном ниже примере цикл завершается в случае, если «x» равен «Неверно», хотя завершено только одно повторение", + "-1238900333": "2. В приведенном ниже примере цикл переходит на следующее повторение без выполнения блока ниже, если \"x\" равен \"Неверно\"", + "-1729479576": "Вы можете использовать \"i\" внутри цикла, например, для доступа к элементам списка", + "-1474636594": "В этом примере цикл будет повторяться три раза, так как это количество элементов в данном списке. Во время каждого выполнения переменной \"i\" будет присвоено значение из списка. ", + "-908772734": "Этот блок оценивает инструкцию и будет выполнять действие только тогда, когда инструкция верна.", + "-334040831": "2. В этом примере инструкции повторяются до тех пор, пока значение x больше или равно 10. Как только значение x падает ниже 10, цикл прерывается.", + "-444267958": "Блок \"Секунды с начала эпохи Unix\" возвращает количество секунд с 1 января 1970 года.", + "-447522129": "Это может понадобиться, если вы захотите повторить действия через определенное время.", + "-1488259879": "Термин \"свеча\" относится к каждому столбику на свечном графике. Каждая свеча представляет четыре рыночные цены за выбранный интервал времени:", + "-2020693608": "Каждая свеча на графике представляет 4 рыночные цены за выбранный временной интервал:", + "-62728852": "- Открытие: цена на момент открытия", + "-1247744334": "- Минимум: самая низкая цена за выбранный период", + "-1386365697": "- Закрытие: цена на момент закрытия", + "-1498732382": "Черная (или красная) свеча означает, что цена открытия выше, чем цена закрытия. Это указывает на нисходящее движение рыночной цены.", + "-1871864755": "Этот блок отображает последнюю десятичную последнего значения тика выбранного рынка. Если значение последнего тика равно 1410.90, этот блок вернет 0. Блок полезен для цифровых контрактов, таких как Четное/Нечетное, Совпадение/Отличие или Выше/Ниже.", + "-1029671512": "Если выбрана операция «ИЛИ», блок возвращает «Верно», если одно или оба заданных значения «Верны»", + "-210295176": "Доступные операции:", + "-1385862125": "- Сложение", + "-983721613": "- Вычитание", + "-854750243": "- Умножение", + "-1394815185": "В случае, если заданное число меньше нижней границы диапазона, блок возвращает значение нижней границы. Если заданное число больше, чем верхняя граница, блок вернет значение верхней границы. В случае, если заданное значение находится между границами, блок вернет заданное значение без изменений.", + "-1034564248": "В приведенном ниже примере блок возвращает значение 10, поскольку заданное значение (5) меньше нижней границы (10).", + "-2009817572": "Этот блок выполняет следующие операции с заданным числом", + "-671300479": "Доступные операции:", + "-514610724": "- Абсолютная величина", + "-1923861818": "- число Эйлера (2,71) до степени заданного числа", + "-1556344549": "Вот как это сделать:", + "-1061127827": "- Пройдите по следующей ссылке и замените токеном Telegram API, созданным на шаге 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. Вернитесь в DBot и добавьте блок \"Уведомить в Telegram\" на рабочую область. Вставьте токен Telegram API и ID чата в соответствующие поля блока.", + "-311389920": "В этом примере цены открытия из списка свечей присваиваются переменной с именем \"cl\".", + "-1460794449": "Этот блок выдает список свечей из выбранного временного интервала.", + "-1634242212": "Используемый в блоке функций, этот блок возвращает значение, когда \nвыполняется определенное условие.", + "-2012970860": "Этот блок отображает информацию о последнем контракте.", + "-1504783522": "Вы можете выбрать и отобразить один из следующих вариантов:", + "-10612039": "- Прибыль: прибыль, которую вы заработали", + "-555996976": "- Время начала: время начала контракта", + "-1391071125": "- Время окончания: время истечения контракта", + "-1961642424": "- Выходное значение: значение последнего тика контракта", + "-111312913": "- Барьер: значение барьера в контракте (применимо к барьерным типам контрактов, таким как \"останется внутри/вне\", \"касание/нет касания\" и т.д.)", + "-674283099": "- Результат: результат последнего контракта: \"выигрыш\" или \"проигрыш\"", + "-704543890": "Этот блок отображает выбранное значение свечи, например, цену открытия, цену закрытия, максимальную цену, минимальную цену и время открытия. Свеча является требуемым входным параметром.", + "-482281200": "В приведенном ниже примере цена открытия присваивается переменной \"op\".", + "-364621012": "Этот блок отображает нужное вам значение свечи в выбранном временном интервале. Вы можете выбрать одно из следующих значений:", + "-232477769": "- Открытие: цена на момент открытия", + "-610736310": "Используйте этот блок, чтобы продать контракт по рыночной цене. Продажа контракта является опцией, которой вы можете воспользоваться при неблагоприятном направлении рынка.", + "-1307657508": "Этот блок отображает размер потенциальной прибыли или убытка в случае продажи контракта. Его можно использовать только в корневом блоке \"Условия продажи\".", + "-1921072225": "В приведенном ниже примере контракт будет продан только в том случае, если потенциальная прибыль или убыток больше, чем ставка.", + "-955397705": "SMA складывает рыночные цены из списка тиков или свечей за определенное количество временных периодов и делит полученную сумму на количество этих временных периодов.", + "-1424923010": "где n - количество периодов.", + "-1835384051": "О чем может сказать SMA", + "-749487251": "SMA является индикатором тренда. Если SMA указывает вверх, то рыночная цена растет, и наоборот. Чем больше количество периодов, тем более гладкая линия SMA.", + "-1996062088": "В этом примере каждая точка линии SMA является средним арифметическим значением цен закрытия за последние 10 дней.", + "-1866751721": "Входной список принимает список тиков или свечей. Период - выбранный временной период.", + "-1097076512": "Вы можете сравнивать значения SMA при каждом запуске бота, чтобы определить направление рыночного тренда. Вы также можете использовать вариацию блока SMA - блок массива простых СС (SMAA). ", + "-1254849504": "Если введен период 10, блок массива простых СС вернет список значений SMA, рассчитанных на основе периода 10.", + "-1190046167": "Этот блок отображает диалоговое окно с настроенным сообщением. Когда отобразится диалоговое окно, ваша стратегия будет приостановлена и возобновится только после того, как вы нажмете «ОК».", + "-859028989": "В этом примере дата и время будут отображаться в зеленом окне уведомлений.", + "-1452086215": "В этом примере контракт \"Выше\" будет куплен в полночь 1 августа 2019 года.", + "-1765276625": "Щелкните раскрывающееся меню мультипликаторов и выберите тот, который хотите применить.", + "-1872233077": "Ваша потенциальная прибыль будет умножена на выбранный мультипликатор.", + "-614454953": "Более подробную информацию об этом типе контрактов можно найти на странице <0>Мультипликаторы.", + "-2078588404": "Выберите нужный рынок и актив. Например, Forex > Основные пары > AUD/JPY", + "-2037446013": "2. Тип контракта", + "-533927844": "Выберите нужный тип контракта. Например, Вверх/Вниз > Повышение/Падение", + "-1192411640": "4. Интервал свечи по умолчанию", + "-485434772": "8. Параметры контракта", + "-1827646586": "Этот блок присваивает заданное значение переменной, создавая переменную, если она еще не существует.", "-254421190": "Список: ({{message_length}})", "-9461328": "Безопасность и конфиденциальность", "-418247251": "Загрузить журнал.", @@ -2209,17 +2287,6 @@ "-398198412": "Торгуйте на Deriv MT5 (DMT5), универсальной платформе для FX и CFD.", "-1793883644": "Торгуйте FX и CFD на гибкой и простой торговой платформе.", "-1246992539": "Binary Bot", - "-563774117": "Панель", - "-773544978": "Главная", - "-1003047246": "Мои приложения", - "-2024365882": "Открыть", - "-2038666662": "О нас", - "-832198631": "Кредитная/дебетовая карта", - "-1787820992": "Платформы", - "-837532140": "Типы контрактов", - "-663862998": "Рынки", - "-947407631": "Синтетические индексы", - "-362324454": "Сырьевые товары", "-821418875": "Трейдер", "-1309011360": "Открытые позиции", "-679102561": "Детали контракта", @@ -2317,41 +2384,47 @@ "-618539786": "Ваш счет будет закрыт", "-945275490": "Выведите все средства со счета для опционов.", "-705744796": "Баланс вашего демо-счета достиг максимального лимита, и вы не сможете совершать новые сделки. Сбросьте баланс, чтобы продолжить торговлю с демо-счета.", - "-2067423661": "Безопасность вашего счета Deriv", - "-1719731099": "Благодаря двухфакторной аутентификации ваш счет будет защищен не только паролем, но и вашим телефоном, поэтому только вы сможете получить доступ к счету, даже если кто-то знает ваш пароль.", - "-1738575826": "Переключитесь на реальный счет или создайте его, чтобы получить доступ к кассе.", + "-1585069798": "Перейдите по следующей ссылке, чтобы пройти тест на соответствие.", + "-1287141934": "Узнать больше", + "-367759751": "Ваш счет не подтвержден", + "-596690079": "Вам нравится Deriv?", + "-265932467": "Мы хотели бы узнать ваше мнение", + "-1815573792": "Оставьте отзыв на Trustpilot.", + "-823349637": "На Trustpilot", "-1204063440": "Установить валюту счета", + "-1164554246": "Вы предоставили просроченные документы, удостоверяющие личность", + "-219846634": "Давайте верифицируем ваше удостоверение личности", + "-529038107": "Установить", + "-87149410": "Установите веб-приложение DTrader", + "-1738575826": "Переключитесь на реальный счет или создайте его, чтобы получить доступ к кассе.", + "-1329329028": "Вы не установили 30-дневный лимит на оборот счета.", + "-132893998": "Ваш доступ к кассе был временно заблокирован, так как вы не установили 30-дневный лимит на оборот счета. Перейдите на страницу самоисключения и установите этот лимит.", + "-1852207910": "Вывод средств MT5 отключен", + "-764323310": "На вашем счете MT5 отключен вывод средств. Проверьте свою электронную почту для получения более подробной информации.", + "-1435762703": "Пожалуйста, подтвердите свою личность", + "-1902997828": "Обновить сейчас", + "-753791937": "Доступна новая версия Deriv", + "-1775108444": "Эта страница автоматически обновится через 5 минут для загрузки последней версии.", + "-1175685940": "Свяжитесь с нами через чат, чтобы активировать вывод средств.", + "-1125797291": "Пароль обновлен.", + "-157145612": "Пожалуйста, войдите на счет, используя обновленный пароль.", + "-87177461": "Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать пополнение счета.", + "-904632610": "Сбросьте баланс", + "-470018967": "Сбросить баланс", + "-156611181": "Пройдите финансовую оценку в настройках счета, чтобы разблокировать ее.", "-1925176811": "Сейчас мы не можем обработать вывод средств", "-980696193": "Вывод средств временно недоступен из-за технического обслуживания системы. Вы можете вывести средства после завершения работ.", "-1647226944": "Сейчас мы не можем обработать пополнение счета", "-488032975": "Пополнение счета временно недоступно из-за технического обслуживания системы. Вы можете пополнить счет после завершения работ.", "-67021419": "Касса временно не работает из-за технического обслуживания системы. Вы сможете получить доступ к кассе через несколько минут после завершения обслуживания.", - "-219846634": "Давайте верифицируем ваше удостоверение личности", - "-367759751": "Ваш счет не подтвержден", - "-1175685940": "Свяжитесь с нами через чат, чтобы активировать вывод средств.", - "-1852207910": "Вывод средств MT5 отключен", - "-764323310": "На вашем счете MT5 отключен вывод средств. Проверьте свою электронную почту для получения более подробной информации.", - "-1585069798": "Перейдите по следующей ссылке, чтобы пройти тест на соответствие.", - "-1329329028": "Вы не установили 30-дневный лимит на оборот счета.", - "-132893998": "Ваш доступ к кассе был временно заблокирован, так как вы не установили 30-дневный лимит на оборот счета. Перейдите на страницу самоисключения и установите этот лимит.", - "-156611181": "Пройдите финансовую оценку в настройках счета, чтобы разблокировать ее.", "-849587074": "Вы не указали свой идентификационный номер налогоплательщика", "-47462430": "Эта информация необходима для соблюдения правовых и нормативных требований. Перейдите в настройки счета и введите свой актуальный ИНН.", - "-87177461": "Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать пополнение счета.", + "-2067423661": "Безопасность вашего счета Deriv", + "-1719731099": "Благодаря двухфакторной аутентификации ваш счет будет защищен не только паролем, но и вашим телефоном, поэтому только вы сможете получить доступ к счету, даже если кто-то знает ваш пароль.", + "-822888359": "Вывод средств заблокирован", + "-1197701578": "Отправьте подтверждение личности еще раз и завершите финансовую оценку в настройках счета, чтобы разблокировать его.", "-2087822170": "Вы оффлайн", "-1669693571": "Проверьте подключение к интернету.", - "-1125797291": "Пароль обновлен.", - "-157145612": "Пожалуйста, войдите на счет, используя обновленный пароль.", - "-904632610": "Сбросьте баланс", - "-470018967": "Сбросить баланс", - "-1435762703": "Пожалуйста, подтвердите свою личность", - "-1164554246": "Вы предоставили просроченные документы, удостоверяющие личность", - "-1902997828": "Обновить сейчас", - "-753791937": "Доступна новая версия Deriv", - "-1775108444": "Эта страница автоматически обновится через 5 минут для загрузки последней версии.", - "-529038107": "Установить", - "-87149410": "Установите веб-приложение DTrader", - "-1287141934": "Узнать больше", "-1998049070": "Если вы согласны на использование нами файлов cookie, нажмите Принять. Для получения дополнительной информации <0>см. нашу политику.", "-1721181859": "Вам понадобится счет {{deriv_account}}", "-1989074395": "Пожалуйста, добавьте счет {{deriv_account}}, прежде чем открыть счет {{dmt5_account}}. Пополнения и выводы со счета {{dmt5_label}} осуществляются переводом средств на ваш счет {{deriv_label}} и обратно.", @@ -2386,6 +2459,7 @@ "-1950045402": "Выведите все средства", "-168971942": "Что это значит для вас", "-905560792": "ОК, все понятно", + "-2024365882": "Открыть", "-1197864059": "Открыть демо-счёт", "-1485242688": "Шаг {{step}}: {{step_title}} ({{step}} из {{steps}})", "-1829842622": "Вы можете открыть по одному счёту на каждую доступную криптовалюту.", @@ -2439,6 +2513,7 @@ "-1917706589": "Ваш счет Deriv больше не связан с {{social_identity_provider}}. Используйте email и пароль для входа в систему в будущем.", "-2017825013": "Понятно", "-505449293": "Введите новый пароль для вашего счета Deriv.", + "-1787820992": "Платформы", "-184713104": "Получайте фиксированные выплаты с опционами или торгуйте с мультипликаторами, чтобы увеличить прибыль при ограниченном риске.", "-1571775875": "Наша флагманская платформа для торговли опционами и мультипликаторами.", "-1107320163": "Автоматизированный трейдинг без программирования.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.Если решение будет принято в нашу пользу, вы должны предоставить нам отказ от претензий в течение 7 дней с момента принятия решения, и жалоба будет считаться закрытой.", "-429248139": "5. Оговорка", "-818926350": "Финансовая комиссия принимает жалобы в течение 45 дней с даты инцидента и только после того, как трейдер попытается решить проблему напрямую с компанией.", - "-236548954": "Ошибка обновления контракта", "-1282933308": "Не {{barrier}}", "-968190634": "Равно {{barrier}}", "-1747377543": "Под {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Цифровые", "-1790089996": "НОВИНКА!", "-590018519": "Контракт куплен", - "-328036042": "Пожалуйста, введите сумму стоп лосс, превышающую текущий потенциальный убыток.", - "-2127699317": "Неправильный стоп лосс. Стоп лосс не может быть больше, чем ставка.", "-405439829": "Вы не можете просмотреть этот контракт, так как он не принадлежит этому счету.", "-1714959941": "Этот график не идеален для тиковых контрактов", "-1254554534": "Пожалуйста, измените интервал на тик для более точного отображения.", @@ -2593,22 +2665,13 @@ "-584696680": "Если вы выберете «Тейк профит» и зададите сумму, которую хотите получить, ваша позиция будет закрыта автоматически, если прибыль больше или равна этой сумме. Ваша прибыль может оказаться больше, чем сумма, которую вы ввели, в зависимости от рыночной цены при закрытии.", "-178096090": "Невозможно обновить \"Тейк профит\" в данный момент. Вы можете обновить \"Тейк профит\" только по истечении действия \"Отмены сделки\".", "-206909651": "Спот-котировка на входе − это рыночная цена на момент обработки контракта нашим сервером.", - "-673424733": "Демо-счёт", - "-1066565281": "Технические работы на сервере начинаются в 06:00 GMT каждое воскресенье. Этот процесс может занять до 2 часов. Работа сервиса может прерываться в течение этого времени.", - "-1481390656": "Технические работы на сервере начинаются в 01:00 GMT каждое воскресенье. Этот процесс может занять до 2 часов. В это время сервисы и платформы могут быть недоступны.", - "-1199152768": "Попробуйте другие наши платформы.", - "-498346912": "Открыть DBot", + "-464262734": "Управление паролем реального счета {{account_title}} {{platform}}", "-2042845290": "Ваш инвесторский пароль изменен.", "-1882295407": "Ваш пароль изменен.", "-254497873": "Используйте этот пароль, чтобы предоставить другому пользователю доступ к просмотру. Они смогут просматривать ваш счет, но не смогут торговать или совершать какие-либо другие действия.", "-161656683": "Текущий инвесторский пароль", "-374736923": "Новый инвесторский пароль", "-1793894323": "Создать или сбросить инвесторский пароль", - "-464262734": "Управление паролем реального счета {{account_title}} {{platform}}", - "-1928229820": "Сбросить инвесторский пароль Deriv X", - "-1917043724": "Сбросить инвесторский пароль DMT5", - "-1087845020": "основной", - "-1950683866": "инвесторский", "-149836494": "Номер вашей транзакции: {{transaction_id}}", "-1382749084": "Вернуться к трейдингу", "-538215347": "Чистая сумма пополнения", @@ -2737,7 +2800,6 @@ "-1588406981": "Этим блоком можно проверить результат последнего контракта.", "-1459154781": "Детали контракта: {{ contract_detail }}", "-1652241017": "Считывает выбранный параметр из списка Деталей контракта", - "-2012970860": "Этот блок отображает информацию о последнем контракте.", "-2082345383": "Этот блок передает управление блоку условий покупки.", "-172574065": "Этот блок вернет управление блоку условий покупки, что позволит вам приобрести другой контракт.", "-403103225": "перезапустить", @@ -2780,7 +2842,6 @@ "-1556495906": "Возвращает список определенных значений из списка свечей в соответствии с выбранным временным интервалом", "-166816850": "Создать список значений свечей (1)", "-1261436901": "Список свечей", - "-1460794449": "Этот блок выдает список свечей из выбранного временного интервала.", "-1174859923": "Прочитать значение выбранной свечи", "-1972165119": "Прочитать значение свечи (1)", "-1956100732": "Вы можете использовать этот блок для анализа тиков, независимо от ваших контрактов", @@ -2830,10 +2891,13 @@ "-702370957": "Конвертировать в дату/время", "-982729677": "Преобразовать во временную метку", "-311268215": "Этот блок преобразует строку текста, которая представляет дату и время, в секунды с начала эпохи Unix (1 января 1970 года). Время и часовой пояс не являются обязательными. Пример: 2019-01-01 21:03:45 GMT + 0800 будет преобразовано в 1546347825.", + "-1797602591": "Стоп лосс: {{ currency }} {{ stop_loss }}", + "-1214929127": "Стоп лосс должен быть положительным числом.", + "-2142851225": "Параметры контракта с мультипликатором", + "-625636913": "Сумма должна быть положительным числом.", "-1466383897": "Длительность: {{ duration_unit }} {{ duration_value }}", "-440702280": "Параметры контракта", "-1193894978": "Определите параметры контракта, такие как длительность и ставка. Некоторые параметры применимы только для определенных типов контрактов.", - "-625636913": "Сумма должна быть положительным числом.", "-46523443": "Недопустимое значение длительности. Для запуска бота, пожалуйста, введите значение от {{min}} до {{max}}.", "-1483427522": "Тип контракта: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Параметры контракта", @@ -2841,7 +2905,6 @@ "-783173909": "Параметры контракта:", "-376956832": "Здесь вы определяете параметры вашего контракта.", "-1244007240": "если {{ condition }} то", - "-908772734": "Этот блок оценивает инструкцию и будет выполнять действие только тогда, когда инструкция верна.", "-1577206704": "иначе если", "-33796979": "верно", "-1434883449": "Это единичный блок, который возвращает логическое значение, верно или неверно.", @@ -2903,84 +2966,11 @@ "-1133072029": "Длина строки текста", "-1109723338": "напечатать {{ input_text }}", "-736668830": "Печать", - "-1190046167": "Этот блок отображает диалоговое окно с настроенным сообщением. Когда отобразится диалоговое окно, ваша стратегия будет приостановлена и возобновится только после того, как вы нажмете «ОК».", "-1821552998": "обрезать пробелы с {{ side }} из {{ input_text }}", "-801766026": "правая сторона", "-474779821": "Убирает пробелы", "-1219239717": "На вашей рабочей области отсутствуют один или несколько обязательных блоков. Пожалуйста, добавьте необходимые блоки и попробуйте снова.", "-250761331": "На вашей рабочей области отключен один или несколько обязательных блоков. Пожалуйста, включите необходимые блоки и попробуйте снова.", - "-187634388": "Этот блок является обязательным. Здесь вы можете решить, следует ли боту продолжать торговлю. Допускается только одна копия этого блока.", - "-2105473795": "Единственный входной параметр определяет, как будут отформатированы выходные данные блока. Если входным параметром является «строка», то на выходе будет добавлена валюта счета.", - "-1800436138": "2. в формате числа: 1325.68", - "-2046396241": "Этот блок является обязательным и по умолчанию добавляется на рабочее пространство, когда вы открываете DBot. Допускается только одна копия этого блока.", - "-530632460": "Этот блок определяет, движется ли рыночная цена в выбранном направлении. Блок возвращает значение «Верно» или «Неверно».", - "-1875717842": "Примеры:", - "-890079872": "1. Если выбрано направление «Повышение», а предыдущее значение тика меньше текущего значения тика, будет отображено «Верно». В противном случае будет отображена пустая строка.", - "-489739641": "2. Если выбрано направление «Падение», а предыдущее значение тика выше текущего значения тика, будет отображено «Верно». В противном случае будет отображена пустая строка.", - "-2116076360": "Существует 4 типа сообщений:", - "-1421941045": "2. «Предупредить» отображает сообщение желтым цветом, чтобы выделить то, что требует внимания.", - "-277850921": "Если выбран «Прибыль», он вернет «Верно», если ваш последний контракт был успешным. В противном случае он вернет пустую строку.", - "-1918487001": "Пример:", - "-2139916657": "1. В приведенном ниже примере цикл завершается в случае, если «x» равен «Неверно», хотя завершено только одно повторение", - "-1238900333": "2. В приведенном ниже примере цикл переходит на следующее повторение без выполнения блока ниже, если \"x\" равен \"Неверно\"", - "-1729479576": "Вы можете использовать \"i\" внутри цикла, например, для доступа к элементам списка", - "-1474636594": "В этом примере цикл будет повторяться три раза, так как это количество элементов в данном списке. Во время каждого выполнения переменной \"i\" будет присвоено значение из списка. ", - "-334040831": "2. В этом примере инструкции повторяются до тех пор, пока значение x больше или равно 10. Как только значение x падает ниже 10, цикл прерывается.", - "-444267958": "Блок \"Секунды с начала эпохи Unix\" возвращает количество секунд с 1 января 1970 года.", - "-447522129": "Это может понадобиться, если вы захотите повторить действия через определенное время.", - "-1488259879": "Термин \"свеча\" относится к каждому столбику на свечном графике. Каждая свеча представляет четыре рыночные цены за выбранный интервал времени:", - "-2020693608": "Каждая свеча на графике представляет 4 рыночные цены за выбранный временной интервал:", - "-62728852": "- Открытие: цена на момент открытия", - "-1247744334": "- Минимум: самая низкая цена за выбранный период", - "-1386365697": "- Закрытие: цена на момент закрытия", - "-1498732382": "Черная (или красная) свеча означает, что цена открытия выше, чем цена закрытия. Это указывает на нисходящее движение рыночной цены.", - "-1871864755": "Этот блок отображает последнюю десятичную последнего значения тика выбранного рынка. Если значение последнего тика равно 1410.90, этот блок вернет 0. Блок полезен для цифровых контрактов, таких как Четное/Нечетное, Совпадение/Отличие или Выше/Ниже.", - "-1029671512": "Если выбрана операция «ИЛИ», блок возвращает «Верно», если одно или оба заданных значения «Верны»", - "-210295176": "Доступные операции:", - "-1385862125": "- Сложение", - "-983721613": "- Вычитание", - "-854750243": "- Умножение", - "-1394815185": "В случае, если заданное число меньше нижней границы диапазона, блок возвращает значение нижней границы. Если заданное число больше, чем верхняя граница, блок вернет значение верхней границы. В случае, если заданное значение находится между границами, блок вернет заданное значение без изменений.", - "-1034564248": "В приведенном ниже примере блок возвращает значение 10, поскольку заданное значение (5) меньше нижней границы (10).", - "-2009817572": "Этот блок выполняет следующие операции с заданным числом", - "-671300479": "Доступные операции:", - "-514610724": "- Абсолютная величина", - "-1923861818": "- число Эйлера (2,71) до степени заданного числа", - "-1556344549": "Вот как это сделать:", - "-1061127827": "- Пройдите по следующей ссылке и замените токеном Telegram API, созданным на шаге 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. Вернитесь в DBot и добавьте блок \"Уведомить в Telegram\" на рабочую область. Вставьте токен Telegram API и ID чата в соответствующие поля блока.", - "-311389920": "В этом примере цены открытия из списка свечей присваиваются переменной с именем \"cl\".", - "-1634242212": "Используемый в блоке функций, этот блок возвращает значение, когда \nвыполняется определенное условие.", - "-1504783522": "Вы можете выбрать и отобразить один из следующих вариантов:", - "-10612039": "- Прибыль: прибыль, которую вы заработали", - "-555996976": "- Время начала: время начала контракта", - "-1391071125": "- Время окончания: время истечения контракта", - "-1961642424": "- Выходное значение: значение последнего тика контракта", - "-111312913": "- Барьер: значение барьера в контракте (применимо к барьерным типам контрактов, таким как \"останется внутри/вне\", \"касание/нет касания\" и т.д.)", - "-674283099": "- Результат: результат последнего контракта: \"выигрыш\" или \"проигрыш\"", - "-704543890": "Этот блок отображает выбранное значение свечи, например, цену открытия, цену закрытия, максимальную цену, минимальную цену и время открытия. Свеча является требуемым входным параметром.", - "-482281200": "В приведенном ниже примере цена открытия присваивается переменной \"op\".", - "-364621012": "Этот блок отображает нужное вам значение свечи в выбранном временном интервале. Вы можете выбрать одно из следующих значений:", - "-232477769": "- Открытие: цена на момент открытия", - "-610736310": "Используйте этот блок, чтобы продать контракт по рыночной цене. Продажа контракта является опцией, которой вы можете воспользоваться при неблагоприятном направлении рынка.", - "-1307657508": "Этот блок отображает размер потенциальной прибыли или убытка в случае продажи контракта. Его можно использовать только в корневом блоке \"Условия продажи\".", - "-1921072225": "В приведенном ниже примере контракт будет продан только в том случае, если потенциальная прибыль или убыток больше, чем ставка.", - "-955397705": "SMA складывает рыночные цены из списка тиков или свечей за определенное количество временных периодов и делит полученную сумму на количество этих временных периодов.", - "-1424923010": "где n - количество периодов.", - "-1835384051": "О чем может сказать SMA", - "-749487251": "SMA является индикатором тренда. Если SMA указывает вверх, то рыночная цена растет, и наоборот. Чем больше количество периодов, тем более гладкая линия SMA.", - "-1996062088": "В этом примере каждая точка линии SMA является средним арифметическим значением цен закрытия за последние 10 дней.", - "-1866751721": "Входной список принимает список тиков или свечей. Период - выбранный временной период.", - "-1097076512": "Вы можете сравнивать значения SMA при каждом запуске бота, чтобы определить направление рыночного тренда. Вы также можете использовать вариацию блока SMA - блок массива простых СС (SMAA). ", - "-1254849504": "Если введен период 10, блок массива простых СС вернет список значений SMA, рассчитанных на основе периода 10.", - "-859028989": "В этом примере дата и время будут отображаться в зеленом окне уведомлений.", - "-1452086215": "В этом примере контракт \"Выше\" будет куплен в полночь 1 августа 2019 года.", - "-2078588404": "Выберите нужный рынок и актив. Например, Forex > Основные пары > AUD/JPY", - "-2037446013": "2. Тип контракта", - "-533927844": "Выберите нужный тип контракта. Например, Вверх/Вниз > Повышение/Падение", - "-1192411640": "4. Интервал свечи по умолчанию", - "-485434772": "8. Параметры контракта", - "-1827646586": "Этот блок присваивает заданное значение переменной, создавая переменную, если она еще не существует.", "-1687036846": "Загрузить блок", "-1266781295": "Развернуть", "-894560707": "функция", diff --git a/packages/translations/src/translations/th.json b/packages/translations/src/translations/th.json index a712c43df0ca..091212383bc1 100644 --- a/packages/translations/src/translations/th.json +++ b/packages/translations/src/translations/th.json @@ -7,7 +7,6 @@ "11872052": "ใช่ ฉันจะกลับมาในภายหลัง", "14365404": "คำร้องขอล้มเหลวสำหรับ {{ message_type }} กำลังลองอีกครั้งใน {{ delay }} วินาที", "15377251": "จำนวนกำไร: {{profit}}", - "17217397": "สกุลเงินดิจิตอล", "17843034": "ตรวจสอบสถานะของเอกสารหลักฐานการยืนยันตัวตน", "21035405": "โปรดอธิบายว่าทำไมคุณถึงจากไป (เลือกได้ไม่เกิน {{ allowed_reasons }} เหตุผล)", "25854018": "บล็อกนี้แสดงข้อความในคอนโซลของนักพัฒนาซอฟต์แวร์ โดยมีอินพุตที่สามารถเป็นสตริงข้อความ ตัวเลข บูลีน หรืออาร์เรย์ของข้อมูล", @@ -22,6 +21,7 @@ "46523711": "หลักฐานยืนยันตัวตนของคุณได้รับการยืนยันแล้ว", "49963458": "เลือกตัวเลือก", "54185751": "น้อยกว่า $100,000", + "55340304": "เก็บสัญญาปัจจุบันของคุณไว้หรือไม่", "55916349": "ทั้งหมด", "58254854": "ขอบเขต", "59169515": "หากคุณเลือก \"Asian Rise\" คุณจะได้รับเงินก็ต่อเมื่อ tick สุดท้ายมีค่าสูงกว่าค่าเฉลี่ย", @@ -61,7 +61,6 @@ "111931529": "รวมเงินเดิมพันสูงสุด 7 วัน", "113378532": "ETH/USD", "113884303": "German Index", - "113933902": "ดาวน์โหลดแอป Deriv X", "115032488": "ราคาซื้อและผลกำไรขาดทุน", "116005488": "ตัวบ่งชี้", "117318539": "รหัสผ่านควรประกอบด้วยตัวอักษรภาษาอังกฤษตัวพิมพ์เล็กและพิมพ์ใหญ่พร้อมตัวเลข", @@ -163,7 +162,6 @@ "270339490": "หากคุณเลือก \"Over\" คุณจะได้รับเงินก็ต่อเมื่อ ตัวเลขหลักสุดท้ายของ tick สุดท้าย มากกว่าตัวเลขที่คุณคาดการณ์ไว้", "270610771": "จากตัวอย่างนี้ ราคาเปิดจากรายการของแท่งเทียน ถูกกำหนดให้กับตัวแปร \"candle_open_price\"", "270712176": "จากมากไปหาน้อย", - "270727821": "ดัชนีหุ้น", "270780527": "คุณอัปโหลดเอกสารถึงขีด จำกัด แล้ว", "272179372": "โดยทั่วไปบล็อกนี้ใช้เพื่อปรับพารามิเตอร์ของการซื้อขายครั้งต่อไปของคุณ และเพื่อใช้หยุดการขาดทุน/การทำกำไร", "273350342": "คัดลอกและวางโทเคนลงในแอพ", @@ -197,7 +195,6 @@ "317601768": "ธีม", "318865860": "ปิด", "318984807": "บล็อกนี้ตามคำแนะนำจะเป็นการทำซ้ำตามจำนวนที่ระบุ", - "319538091": "DMT5 Financial STP", "323179846": "ช่วงเวลาสำหรับแท่งเทียนแต่ละแท่งสามารถทำการตั้งค่าได้ตั้งแต่ 1 นาทีถึง 1 วัน", "323209316": "เลือกกลยุทธ์ Deriv บอท", "325662004": "เพิ่มบล็อก", @@ -248,7 +245,6 @@ "384303768": "บล็อกนี้ส่งคืน “จริง” หากแท่งเทียนสุดท้ายเป็นสีดำ สามารถวางที่ใดก็ได้บนผืนผ้าใบ ยกเว้นภายในบล็อกรูทพารามิเตอร์การซื้อขาย", "386502387": "บอทไม่ได้ทำงาน", "389923099": "ขยายเข้า", - "390647540": "บัญชีจริง", "390890891": "ไตรมาสที่แล้ว", "391915203": "การป้องกันความเสี่ยง", "392582370": "Fall Equals", @@ -256,7 +252,6 @@ "396961806": "เราไม่สนับสนุนรูปหลายเหลี่ยม (Matic) ในการฝาก โปรดใช้ Ethereum เท่านั้น ({{token}})", "399387585": "โปรดตรวจสอบรายละเอียดอีเมลของคุณ หากคุณมีข้อสงสัยใดๆ โปรดไปที่ <0> ศูนย์ช่วยเหลือ ของเรา", "401339495": "ยืนยันที่อยู่", - "402343402": "เนื่องจากปัญหาบนเซิร์ฟเวอร์ของเราบัญชี {{platform}} บางบัญชีของคุณไม่พร้อมใช้งานในขณะนี้ หมีกับเราและขอขอบคุณสําหรับความอดทนของคุณ", "403456289": "สูตรสำหรับ SMA คือ", "404743411": "เงินฝากทั้งหมด", "406359555": "รายละเอียดของสัญญา", @@ -271,6 +266,7 @@ "427134581": "ลองใช้ไฟล์ประเภทอื่น", "427617266": "Bitcoin", "428709688": "ช่วงเวลาที่คุณต้องการระหว่างแต่ละรายงาน:", + "432508385": "ทำกำไร: {{ currency }} {{ take_profit }}", "432519573": "เอกสารถูกอัปโหลดแล้ว", "433348384": "บัญชีจริงไม่สามารถใช้งานได้กับบุคคลที่มีสถานภาพทางการเมือง (PEPs)", "433616983": "2. ขั้นตอนการตรวจสอบ", @@ -326,7 +322,6 @@ "505793554": "อักษรตัวสุดท้าย", "510815408": "ตัวอักษร ตัวเลข ช่องว่าง ยัติภังค์เท่านั้น", "514031715": "รายการ {{ input_list }} ว่าง", - "514776243": "บัญชี {{account_type}} ของคุณรหัสผ่านได้มีการเปลี่ยนแปลง", "514948272": "คัดลอกลิงก์", "518955798": "7. รันเมื่อเริ่มใช้งาน", "520136698": "ดัชนี Boom 500", @@ -438,7 +433,6 @@ "659482342": "โปรดจําไว้ว่าเป็นความรับผิดชอบของคุณในการรักษาคําตอบของคุณให้ถูกต้องและเป็นปัจจุบัน คุณสามารถอัปเดตรายละเอียดส่วนบุคคลของคุณได้ตลอดเวลาในการตั้งค่า จํานวน", "660481941": "ในการเข้าถึงแอพมือถือของคุณ และแอพอื่นๆของบุคคลภายนอก คุณจะต้องสร้างโทเคน API ก่อน", "660991534": "เสร็จสิ้น", - "662609119": "ดาวน์โหลดแอพ MT5", "665089217": "โปรดส่ง <0>หลักฐานระบุตัวตน ของคุณเพื่อยืนยันความถูกต้องของบัญชีและเข้าถึงแคชเชียร์ของคุณ", "665777772": "XLM/USD", "665872465": "จากตัวอย่างด้านล่าง ราคาเปิดที่เลือก ซึ่งจะถูกกำหนดให้กับตัวแปรที่เรียกว่า \"op\"", @@ -590,6 +584,7 @@ "872957901": "Dark (เร็วๆนี้กับ DBot)", "873166343": "1. 'Log' แสดงข้อความที่ผิดปกติ", "874461655": "สแกนรหัส QR ด้วยโทรศัพท์ของคุณ", + "874484887": "การทํากําไรต้องเป็นจํานวนบวก", "875532284": "เริ่มกระบวนการใหม่ในอุปกรณ์อื่น", "876086855": "โปรดกรอกแบบฟอร์มการประเมินทางการเงินให้สมบรูณ์", "876292912": "ออก", @@ -637,7 +632,6 @@ "947046137": "การถอนเงินของคุณจะดําเนินการภายใน 24 ชั่วโมง", "947363256": "สร้างรายการ", "947758334": "โปรดระบุเมือง", - "948156236": "สร้างรหัส {{type}}", "949859957": "ส่ง", "952655566": "ตัวแทนรับชำระเงิน", "956448295": "ตรวจพบภาพตัด", @@ -765,7 +759,6 @@ "1129124569": "หากคุณเลือก \"Under\" คุณจะได้รับเงินก็ต่อเมื่อ ตัวเลขหลักสุดท้ายของค่า tick สุดท้าย น้อยกว่าตัวเลขที่คุณคาดการณ์ไว้", "1129296176": "ประกาศสำคัญเพื่อรับเงินของคุณ", "1129842439": "โปรดป้อนจำนวนเงินทำกำไรที่ต้องการ", - "1129984312": "โอนเงินผ่านธนาคาร", "1130744117": "เราจะพยายามแก้ไขข้อร้องเรียนของคุณภายใน 10 วันทําการ เราจะแจ้งให้คุณทราบถึงผลที่ได้พร้อมกับคําอธิบายจุดยืนของเรา และเสนอมาตรการแก้ไขใดๆ ที่เราตั้งใจจะดำเนินการ", "1130791706": "N", "1133651559": "ไลฟ์แชท", @@ -878,6 +871,7 @@ "1293660048": "รวมขาดทุนสูงสุดต่อวัน", "1294756261": "บล็อกนี้สร้างฟังก์ชัน ซึ่งเป็นกลุ่มคำแนะนำที่สามารถดำเนินการได้ตลอดเวลา วางบล็อกอื่นๆ ในที่นี่เพื่อดำเนินการตามที่คุณต้องการในกลยุทธ์ของคุณ เมื่อคำแนะนำทั้งหมดในฟังก์ชันได้รับการดำเนินการ บอทของคุณจะยังคงมีบล็อกที่เหลืออยู่ในกลยุทธ์ของคุณ คลิกที่ช่อง “ทำอะไรสักอย่าง” เพื่อตั้งชื่อที่คุณเลือก คลิกที่ไอคอนเครื่องหมายบวกเพื่อส่งค่า (เป็นตัวแปรที่มีชื่อ) ไปยังฟังก์ชันของคุณ", "1295284664": "โปรดยอมรับข้อตกลง <0>ข้อกำหนดและเงื่อนไขล่าสุด ของเราเพื่อดำเนินการต่อ", + "1296380713": "ปิดสัญญาของฉัน", "1299479533": "8 ชั่วโมง", "1301668579": "เรากำลังดำเดินการเพื่อให้คุณสามารถใช้งานได้เร็วๆนี้ หากคุณมีบัญชีอื่น ให้ทำการสลับไปใช้บัญชีนั้นเพื่อดำเนินการซื้อขายต่อ คุณอาจเพิ่มบัญชี DMT5 Financial", "1302691457": "อาชีพ", @@ -921,7 +915,6 @@ "1346339408": "ผู้จัดการ", "1347071802": "{{minutePast}} นาทีที่แล้ว", "1348009461": "โปรดปิดสถานะของคุณในบัญชี Deriv X ต่อไปนี้:", - "1349142948": "DMT5 Financial", "1349289354": "เยี่ยม นั่นคือสิ่งที่เราต้องการ", "1349295677": "ในข้อความ {{ input_text }} รับสตริงย่อยจาก {{ position1 }} {{ index1 }} ถึง {{ position2 }} {{ index2 }}", "1351152200": "ยินดีต้อนรับสู่แดชบอร์ด Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "ในช่วงเวลา: %1", "1468308734": "บล็อกนี้จะทำซ้ำคำแนะนำตราบใดที่เงื่อนไขที่กำหนดเป็นจริง", "1468419186": "ปัจจุบัน Deriv รองรับการถอน Tether USDT ไปยัง Omni wallet เพื่อให้แน่ใจว่าการทำธุรกรรมประสบความสำเร็จให้ป้อนที่อยู่ wallet ที่เข้ากันได้กับโทเค็นที่คุณต้องการถอน <0>เรียนรู้เพิ่มเติม", + "1469150826": "ทำกำไร", "1469764234": "แคชเชียร์เกิดข้อผิดพลาด", "1469814942": "- การหาร", "1470319695": "ส่งคืนค่า จริง หรือ เท็จ", @@ -1043,7 +1037,6 @@ "1502325741": "รหัสผ่านของคุณไม่สามารถเหมือนกับที่อยู่อีเมลของคุณ", "1503618738": "- รหัสอ้างอิงข้อตกลง: รหัสอ้างอิงของสัญญา", "1505898522": "ดาวน์โหลดสแตค", - "1506251760": "E-wallets", "1509570124": "{{buy_value}} (ซื้อ)", "1509678193": "การศึกษา", "1510075920": "Gold/USD", @@ -1085,6 +1078,7 @@ "1577480486": "ลิงก์โทรศัพท์มือถือของคุณจะหมดอายุภายในหนึ่งชั่วโมง", "1577527507": "โปรดระบุเหตุผลในการเปิดบัญชี", "1577612026": "เลือกโฟลเดอร์", + "1579484521": "ศูนย์กลางการค้า", "1580498808": "พบใบหน้าหลายหน้า", "1584109614": "รายการสตริง Tick", "1584936297": "ไฟล์ XML มีองค์ประกอบที่ไม่ได้รับการสนับสนุน โปรดตรวจสอบหรือแก้ไขไฟล์", @@ -1107,6 +1101,7 @@ "1620278321": "ชื่อและนามสกุลตัวเองสามารถคาดเดาได้ง่าย", "1620346110": "กำหนดสกุลเงิน", "1622662457": "จากวันที่", + "1623706874": "ใช้บล็อกนี้เมื่อคุณต้องการใช้ตัวคูณเป็นประเภทการค้าของคุณ", "1630372516": "ลอง Fiat onramp ของเรา", "1630417358": "โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลของคุณเพื่อเปิดใช้งานการถอน", "1634594289": "เลือกภาษา", @@ -1126,6 +1121,7 @@ "1651513020": "แสดงเวลาที่เหลือสําหรับแต่ละช่วงเวลา", "1651951220": "การทำซ้ำ เช่น \"abcabcabc\" จะทำให้คาดเดายากกว่า \"abc\" เพียงเล็กน้อย", "1652366857": "ได้รับและลบ", + "1652968048": "กำหนดตัวเลือกการค้าของคุณ เช่น ตัวคูณและเงินเดิมพัน", "1652976865": "จากตัวอย่างนี้ บล็อกนี้ใช้กับบล็อกอื่นเพื่อรับราคาเปิดจากรายการแท่งเทียน จากนั้นราคาเปิดจะถูกกำหนดให้กับตัวแปรที่เรียกว่า \"cl\"", "1653136377": "คัดลอก!", "1653159197": "ตัวแทนชำระเงินสำหรับถอนเงิน", @@ -1142,6 +1138,7 @@ "1665738338": "ยอดคงเหลือ", "1665756261": "ไปที่แชทสด", "1667395210": "หลักฐานยืนยันตัวตนของคุณถูกนำส่งเรียบร้อยแล้ว", + "1670016002": "ตัวคูณ: {{ multiplier }}", "1670426231": "เวลาสิ้นสุด", "1671232191": "คุณได้กำหนดขีดจำกัดต่อไปนี้:", "1677027187": "ฟอเร็กซ์", @@ -1183,7 +1180,6 @@ "1734264460": "การสงวนสิทธิ์", "1736292549": "อัพเดตรหัสไปรษณีย์", "1737352280": "Bot.init ไม่ถูกเรียกใช้", - "1738504192": "E-wallet", "1738681493": "ถอดแว่นตาของคุณออก หากจำเป็น", "1739384082": "ว่างงาน", "1740371444": "ยังไม่ได้เลือกตลาดที่อ้างอิง", @@ -1250,7 +1246,6 @@ "1820332333": "เติมเงิน", "1824193700": "บล็อกนี้จะให้รายการตัวเลขหลักสุดท้ายของค่า tick ล่าสุด", "1827607208": "ไฟล์ยังไม่ถูกอัปโหลด", - "1828994348": "DMT5 ไม่พร้อมใช้งานใน {{country}}", "1832974109": "SmartTrader", "1833481689": "ปลดล็อค", "1837762008": "โปรดส่งหลักฐานยืนยันตัวตนและหลักฐานที่อยู่เพื่อยืนยันบัญชีของคุณในการตั้งค่าบัญชีเพื่อเข้าถึงแคชเชียร์", @@ -1308,7 +1303,6 @@ "1887852176": "เว็บไซต์กําลังถูกอัพเดท", "1889357660": "ป้อนค่าเป็นนาที สูงสุด 60480 นาที (เทียบเท่า 6 สัปดาห์)", "1890171328": "เมื่อคลิกยอมรับด้านล่างและดำเนินการเปิดบัญชี คุณควรทราบว่าคุณอาจเสี่ยงต่อการถูกเปิดเผย (ซึ่งอาจมีความสำคัญรวมถึงความเสี่ยงของการขาดทุนเงินลงทุนทั้งหมด) ซึ่งคุณอาจไม่มีความรู้ และประสบการณ์ในการประเมินอย่างเหมาะสม", - "1890284485": "สำรวจ DTrader", "1890332321": "ส่งคืนจำนวนอักขระของสตริงข้อความที่ระบุ รวมถึงตัวเลข ช่องว่าง เครื่องหมายวรรคตอน และสัญลักษณ์", "1894667135": "โปรดตรวจสอบ หลักฐานการยืนยันที่อยู่ของคุณ", "1898670234": "{{formatted_opening_time}} (GMT) บน {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "เพิ่มหรือจัดการบัญชี", "1973536221": "คุณยังไม่มีตำแหน่งที่เปิด", "1982912252": "Relative Strength Index (RSI) จากรายการในระยะเวลาหนึ่ง", + "1983001416": "กำหนดตัวเลือกการค้าของคุณ เช่น ตัวคูณและเงินเดิมพัน บล็อกนี้สามารถใช้ได้เฉพาะกับประเภทการค้าตัวคูณเท่านั้น หากคุณเลือกประเภทการค้าอื่น บล็อกนี้จะถูกแทนที่ด้วยบล็อกตัวเลือกการค้า", "1983387308": "ดูตัวอย่าง", "1983544897": "ไม่สามารถระบุ P.O. Box ได้ในช่องที่อยู่", "1983676099": "โปรดตรวจสอบอีเมล์ของคุณสำหรับรายละเอียดเพิ่มเติม", @@ -1491,7 +1486,6 @@ "2138861911": "ไม่อนุญาตให้สแกนและถ่ายเอกสาร", "2139171480": "Reset Up/Reset Down", "2139362660": "ด้านซ้าย", - "2141055709": "รหัสผ่านใหม่ {{type}}", "2143803283": "ข้อผิดพลาดในการซื้อ", "2144609616": "หากคุณเลือก \"รีเซ็ตลง” คุณจะได้รับเงินก็ต่อเมื่อ จุดออกมีค่าต่ำกว่าจุดเข้า หรือ จุดที่เวลารีเซ็ต", "2145690912": "การรับรายได้", @@ -1948,7 +1942,6 @@ "-582721696": "จำนวนการถอนที่อนุญาตคือ {{format_min_withdraw_amount}} ถึง {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "อีก", "-1684548351": "สลับไปยังบัญชีคริปโต", - "-1345040662": "กําลังมองหาวิธีซื้อสกุลเงินดิจิทัลอยู่ใช่ไหม?", "-197251450": "ไม่ต้องการเทรดกับ {{currency_code}} เหรอ? ท่านสามารถเปิดบัญชีเงินดิจิทัลได้อีกบัญชีหนึ่ง", "-212277385": "คุณไม่สามารถเปลี่ยนสกุลเงินในบัญชีของคุณได้อีกต่อไป เนื่องจากคุณได้ฝากเงินเข้าบัญชี fiat ของคุณหรือสร้างบัญชี DMT5 หรือ Deriv X จริง โปรดติดต่อเราผ่านทาง <0>แชทสด เพื่อขอคำชี้แจง", "-1900848111": "นี่คือ บัญชี {{currency_code}} ของท่าน", @@ -2022,6 +2015,7 @@ "-811190405": "เวลา", "-2004264970": "ที่อยู่กระเป๋าสตางค์ของคุณควรมีอักขระ 25 ถึง 64 ตัว", "-1707299138": "ที่อยู่กระเป๋าเงิน {{currency_symbol}} ของคุณ", + "-1179992129": "ตัวแทนชำระเงินทั้งหมด", "-922432739": "โปรดใส่หมายเลข รหัสลูกค้าที่ถูกต้อง", "-1024241603": "ยอดคงเหลือไม่เพียงพอ", "-1979554765": "โปรดป้อนคำอธิบายที่ถูกต้อง", @@ -2033,7 +2027,6 @@ "-1388977563": "คัดลอก", "-1962894999": "ที่อยู่นี้สามารถใช้ได้เพียงครั้งเดียวเท่านั้น โปรดคัดลอกรายการใหม่สำหรับการทำธุรกรรมครั้งต่อไปของคุณ", "-451858550": "การคลิก \"ดำเนินการต่อ\" จะเปลี่ยนเส้นทางคุณไปยัง {{ service }} ซึ่งเป็นผู้ให้บริการชำระเงินบุคคลที่สาม โปรดทราบว่า {{ website_name }} จะไม่รับผิดชอบต่อเนื้อหาหรือบริการที่จัดทำโดย {{ service }} หากคุณพบปัญหาเกี่ยวกับการบริการ {{ service }} คุณต้องทำการติดต่อ {{ service }} โดยตรง", - "-1179992129": "ตัวแทนชำระเงินทั้งหมด", "-344959847": "ตัวแทนชำระเงินได้รับอนุญาตให้ดำเนินการฝากและถอนเงินสำหรับคุณ หากวิธีการชำระเงินหรือสกุลเงินของคุณไม่ได้รับการสนับสนุนใน {{website_name}}", "-1232852916": "เรากําลังสลับไปยังบัญชี {{currency}} ของคุณเพื่อดูธุรกรรม", "-38063175": "{{account_text}} wallet", @@ -2056,6 +2049,7 @@ "-1615615253": "เราไม่สนับสนุน Tron ในการฝาก โปรดใช้ Ethereum เท่านั้น ({{token}})", "-1831000957": "กรุณาเลือกเครือข่ายที่จะฝากเงินของคุณ", "-314177745": "ขออภัย เราไม่สามารถรับที่อยู่ได้เนื่องจากเซิร์ฟเวอร์ของเราขัดข้อง โปรดคลิกรีเฟรชเพื่อโหลดที่อยู่ซ้ำหรือลองอีกครั้งในภายหลัง", + "-1345040662": "กําลังมองหาวิธีซื้อสกุลเงินดิจิทัลอยู่ใช่ไหม?", "-2005265642": "Fiat onramp เป็นบริการแคชเชียร์ที่ให้คุณแปลงสกุลเงิน fiat เป็น crypto เพื่อเติมเงินในบัญชี Deriv crypto ของคุณ รายการที่นี่คือการแลกเปลี่ยน crypto บุคคลที่สาม คุณจะต้องสร้างบัญชีกับพวกเขาเพื่อใช้บริการของพวกเขา", "-1593063457": "เลือกช่องทางการชําระเงิน", "-130833284": "โปรดทราบว่าขีดจำกัดการถอนสูงสุดและต่ำสุดของคุณไม่ได้รับการแก้ไข พวกเขาเปลี่ยนไปเนื่องจากความผันผวนสูงของสกุลเงินดิจิตอล", @@ -2093,6 +2087,8 @@ "-1354485738": "รีเซ็ตการเรียก", "-376148198": "ขึ้นเท่านั้น", "-1337379177": "High Tick", + "-328036042": "โปรดป้อนจำนวนเงินหยุดการขาดทุน ที่สูงกว่าการขาดทุนที่อาจเกิดขึ้นในปัจจุบัน", + "-2127699317": "หยุดการขาดทุนไม่ถูกต้อง ค่าของหยุดการขาดทุนไม่สามารถมากกว่าค่าของเงินเดิมพัน", "-1940333322": "DBot ไม่สามารถใช้ได้กับบัญชีนี้", "-1210387519": "ไปที่แดชบอร์ด DMT5", "-1223145005": "จำนวนขาดทุน: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "ระยะเวลาสูงสุด: {{ max }}", "-1194719174": "จำนวนตัวคูณที่ใช้เพื่อเพิ่มเงินเดิมพันของคุณหากคุณกำลังสูญเสียการซื้อขาย", "-749186458": "การสลับบัญชีถูกปิดการใช้งานในขณะที่บอทกำลังทำงาน โปรดหยุดบอทก่อนทำการสลับบัญชี", + "-662836330": "คุณต้องการที่จะรักษาสัญญาปัจจุบันของคุณหรือปิดมัน? หากคุณตัดสินใจที่จะใช้งานต่อไป คุณสามารถตรวจสอบและปิดได้ในภายหลังในหน้า <0>รายงาน", + "-597939268": "รักษาสัญญาของฉัน", "-1322453991": "คุณต้องเข้าสู่ระบบเพื่อเริ่มทำงานบอท", "-1483938124": "กลยุทธ์นี้ไม่สามารถใช้กับ DBot ได้ในขณะนี้", + "-236548954": "เกิดข้อผิดพลาดในการอัพเดทสัญญา", "-1428017300": "THE", "-1450728048": "OF", "-255051108": "คุณ", "-1845434627": "คือ", "-931434605": "นี้", "-740712821": "A", + "-187634388": "บล็อกนี้เป็นข้อบังคับ ที่นี่คุณสามารถตัดสินใจได้ว่าบอทของคุณควรดําเนินการซื้อขายต่อหรือไม่ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น", + "-2105473795": "พารามิเตอร์อินพุตเท่านั้นเป็นตัวกําหนดว่า เอาต์พุตบล็อกกําลังจะจัดรูปแบบอย่างไร ในกรณีที่พารามิเตอร์อินพุตเป็น \"สตริง\" แล้วสกุลเงินของบัญชีจะถูกเพิ่ม", + "-1800436138": "2. สำหรับ \"จำนวน\": 1325.68", + "-2046396241": "บล็อกนี้เป็นข้อบังคับ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น จะถูกเพิ่มไปยังบนผืนผ้าใบตามค่าเริ่มต้นเมื่อคุณเปิด DBot", + "-530632460": "บล็อกนี้ใช้เพื่อกําหนดว่าราคาตลาดจะเคลื่อนที่ไปในทิศทางที่เลือกหรือไม่ ช่วยให้คุณมีค่า \"จริง\" หรือ \"เท็จ\"", + "-1875717842": "ตัวอย่าง:", + "-890079872": "1. หากทิศทางที่เลือกคือ \"ขึ้น\" และค่าของ tick ก่อนหน้านี้มีค่าน้อยกว่าค่าของ tick ปัจจุบัน การนำออกจะเป็น \"จริง\" ไม่อย่างนั้นจะแสดงเป็นสตริงว่าง", + "-489739641": "2. หากทิศทางที่เลือกคือ \"ลง\" และค่าของ tick ก่อนหน้านี้มีค่ามากกว่าค่าของ tick ปัจจุบัน การนำออกจะเป็น \"จริง\" ไม่อย่างนั้นจะแสดงเป็นสตริงว่าง", + "-2116076360": "มี 4 ประเภทข้อความ:", + "-1421941045": "2. 'คำเตือน' จะแสดงข้อความเป็นสีเหลืองเพื่อจะเน้นสิ่งที่ต้องการความสนใจ", + "-277850921": "หากเลือก \"ชนะ\" ระบบจะส่งคืน \"จริง\" หากการซื้อขายครั้งสุดท้ายของคุณสำเร็จ ไม่อย่างนั้นจะส่งคืนสตริงว่าง", + "-1918487001": "ตัวอย่าง:", + "-2139916657": "1. จากตัวอย่างด้านล่าง การวนซ้ำถูกยกเลิกในกรณีที่ \"x\" คือ \"False\" แม้ว่าจะมีการวนซ้ำเพียงครั้งเดียวเท่านั้นที่เสร็จสมบูรณ์", + "-1238900333": "2. จากตัวอย่างด้านล่าง การวนซ้ำไปยังการวนซ้ำถัดไป โดยไม่ต้องดำเนินการบล็อกด้านล่างในกรณีที่ \"x\" คือ \"False\"", + "-1729479576": "คุณสามารถใช้ \"i\" ภายในลูป เช่น เพื่อเข้าถึงรายการ", + "-1474636594": "ในตัวอย่างนี้ การวนซ้ำจะทำซ้ำสามครั้ง ตามจำนวนรายการที่กำหนด ในการทำซ้ำแต่ละครั้งตัวแปร \"i\" จะถูกกำหนดค่าจากรายการ ", + "-908772734": "บล็อกนี้จะประมวลรายการบัญชี และจะดำเนินการเฉพาะเมื่อรายการบัญชีนั้นเป็นจริง", + "-334040831": "2. ในตัวอย่างนี้ คำแนะนำจะถูกทำซ้ำตราบใดที่ค่าของ x มากกว่าหรือเท่ากับ 10 เมื่อค่าของ x ลดลงต่ำกว่า 10 ลูปจะถูกยกเลิก", + "-444267958": "บล็อก \"วินาทีตั้งแต่ดำเนินการ\" จะส่งคืนจำนวนวินาทีตั้งแต่วันที่ 1 มกราคม 1970", + "-447522129": "คุณอาจจะต้องใช้เมื่อคุณต้องการที่จะทำซ้ำการกระทำหลังจากระยะเวลาหนึ่ง", + "-1488259879": "คำว่า \"candle\" หมายถึงแต่ละแท่งบนกราฟแท่งเทียน แท่งเทียนแต่ละแท่งแสดงถึงราคาตลาด 4 ราคา สำหรับช่วงเวลาที่เลือก", + "-2020693608": "แท่งเทียนแต่ละแท่งบนกราฟแสดงถึงราคาตลาด 4 ราคา สําหรับช่วงเวลาที่เลือก", + "-62728852": "- ราคาเปิด: ราคาเปิด", + "-1247744334": "- ราคาต่ำ: ราคาต่ำสุด", + "-1386365697": "- ราคาปิด: ราคาปิด", + "-1498732382": "แท่งเทียนสีดำ (หรือสีแดง) แสดงว่าราคาเปิดสูงกว่าราคาปิด สิ่งนี้แสดงให้เห็นถึงการเคลื่อนไหวที่ลดลงของราคาตลาด", + "-1871864755": "บล็อกนี้ให้ตัวเลขสุดท้ายของค่า tick ล่าสุดของตลาดที่เลือก หากค่า tick ล่าสุดคือ 1410.90 บล็อกนี้จะกลับมาเป็น 0 ซึ่งมีประโยชน์สําหรับการทําสัญญา เช่น Even/Odd, Matches/Differs, หรือ Higher/Lower", + "-1029671512": "ในกรณีที่เลือก \"OR\" การดำเนินการบล็อกจะส่งกลับ \"จริง\" ในกรณีที่ค่าหนึ่งหรือทั้งสองค่าที่ระบุเป็น \"จริง\"", + "-210295176": "การดำเนินการที่มีอยู่:", + "-1385862125": "- เพิ่มเติม", + "-983721613": "- การลบ", + "-854750243": "- การคูณ", + "-1394815185": "ในกรณีที่จํานวนที่กําหนดน้อยกว่าขอบเขตล่างของช่วง บล็อกจะส่งคืนค่าของขอบเขตที่ต่ำกว่า ในทำนองเดียวกันถ้าจำนวนที่กำหนดมีค่ามากกว่าขอบเขตที่สูงกว่า บล็อกจะส่งคืนค่าของขอบเขตที่สูงขึ้น ในกรณีที่ค่าที่กำหนดอยู่ระหว่างขอบเขต บล็อกจะส่งคืนค่าที่กำหนดไม่เปลี่ยนแปลง", + "-1034564248": "จากตัวอย่างด้านล่าง บล็อกส่งคืนค่า 10 เนื่องจากค่าที่กำหนด (5) น้อยกว่าขอบเขตล่าง (10)", + "-2009817572": "บล็อกนี้ทำการดำเนินการต่อไปนี้ไปยังจำนวนที่กำหนด", + "-671300479": "การดำเนินงานที่มีอยู่คือ:", + "-514610724": "- ค่าสัมบูรณ์", + "-1923861818": "- หมายเลขออยเลอร์ (2.71) ยกกำลังของตัวเลขที่กำหนด", + "-1556344549": "นี่คือวิธี:", + "-1061127827": "- ไปที่ URL ต่อไปนี้ตรวจสอบให้แน่ใจว่าได้แทนที่ด้วย โทเค็นเทเลแกรม API ที่คุณสร้างในขั้นตอนที่ 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. กลับมาที่ DBot และเพิ่มบล็อกส่งข้อความทางเทเลแกรมไปยังพื้นที่ทำงาน วางโทเค็นเทเลแกรม API และรหัสการแชทในช่องบล็อกตามลําดับ", + "-311389920": "จากตัวอย่างนี้ ราคาเปิดจากรายการของแท่งเทียน ถูกกำหนดให้กับตัวแปรที่เรียกว่า \"cl\"", + "-1460794449": "บล็อกนี้จะแสดงรายการของแท่งเทียน ภายในช่วงเวลาที่เลือก", + "-1634242212": "ใช้ภายในฟังก์ชันบล็อก บล็อกนี้ส่งคืนค่าเมื่อเงื่อนไขที่ระบุเป็นจริง", + "-2012970860": "บล็อกนี้ให้ข้อมูลเกี่ยวกับสัญญาล่าสุดของคุณ", + "-1504783522": "คุณสามารถเลือกดูรายการใดรายการหนึ่งต่อไปนี้:", + "-10612039": "- กำไร: กำไรที่คุณได้รับ", + "-555996976": "- เวลาเข้า: เวลาเริ่มต้นของสัญญา", + "-1391071125": "- เวลาออก: เวลาหมดอายุของสัญญา", + "-1961642424": "- ค่าออก ค่าของ tick สุดท้ายของสัญญา", + "-111312913": "- Barrier: มูลค่า barrier ของสัญญา (สามารถใช้ได้กับประเภทการซื้อขายที่มีอุปสรรค (barrier) เช่น เข้า/ออก สัมผัส/ไม่ต้องสัมผัส ฯลฯ)", + "-674283099": "- ผลลัพธ์: ผลลัพธ์ของสัญญาล่าสุด: \"ชนะ\" หรือ \"แพ้\"", + "-704543890": "บล็อกนี้ให้คุณเลือกค่าแท่งเทียน เช่น ราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิด ต้องใช้แท่งเทียนเป็นพารามิเตอร์อินพุต", + "-482281200": "จากตัวอย่างด้านล่าง ราคาเปิดถูกกำหนดให้กับตัวแปร \"op\"", + "-364621012": "บล็อกนี้ให้ค่าแท่งเทียนที่ระบุ สำหรับช่วงเวลาที่เลือก คุณสามารถเลือกค่าตามที่คุณต้องการได้:", + "-232477769": "- เปิด: ราคาเปิด", + "-610736310": "ใช้บล็อกนี้เพื่อขายสัญญาของคุณในราคาตลาด การขายสัญญาของคุณจะเป็นตัวเลือก คุณอาจเลือกที่จะขายหากแนวโน้มตลาดไม่เอื้ออำนวย", + "-1307657508": "บล็อกนี้ให้กำไรหรือขาดทุนที่อาจเกิดขึ้น หากคุณตัดสินใจขายสัญญาของคุณ สามารถใช้ได้ใน \"เงื่อนไขการขาย\" บล็อกรูท", + "-1921072225": "จากตัวอย่างด้านล่าง สัญญาจะขายต่อเมื่อกำไรหรือขาดทุนที่อาจเกิดขึ้นมีมากกว่าเงินเดิมพัน", + "-955397705": "SMA เพิ่มราคาตลาดในรายการของ tick หรือแท่งเทียนสำหรับช่วงระยะเวลาหนึ่ง และหารผลรวมตามจำนวนของช่วงเวลานั้น", + "-1424923010": "โดยที่ n คือจำนวนของรอบระยะเวลา", + "-1835384051": "สิ่งที่ SMA บอกกับคุณ", + "-749487251": "SMA ทําหน้าที่เป็นตัวบ่งชี้ของแนวโน้ม หากจุด SMA ขึ้นแล้วราคาในตลาดก็จะสูงขึ้น และในทางกลับกันยิ่งช่วงเวลามีขนาดใหญ่ขึ้น เส้น SMA ก็จะยิ่งมากขึ้นเท่านั้น", + "-1996062088": "จากตัวอย่างนี้ แต่ละจุดของบรรทัด SMA คือค่าเฉลี่ยเลขคณิตของราคาปิดในช่วง 10 วันที่ผ่านมา", + "-1866751721": "รายการอินพุตยอมรับรายการค่าของ tick หรือ แท่งเทียนในขณะช่วงเวลาเป็นช่วงเวลาที่เลือก", + "-1097076512": "คุณสามารถเปรียบเทียบค่า SMA ที่คำนวณได้จากทุกบอทที่ทำงานเพื่อระบุทิศทางแนวโน้มตลาด หรือ คุณอาจใช้รูปแบบของบล็อก SMA Simple Moving Average Array ", + "-1254849504": "หากป้อนช่วงเวลา 10 บล็อก Simple Moving Average Array จะส่งคืนรายการค่า SMA ที่คำนวณตามระยะเวลา 10", + "-1190046167": "บล็อกนี้แสดงกล่องโต้ตอบที่มีข้อความที่กำหนดเอง เมื่อกล่องโต้ตอบปรากฏขึ้นกลยุทธ์ของคุณจะถูกหยุดชั่วคราวและจะทำงานอีกครั้งหลังจากที่คุณคลิก \"ตกลง\"", + "-859028989": "จากตัวอย่างนี้ วันที่และเวลาจะแสดงในกล่องการแจ้งเตือนสีเขียว", + "-1452086215": "จากตัวอย่างนี้ สัญญาขึ้นถูกซื้อในช่วงเวลาเที่ยงคืนของวันที่ 1 สิงหาคม 2562", + "-1765276625": "คลิกเมนูดรอปดาวน์ตัวคูณและเลือกค่าตัวคูณที่คุณต้องการซื้อขาย", + "-1872233077": "ผลกำไรที่เป็นไปได้ของคุณจะถูกคูณด้วยค่าตัวคูณที่คุณเลือก", + "-614454953": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับตัวคูณ โปรดไปที่หน้า <0>ตัวคูณ", + "-2078588404": "เลือกประเภทตลาดและสินทรัพย์ตามที่คุณต้องการ ตัวอย่างเช่น ฟอเร็กซ์ > สกุลเงินคู่หลัก > AUD/JPY", + "-2037446013": "2. ประเภทการซื้อขาย", + "-533927844": "เลือกประเภทการซื้อขายที่คุณต้องการ ตัวอย่างเช่น ขึ้น/ลง", + "-1192411640": "4. ช่วงเวลาเริ่มต้นของแท่งเทียน", + "-485434772": "8. การซื้อขายออปชัน", + "-1827646586": "บล็อกนี้กําหนดค่าให้กับตัวแปร สร้างตัวแปรหากยังไม่มีอยู่", "-254421190": "รายการ: ({{message_length}})", "-9461328": "ความปลอดภัยและความเป็นส่วนตัว", "-418247251": "ดาวน์โหลดบันทึกของคุณ", @@ -2209,17 +2287,6 @@ "-398198412": "การซื้อขายใน Deriv MT5 (DMT5) เป็นแพลตฟอร์มการซื้อขาย FX และ CFD แบบครบวงจร", "-1793883644": "เทรด FX และ CFD บนแพลตฟอร์มการซื้อขายที่ปรับแต่งได้และใช้งานง่าย", "-1246992539": "Binary Bot", - "-563774117": "แด ชบอร์ด", - "-773544978": "หน้าแรก", - "-1003047246": "แอปของฉัน", - "-2024365882": "สำรวจ", - "-2038666662": "เกี่ยวกับเรา", - "-832198631": "บัตรเครดิต/เดบิต", - "-1787820992": "แพลตฟอร์ม", - "-837532140": "ประเภทการซื้อขาย", - "-663862998": "ตลาด", - "-947407631": "ดัชนีสังเคราะห์", - "-362324454": "หุ้นโภคภัณฑ์", "-821418875": "นักลงทุน", "-1309011360": "ตําแหน่งที่เปิด", "-679102561": "รายละเอียดสัญญา", @@ -2317,41 +2384,47 @@ "-618539786": "บัญชีของคุณมีกำหนดจะปิด", "-945275490": "ถอนเงินทั้งหมดจากบัญชีตัวเลือกของคุณ", "-705744796": "ยอดเงินในบัญชีทดลองของคุณถึงขีด จำกัด สูงสุดแล้วและคุณจะไม่สามารถทำการซื้อขายใหม่ได้ รีเซ็ตยอดเงินของคุณเพื่อทำการซื้อขายต่อจากบัญชีทดลองของคุณ", - "-2067423661": "การรักษาความปลอดภัยที่แข็งแกร่งขึ้นสำหรับบัญชี Deriv ของคุณ", - "-1719731099": "ด้วยการตรวจสอบสิทธิ์แบบสองปัจจัย คุณจะปกป้องบัญชีของคุณด้วยรหัสผ่านและโทรศัพท์ของคุณ ดังนั้นมีเพียงคุณเท่านั้นที่สามารถเข้าถึงบัญชีของคุณได้ แม้ว่าจะมีคนรู้รหัสผ่านของคุณก็ตาม", - "-1738575826": "โปรดเปลี่ยนไปใช้บัญชีจริงของคุณหรือสร้างบัญชีใหม่เพื่อเข้าถึงแคชเชียร์", + "-1585069798": "โปรดคลิกลิงก์ต่อไปนี้เพื่อทำการทดสอบความเหมาะสมของคุณ", + "-1287141934": "ดูข้อมูลเพิ่มเติม", + "-367759751": "บัญชีของคุณยังไม่ได้รับการยืนยัน", + "-596690079": "Enjoy using Deriv?", + "-265932467": "We’d love to hear your thoughts", + "-1815573792": "Drop your review on Trustpilot.", + "-823349637": "Go to Trustpilot", "-1204063440": "ตั้งค่าสกุลเงินในบัญชีของฉัน", + "-1164554246": "คุณส่งเอกสารประจำตัวที่หมดอายุแล้ว", + "-219846634": "มายืนยัน ID ของคุณกันเถอะ", + "-529038107": "ติดตั้ง", + "-87149410": "ติดตั้งเว็บแอป DTrader", + "-1738575826": "โปรดเปลี่ยนไปใช้บัญชีจริงของคุณหรือสร้างบัญชีใหม่เพื่อเข้าถึงแคชเชียร์", + "-1329329028": "คุณไม่ได้กำหนดวงเงินหมุนเวียน 30 วันของคุณ", + "-132893998": "การเข้าถึงแคชเชียร์ของคุณถูกปิดใช้งานชั่วคราว เนื่องจากคุณยังไม่ได้กำหนดขีดจำกัดการหมุนเวียน 30 วันของคุณ โปรดไปที่การยกเว้นตนเองและตั้งค่าขีดจำกัด", + "-1852207910": "การถอนเงิน MT5 ถูกปิดการใช้งาน", + "-764323310": "การถอนเงิน MT5 ถูกปิดการใช้งานในบัญชีของคุณ โปรดตรวจสอบอีเมลของคุณสำหรับรายละเอียดเพิ่มเติม", + "-1435762703": "โปรดยืนยันตัวตนของคุณ", + "-1902997828": "รีเฟรชตอนนี้", + "-753791937": "Deriv เวอร์ชั่นใหม่พร้อมใช้งานแล้ว", + "-1775108444": "หน้านี้จะรีเฟรชโดยอัตโนมัติภายใน 5 นาทีเพื่อโหลดเวอร์ชั่นล่าสุด", + "-1175685940": "โปรดติดต่อเราผ่านแชทสดเพื่อเปิดใช้งานการถอนเงิน", + "-1125797291": "อัพเดทรหัสผ่านแล้ว", + "-157145612": "โปรดเข้าสู่ระบบด้วยรหัสผ่านล่าสุด", + "-87177461": "โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลของคุณเพื่อเปิดใช้งานการฝากเงิน", + "-904632610": "รีเซ็ตยอดเงินของคุณ", + "-470018967": "รีเซ็ตความสมดุล", + "-156611181": "โปรดทำการประเมินทางการเงินให้เสร็จสิ้นในการตั้งค่าบัญชีของคุณเพื่อปลดล็อก", "-1925176811": "ไม่สามารถดำเนินการถอนได้ในขณะนี้", "-980696193": "การถอนเงินจะไม่สามารถใช้ได้ชั่วคราวเนื่องจากการบำรุงรักษาระบบ คุณสามารถถอนเงินได้เมื่อการบำรุงรักษาเสร็จสิ้น", "-1647226944": "ไม่สามารถดำเนินการฝากเงินได้ในขณะนี้", "-488032975": "เงินฝากไม่สามารถใช้ได้ชั่วคราวเนื่องจากการบำรุงรักษาระบบ คุณสามารถฝากเงินเมื่อการบำรุงรักษาเสร็จสิ้น", "-67021419": "แคชเชียร์ของเราหยุดให้บริการชั่วคราวเนื่องจากการบำรุงรักษาระบบ คุณสามารถเข้าถึงแคชเชียร์ได้ภายในไม่กี่นาทีเมื่อการบำรุงรักษาเสร็จสิ้น", - "-219846634": "มายืนยัน ID ของคุณกันเถอะ", - "-367759751": "บัญชีของคุณยังไม่ได้รับการยืนยัน", - "-1175685940": "โปรดติดต่อเราผ่านแชทสดเพื่อเปิดใช้งานการถอนเงิน", - "-1852207910": "การถอนเงิน MT5 ถูกปิดการใช้งาน", - "-764323310": "การถอนเงิน MT5 ถูกปิดการใช้งานในบัญชีของคุณ โปรดตรวจสอบอีเมลของคุณสำหรับรายละเอียดเพิ่มเติม", - "-1585069798": "โปรดคลิกลิงก์ต่อไปนี้เพื่อทำการทดสอบความเหมาะสมของคุณ", - "-1329329028": "คุณไม่ได้กำหนดวงเงินหมุนเวียน 30 วันของคุณ", - "-132893998": "การเข้าถึงแคชเชียร์ของคุณถูกปิดใช้งานชั่วคราว เนื่องจากคุณยังไม่ได้กำหนดขีดจำกัดการหมุนเวียน 30 วันของคุณ โปรดไปที่การยกเว้นตนเองและตั้งค่าขีดจำกัด", - "-156611181": "โปรดทำการประเมินทางการเงินให้เสร็จสิ้นในการตั้งค่าบัญชีของคุณเพื่อปลดล็อก", "-849587074": "คุณยังไม่ได้ระบุหมายเลขประจำตัวผู้เสียภาษีของคุณ", "-47462430": "ข้อมูลนี้จำเป็นสำหรับข้อกำหนดทางกฎหมายและระเบียบข้อบังคับ โปรดไปที่การตั้งค่าบัญชีของคุณ และกรอกหมายเลขประจำตัวผู้เสียภาษีล่าสุดของคุณ", - "-87177461": "โปรดไปที่การตั้งค่าบัญชีของคุณและกรอกรายละเอียดส่วนบุคคลของคุณเพื่อเปิดใช้งานการฝากเงิน", + "-2067423661": "การรักษาความปลอดภัยที่แข็งแกร่งขึ้นสำหรับบัญชี Deriv ของคุณ", + "-1719731099": "ด้วยการตรวจสอบสิทธิ์แบบสองปัจจัย คุณจะปกป้องบัญชีของคุณด้วยรหัสผ่านและโทรศัพท์ของคุณ ดังนั้นมีเพียงคุณเท่านั้นที่สามารถเข้าถึงบัญชีของคุณได้ แม้ว่าจะมีคนรู้รหัสผ่านของคุณก็ตาม", + "-822888359": "Your withdrawal is locked", + "-1197701578": "Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.", "-2087822170": "คุณออฟไลน์", "-1669693571": "ตรวจสอบการเชื่อมต่อของคุณ", - "-1125797291": "อัพเดทรหัสผ่านแล้ว", - "-157145612": "โปรดเข้าสู่ระบบด้วยรหัสผ่านล่าสุด", - "-904632610": "รีเซ็ตยอดเงินของคุณ", - "-470018967": "รีเซ็ตความสมดุล", - "-1435762703": "โปรดยืนยันตัวตนของคุณ", - "-1164554246": "คุณส่งเอกสารประจำตัวที่หมดอายุแล้ว", - "-1902997828": "รีเฟรชตอนนี้", - "-753791937": "Deriv เวอร์ชั่นใหม่พร้อมใช้งานแล้ว", - "-1775108444": "หน้านี้จะรีเฟรชโดยอัตโนมัติภายใน 5 นาทีเพื่อโหลดเวอร์ชั่นล่าสุด", - "-529038107": "ติดตั้ง", - "-87149410": "ติดตั้งเว็บแอป DTrader", - "-1287141934": "ดูข้อมูลเพิ่มเติม", "-1998049070": "หากคุณยอมรับการใช้งานคุกกี้ของเราให้คลิกที่ยอมรับ สำหรับข้อมูลเพิ่มเติม <0>ดูนโยบายของเรา", "-1721181859": "คุณจะต้องมีบัญชี {{deriv_account}}", "-1989074395": "โปรดเพิ่มบัญชี {{deriv_account}} ก่อนเพิ่มบัญชี {{dmt5_account}} การฝากเงินและถอนเงินสําหรับบัญชี {{dmt5_label}} ของคุณทำได้โดยการโอนเงินเข้าและออกผ่านบัญชี {{deriv_label}} ของคุณ", @@ -2386,6 +2459,7 @@ "-1950045402": "ถอนเงินทั้งหมดของคุณ", "-168971942": "สิ่งนี้มีความหมายสำหรับคุณ", "-905560792": "โอเคผมเข้าใจแล้ว", + "-2024365882": "สำรวจ", "-1197864059": "สร้างบัญชีทดลองฟรี", "-1485242688": "Step {{step}}: {{step_title}} ({{step}} ของ {{steps}})", "-1829842622": "คุณสามารถเปิดบัญชีสำหรับแต่ละสกุลเงินดิจิทัล", @@ -2439,6 +2513,7 @@ "-1917706589": "บัญชี Deriv ของคุณถูกยกเลิกการเชื่อมโยงจาก {{social_identity_provider}} ใช้อีเมลและรหัสผ่านของคุณเพื่อเข้าสู่ระบบในอนาคต", "-2017825013": "รับทราบ", "-505449293": "ป้อนรหัสผ่านใหม่สําหรับบัญชี Deriv ของคุณ", + "-1787820992": "แพลตฟอร์ม", "-184713104": "รับการจ่ายเงินคงที่ด้วยตัวเลือกหรือตัวคูณการค้าเพื่อขยายผลกําไรของคุณด้วยความเสี่ยงที่ จํากัด", "-1571775875": "ตัวเลือกเรือธงและแพลตฟอร์มการซื้อขายตัวคูณของเรา", "-1107320163": "ทําให้การซื้อขายของคุณเป็นไปโดยอัตโนมัติไม่จําเป็นต้องเขียนการเข้ารหัส", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d หากการตัดสินใจนั้นอยู่ในความโปรดปรานของเรา คุณต้องส่งหนังสือให้เราทราบภายใน 7 วันนับจากวันที่มีการตัดสินใจ และการร้องเรียนจะได้รับการพิจารณาปิด", "-429248139": "5. ข้อความปฏิเสธความรับผิดชอบ", "-818926350": "คณะกรรมการทางการเงินยอมรับการอุทธรณ์เป็นเวลา 45 วันหลังจากวันที่เกิดเหตุการณ์ และหลังจากที่ผู้ซื้อขายได้พยายามแก้ไขปัญหากับ บริษัท โดยตรง", - "-236548954": "เกิดข้อผิดพลาดในการอัพเดทสัญญา", "-1282933308": "ไม่ใช่ {{barrier}}", "-968190634": "เท่ากับ {{barrier}}", "-1747377543": "ต่ากว่า {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "ตัวเลข", "-1790089996": "ใหม่", "-590018519": "สัญญาซื้อ", - "-328036042": "โปรดป้อนจำนวนเงินหยุดการขาดทุน ที่สูงกว่าการขาดทุนที่อาจเกิดขึ้นในปัจจุบัน", - "-2127699317": "หยุดการขาดทุนไม่ถูกต้อง ค่าของหยุดการขาดทุนไม่สามารถมากกว่าค่าของเงินเดิมพัน", "-405439829": "ขออภัย คุณไม่สามารถดูสัญญานี้ได้เนื่องจากไม่ได้เป็นของบัญชีนี้", "-1714959941": "การแสดงผลของกราฟนี้ไม่เหมาะสำหรับสัญญา tick", "-1254554534": "โปรดเปลี่ยนระยะเวลาของกราฟเป็นรูปแบบ tick เพื่อประสบการณ์ซื้อขายที่ดีขึ้น", @@ -2593,22 +2665,13 @@ "-584696680": "หากคุณเลือก “ทำกำไร” และระบุจำนวนที่ต้องการได้รับของคุณ ตำแหน่งของคุณจะถูกปิดโดยอัตโนมัติเมื่อกำไรของคุณมากกว่าหรือเท่ากับจำนวณที่ระบุ\nกำไรของคุณอาจมากกว่าจำนวนเงินที่คุณวางเงินทั้งนี้ขึ้นอยู่กับราคาตลาดเมื่อปิดทำการ", "-178096090": "“ทำกำไร” ไม่สามารถอัพเดท คุณสามารถอัพเดทได้ก็ต่อเมื่อ “การยกเลิกข้อตกลง” หมดอายุ", "-206909651": "จุดเข้า คือ ราคาตลาดเมื่อสัญญาของคุณดำเนินการโดยเซิร์ฟเวอร์ของเรา", - "-673424733": "บัญชีทดลอง", - "-1066565281": "การบํารุงรักษาเซิร์ฟเวอร์เริ่มต้นที่ 06:00 GMT ทุกวันอาทิตย์และอาจใช้เวลาถึง 2 ชั่วโมง บริการอาจหยุดชะงักในช่วงเวลานี้", - "-1481390656": "การบำรุงรักษาเซิร์ฟเวอร์เริ่มตั้งแต่ 01:00 GMT ทุกวันอาทิตย์ กระบวนการนี้อาจใช้เวลาถึง 2 ชั่วโมงในการดําเนินการให้เสร็จสมบูรณ์ บริการอาจหยุดชะงักในช่วงเวลานี้", - "-1199152768": "โปรดสํารวจแพลตฟอร์มอื่น ๆ ของเรา", - "-498346912": "สำรวจ DBot", + "-464262734": "จัดการรหัสผ่านบัญชี {{platform}} จริง {{account_title}}", "-2042845290": "รหัสผ่านนักลงทุนของคุณได้เปลี่ยนเรียบร้อยแล้ว", "-1882295407": "รหัสผ่านของคุณได้เปลี่ยนเรียบร้อยแล้ว", "-254497873": "ใช้รหัสผ่านนี้เพื่อให้สิทธิ์การเข้าถึงแก่ผู้ใช้รายอื่น ในขณะพวกเขาอาจดูบัญชีการซื้อขายของคุณ แต่พวกเขาจะไม่สามารถทำการซื้อขายหรือดำเนินการอื่นได้", "-161656683": "รหัสผ่านนักลงทุนปัจจุบัน", "-374736923": "รหัสผ่านนักลงทุนใหม่", "-1793894323": "สร้างหรือรีเซ็ตรหัสผ่านนักลงทุน", - "-464262734": "จัดการรหัสผ่านบัญชี {{platform}} จริง {{account_title}}", - "-1928229820": "รีเซ็ตรหัสผ่านนักลงทุน Deriv X", - "-1917043724": "รีเซ็ตรหัสผ่านนักลงทุน DMT5", - "-1087845020": "หลัก", - "-1950683866": "นักลงทุน", "-149836494": "หมายเลขอ้างอิงธุรกรรมของคุณคือ {{transaction_id}}", "-1382749084": "กลับไปที่การซื้อขาย", "-538215347": "เงินฝากสุทธิ", @@ -2737,7 +2800,6 @@ "-1588406981": "คุณสามารถตรวจสอบผลลัพธ์ของการซื้อขายครั้งล่าสุดด้วยบล็อกนี้", "-1459154781": "รายละเอียดสัญญา: {{ contract_detail }}", "-1652241017": "อ่านคุณสมบัติที่เลือกจากรายการรายละเอียดสัญญา", - "-2012970860": "บล็อกนี้ให้ข้อมูลเกี่ยวกับสัญญาล่าสุดของคุณ", "-2082345383": "บล็อกนี้โอนการควบคุมไปยังบล็อกเงื่อนไขการซื้อ", "-172574065": "บล็อกนี้จะโอนการควบคุมกลับไปยังบล็อกเงื่อนไขการซื้อ ซึ่งจะทำให้คุณสามารถซื้อสัญญาอื่นได้", "-403103225": "เริ่มใหม่", @@ -2780,7 +2842,6 @@ "-1556495906": "ส่งคืนรายการค่าที่ระบุจากรายการแท่งเทียนตามช่วงเวลาที่เลือก", "-166816850": "สร้างรายการค่าแท่งเทียน (1)", "-1261436901": "รายการแท่งเทียน", - "-1460794449": "บล็อกนี้จะแสดงรายการของแท่งเทียน ภายในช่วงเวลาที่เลือก", "-1174859923": "อ่านค่าแท่งเทียนที่เลือก", "-1972165119": "อ่านค่าแท่งเทียน (1)", "-1956100732": "คุณสามารถใช้บล็อกนี้เพื่อวิเคราะห์ช่วงค่า tick โดยไม่เกี่ยวข้องกับการซื้อขายของคุณ", @@ -2830,10 +2891,13 @@ "-702370957": "แปลงเป็น วันที่/เวลา", "-982729677": "แปลงเป็นการลงบันทึกเวลา", "-311268215": "บล็อกนี้แปลงสตริงข้อความที่แสดงวันที่และเวลาเป็นวินาที ตั้งแต่ Unix Epoch (1 มกราคม 1970) การชดเชยเวลาและโซนเวลาเป็นทางเลือก ตัวอย่าง 2019-01-01 21:03:45 GMT + 0800 จะถูกแปลงเป็น 1546347825", + "-1797602591": "หยุดการขาดทุน: {{ currency }} {{ stop_loss }}", + "-1214929127": "การหยุดขาดทุนต้องเป็นจํานวนบวก", + "-2142851225": "ตัวเลือกการค้าตัวคูณ", + "-625636913": "จำนวนต้องเป็นจำนวนบวก", "-1466383897": "ช่วงเวลา: {{ duration_unit }} {{ duration_value }}", "-440702280": "การซื้อขายออปชัน", "-1193894978": "กำหนดการซื้อขายออปชันของคุณ เช่นระยะเวลาและการเดิมพัน ตัวเลือกบางอย่างสามารถใช้ได้กับการค้าบางประเภทเท่านั้น", - "-625636913": "จำนวนต้องเป็นจำนวนบวก", "-46523443": "ไม่อนุญาตให้ใช้ค่าระยะเวลา หากต้องการใช้บอท โปรดป้อนค่าระหว่าง {{min}} ถึง {{max}}", "-1483427522": "ประเภทการซื้อขาย: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. พารามิเตอร์การซื้อขาย", @@ -2841,7 +2905,6 @@ "-783173909": "การซื้อขายออปชัน:", "-376956832": "นี่คือที่ที่คุณกําหนดพารามิเตอร์ของสัญญาของคุณ", "-1244007240": "ถ้า {{ condition }} แล้ว", - "-908772734": "บล็อกนี้จะประมวลรายการบัญชี และจะดำเนินการเฉพาะเมื่อรายการบัญชีนั้นเป็นจริง", "-1577206704": "ถ้าหาก", "-33796979": "จริง", "-1434883449": "นี่เป็นบล็อกเดียวที่ส่งคืนค่าบูลีน ไม่ว่าจะจริงหรือเท็จ", @@ -2903,84 +2966,11 @@ "-1133072029": "ความยาวสตริงข้อความ", "-1109723338": "พิมพ์ {{ input_text }}", "-736668830": "พิมพ์", - "-1190046167": "บล็อกนี้แสดงกล่องโต้ตอบที่มีข้อความที่กำหนดเอง เมื่อกล่องโต้ตอบปรากฏขึ้นกลยุทธ์ของคุณจะถูกหยุดชั่วคราวและจะทำงานอีกครั้งหลังจากที่คุณคลิก \"ตกลง\"", "-1821552998": "ตัดช่องว่างจาก {{ side }} ของ {{ input_text }}", "-801766026": "ด้านขวา", "-474779821": "พื้นที่ปรับแต่ง", "-1219239717": "บล็อกบังคับอย่างน้อยหนึ่งรายการหายไปจากพื้นที่ทำงานของคุณ โปรดเพิ่มบล็อกที่จำเป็นแล้วลองอีกครั้ง", "-250761331": "บล็อกบังคับอย่างน้อยหนึ่งบล็อกถูกปิดใช้งานในพื้นที่ทำงานของคุณ โปรดเปิดใช้งานบล็อกที่จำเป็นแล้วลองอีกครั้ง", - "-187634388": "บล็อกนี้เป็นข้อบังคับ ที่นี่คุณสามารถตัดสินใจได้ว่าบอทของคุณควรดําเนินการซื้อขายต่อหรือไม่ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น", - "-2105473795": "พารามิเตอร์อินพุตเท่านั้นเป็นตัวกําหนดว่า เอาต์พุตบล็อกกําลังจะจัดรูปแบบอย่างไร ในกรณีที่พารามิเตอร์อินพุตเป็น \"สตริง\" แล้วสกุลเงินของบัญชีจะถูกเพิ่ม", - "-1800436138": "2. สำหรับ \"จำนวน\": 1325.68", - "-2046396241": "บล็อกนี้เป็นข้อบังคับ อนุญาตให้คัดลอกบล็อกนี้ได้หนึ่งชุดเท่านั้น จะถูกเพิ่มไปยังบนผืนผ้าใบตามค่าเริ่มต้นเมื่อคุณเปิด DBot", - "-530632460": "บล็อกนี้ใช้เพื่อกําหนดว่าราคาตลาดจะเคลื่อนที่ไปในทิศทางที่เลือกหรือไม่ ช่วยให้คุณมีค่า \"จริง\" หรือ \"เท็จ\"", - "-1875717842": "ตัวอย่าง:", - "-890079872": "1. หากทิศทางที่เลือกคือ \"ขึ้น\" และค่าของ tick ก่อนหน้านี้มีค่าน้อยกว่าค่าของ tick ปัจจุบัน การนำออกจะเป็น \"จริง\" ไม่อย่างนั้นจะแสดงเป็นสตริงว่าง", - "-489739641": "2. หากทิศทางที่เลือกคือ \"ลง\" และค่าของ tick ก่อนหน้านี้มีค่ามากกว่าค่าของ tick ปัจจุบัน การนำออกจะเป็น \"จริง\" ไม่อย่างนั้นจะแสดงเป็นสตริงว่าง", - "-2116076360": "มี 4 ประเภทข้อความ:", - "-1421941045": "2. 'คำเตือน' จะแสดงข้อความเป็นสีเหลืองเพื่อจะเน้นสิ่งที่ต้องการความสนใจ", - "-277850921": "หากเลือก \"ชนะ\" ระบบจะส่งคืน \"จริง\" หากการซื้อขายครั้งสุดท้ายของคุณสำเร็จ ไม่อย่างนั้นจะส่งคืนสตริงว่าง", - "-1918487001": "ตัวอย่าง:", - "-2139916657": "1. จากตัวอย่างด้านล่าง การวนซ้ำถูกยกเลิกในกรณีที่ \"x\" คือ \"False\" แม้ว่าจะมีการวนซ้ำเพียงครั้งเดียวเท่านั้นที่เสร็จสมบูรณ์", - "-1238900333": "2. จากตัวอย่างด้านล่าง การวนซ้ำไปยังการวนซ้ำถัดไป โดยไม่ต้องดำเนินการบล็อกด้านล่างในกรณีที่ \"x\" คือ \"False\"", - "-1729479576": "คุณสามารถใช้ \"i\" ภายในลูป เช่น เพื่อเข้าถึงรายการ", - "-1474636594": "ในตัวอย่างนี้ การวนซ้ำจะทำซ้ำสามครั้ง ตามจำนวนรายการที่กำหนด ในการทำซ้ำแต่ละครั้งตัวแปร \"i\" จะถูกกำหนดค่าจากรายการ ", - "-334040831": "2. ในตัวอย่างนี้ คำแนะนำจะถูกทำซ้ำตราบใดที่ค่าของ x มากกว่าหรือเท่ากับ 10 เมื่อค่าของ x ลดลงต่ำกว่า 10 ลูปจะถูกยกเลิก", - "-444267958": "บล็อก \"วินาทีตั้งแต่ดำเนินการ\" จะส่งคืนจำนวนวินาทีตั้งแต่วันที่ 1 มกราคม 1970", - "-447522129": "คุณอาจจะต้องใช้เมื่อคุณต้องการที่จะทำซ้ำการกระทำหลังจากระยะเวลาหนึ่ง", - "-1488259879": "คำว่า \"candle\" หมายถึงแต่ละแท่งบนกราฟแท่งเทียน แท่งเทียนแต่ละแท่งแสดงถึงราคาตลาด 4 ราคา สำหรับช่วงเวลาที่เลือก", - "-2020693608": "แท่งเทียนแต่ละแท่งบนกราฟแสดงถึงราคาตลาด 4 ราคา สําหรับช่วงเวลาที่เลือก", - "-62728852": "- ราคาเปิด: ราคาเปิด", - "-1247744334": "- ราคาต่ำ: ราคาต่ำสุด", - "-1386365697": "- ราคาปิด: ราคาปิด", - "-1498732382": "แท่งเทียนสีดำ (หรือสีแดง) แสดงว่าราคาเปิดสูงกว่าราคาปิด สิ่งนี้แสดงให้เห็นถึงการเคลื่อนไหวที่ลดลงของราคาตลาด", - "-1871864755": "บล็อกนี้ให้ตัวเลขสุดท้ายของค่า tick ล่าสุดของตลาดที่เลือก หากค่า tick ล่าสุดคือ 1410.90 บล็อกนี้จะกลับมาเป็น 0 ซึ่งมีประโยชน์สําหรับการทําสัญญา เช่น Even/Odd, Matches/Differs, หรือ Higher/Lower", - "-1029671512": "ในกรณีที่เลือก \"OR\" การดำเนินการบล็อกจะส่งกลับ \"จริง\" ในกรณีที่ค่าหนึ่งหรือทั้งสองค่าที่ระบุเป็น \"จริง\"", - "-210295176": "การดำเนินการที่มีอยู่:", - "-1385862125": "- เพิ่มเติม", - "-983721613": "- การลบ", - "-854750243": "- การคูณ", - "-1394815185": "ในกรณีที่จํานวนที่กําหนดน้อยกว่าขอบเขตล่างของช่วง บล็อกจะส่งคืนค่าของขอบเขตที่ต่ำกว่า ในทำนองเดียวกันถ้าจำนวนที่กำหนดมีค่ามากกว่าขอบเขตที่สูงกว่า บล็อกจะส่งคืนค่าของขอบเขตที่สูงขึ้น ในกรณีที่ค่าที่กำหนดอยู่ระหว่างขอบเขต บล็อกจะส่งคืนค่าที่กำหนดไม่เปลี่ยนแปลง", - "-1034564248": "จากตัวอย่างด้านล่าง บล็อกส่งคืนค่า 10 เนื่องจากค่าที่กำหนด (5) น้อยกว่าขอบเขตล่าง (10)", - "-2009817572": "บล็อกนี้ทำการดำเนินการต่อไปนี้ไปยังจำนวนที่กำหนด", - "-671300479": "การดำเนินงานที่มีอยู่คือ:", - "-514610724": "- ค่าสัมบูรณ์", - "-1923861818": "- หมายเลขออยเลอร์ (2.71) ยกกำลังของตัวเลขที่กำหนด", - "-1556344549": "นี่คือวิธี:", - "-1061127827": "- ไปที่ URL ต่อไปนี้ตรวจสอบให้แน่ใจว่าได้แทนที่ด้วย โทเค็นเทเลแกรม API ที่คุณสร้างในขั้นตอนที่ 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. กลับมาที่ DBot และเพิ่มบล็อกส่งข้อความทางเทเลแกรมไปยังพื้นที่ทำงาน วางโทเค็นเทเลแกรม API และรหัสการแชทในช่องบล็อกตามลําดับ", - "-311389920": "จากตัวอย่างนี้ ราคาเปิดจากรายการของแท่งเทียน ถูกกำหนดให้กับตัวแปรที่เรียกว่า \"cl\"", - "-1634242212": "ใช้ภายในฟังก์ชันบล็อก บล็อกนี้ส่งคืนค่าเมื่อเงื่อนไขที่ระบุเป็นจริง", - "-1504783522": "คุณสามารถเลือกดูรายการใดรายการหนึ่งต่อไปนี้:", - "-10612039": "- กำไร: กำไรที่คุณได้รับ", - "-555996976": "- เวลาเข้า: เวลาเริ่มต้นของสัญญา", - "-1391071125": "- เวลาออก: เวลาหมดอายุของสัญญา", - "-1961642424": "- ค่าออก ค่าของ tick สุดท้ายของสัญญา", - "-111312913": "- Barrier: มูลค่า barrier ของสัญญา (สามารถใช้ได้กับประเภทการซื้อขายที่มีอุปสรรค (barrier) เช่น เข้า/ออก สัมผัส/ไม่ต้องสัมผัส ฯลฯ)", - "-674283099": "- ผลลัพธ์: ผลลัพธ์ของสัญญาล่าสุด: \"ชนะ\" หรือ \"แพ้\"", - "-704543890": "บล็อกนี้ให้คุณเลือกค่าแท่งเทียน เช่น ราคาเปิด ราคาปิด ราคาสูง ราคาต่ำ และเวลาเปิด ต้องใช้แท่งเทียนเป็นพารามิเตอร์อินพุต", - "-482281200": "จากตัวอย่างด้านล่าง ราคาเปิดถูกกำหนดให้กับตัวแปร \"op\"", - "-364621012": "บล็อกนี้ให้ค่าแท่งเทียนที่ระบุ สำหรับช่วงเวลาที่เลือก คุณสามารถเลือกค่าตามที่คุณต้องการได้:", - "-232477769": "- เปิด: ราคาเปิด", - "-610736310": "ใช้บล็อกนี้เพื่อขายสัญญาของคุณในราคาตลาด การขายสัญญาของคุณจะเป็นตัวเลือก คุณอาจเลือกที่จะขายหากแนวโน้มตลาดไม่เอื้ออำนวย", - "-1307657508": "บล็อกนี้ให้กำไรหรือขาดทุนที่อาจเกิดขึ้น หากคุณตัดสินใจขายสัญญาของคุณ สามารถใช้ได้ใน \"เงื่อนไขการขาย\" บล็อกรูท", - "-1921072225": "จากตัวอย่างด้านล่าง สัญญาจะขายต่อเมื่อกำไรหรือขาดทุนที่อาจเกิดขึ้นมีมากกว่าเงินเดิมพัน", - "-955397705": "SMA เพิ่มราคาตลาดในรายการของ tick หรือแท่งเทียนสำหรับช่วงระยะเวลาหนึ่ง และหารผลรวมตามจำนวนของช่วงเวลานั้น", - "-1424923010": "โดยที่ n คือจำนวนของรอบระยะเวลา", - "-1835384051": "สิ่งที่ SMA บอกกับคุณ", - "-749487251": "SMA ทําหน้าที่เป็นตัวบ่งชี้ของแนวโน้ม หากจุด SMA ขึ้นแล้วราคาในตลาดก็จะสูงขึ้น และในทางกลับกันยิ่งช่วงเวลามีขนาดใหญ่ขึ้น เส้น SMA ก็จะยิ่งมากขึ้นเท่านั้น", - "-1996062088": "จากตัวอย่างนี้ แต่ละจุดของบรรทัด SMA คือค่าเฉลี่ยเลขคณิตของราคาปิดในช่วง 10 วันที่ผ่านมา", - "-1866751721": "รายการอินพุตยอมรับรายการค่าของ tick หรือ แท่งเทียนในขณะช่วงเวลาเป็นช่วงเวลาที่เลือก", - "-1097076512": "คุณสามารถเปรียบเทียบค่า SMA ที่คำนวณได้จากทุกบอทที่ทำงานเพื่อระบุทิศทางแนวโน้มตลาด หรือ คุณอาจใช้รูปแบบของบล็อก SMA Simple Moving Average Array ", - "-1254849504": "หากป้อนช่วงเวลา 10 บล็อก Simple Moving Average Array จะส่งคืนรายการค่า SMA ที่คำนวณตามระยะเวลา 10", - "-859028989": "จากตัวอย่างนี้ วันที่และเวลาจะแสดงในกล่องการแจ้งเตือนสีเขียว", - "-1452086215": "จากตัวอย่างนี้ สัญญาขึ้นถูกซื้อในช่วงเวลาเที่ยงคืนของวันที่ 1 สิงหาคม 2562", - "-2078588404": "เลือกประเภทตลาดและสินทรัพย์ตามที่คุณต้องการ ตัวอย่างเช่น ฟอเร็กซ์ > สกุลเงินคู่หลัก > AUD/JPY", - "-2037446013": "2. ประเภทการซื้อขาย", - "-533927844": "เลือกประเภทการซื้อขายที่คุณต้องการ ตัวอย่างเช่น ขึ้น/ลง", - "-1192411640": "4. ช่วงเวลาเริ่มต้นของแท่งเทียน", - "-485434772": "8. การซื้อขายออปชัน", - "-1827646586": "บล็อกนี้กําหนดค่าให้กับตัวแปร สร้างตัวแปรหากยังไม่มีอยู่", "-1687036846": "ดาวน์โหลดบล็อก", "-1266781295": "ขยาย", "-894560707": "ฟังก์ชัน", diff --git a/packages/translations/src/translations/tr.json b/packages/translations/src/translations/tr.json index 69e8ab410127..7d470aabfbc0 100644 --- a/packages/translations/src/translations/tr.json +++ b/packages/translations/src/translations/tr.json @@ -7,7 +7,6 @@ "11872052": "Evet, daha sonra tekrar geleceğim", "14365404": "{{ message_type }} için istek başarısız: {{ delay }} saniye içinde yeniden deniyor", "15377251": "Kâr tutarı: {{profit}}", - "17217397": "Kripto Para", "17843034": "Kimlik belgesi doğrulama durumunu kontrol edin", "21035405": "Lütfen neden ayrıldığınızı belirtin. (En fazla {{ allowed_reasons }} neden seçin.)", "25854018": "Bu blok, geliştiricinin konsolundaki iletileri bir metin dizesi, sayı, boole veya veri dizisi olabilecek bir girişle görüntüler.", @@ -22,6 +21,7 @@ "46523711": "Kimlik kanıtınız doğrulandı", "49963458": "Bir seçenek seçin", "54185751": "100.000$'dan daha az", + "55340304": "Mevcut sözleşmeniz devam etsin mi?", "55916349": "Hepsi", "58254854": "Kapsam", "59169515": "\"Asian Rise\"ı seçerseniz, son tik tiklerin ortalamasından daha yüksekse ödemeyi kazanırsınız.", @@ -61,7 +61,6 @@ "111931529": "7 gün boyunca maksimum toplam bahis", "113378532": "ETH/USD", "113884303": "Alman Endeksi", - "113933902": "Deriv X uygulamasını indirin", "115032488": "Satın alma fiyatı ve P/L", "116005488": "Göstergeler", "117318539": "Şifre, sayılarla birlikte küçük ve büyük harfli İngilizce harfler olmalıdır.", @@ -163,7 +162,6 @@ "270339490": "\"Üzerinde\" seçeneğini belirlerseniz, son tikin son basamağı tahmininizden büyükse ödemeyi kazanırsınız.", "270610771": "Bu örnekte, bir mumun açılış fiyatı \"candle_open_price\" değişkenine atanır.", "270712176": "azalan", - "270727821": "Hisse senedi endeksleri", "270780527": "Belgelerinizi yükleme sınırına ulaştınız.", "272179372": "Bu blok, bir sonraki ticaretinizin parametrelerini ayarlamak ve zarar durdur/kar al mantığını uygulamak için yaygın olarak kullanılır.", "273350342": "Tokeni kopyalayıp uygulamaya yapıştırın.", @@ -197,7 +195,6 @@ "317601768": "Temalar", "318865860": "kapanış", "318984807": "Bu blok, içinde bulunan talimatları belirli bir sayıda tekrarlar.", - "319538091": "DMT5 Finansal STP", "323179846": "Her mum için zaman aralığı bir dakikadan bir güne kadar ayarlanabilir.", "323209316": "Bir Deriv Bot Stratejisi seçin", "325662004": "Bloğu Genişlet", @@ -248,7 +245,6 @@ "384303768": "Bu blok, son mum siyahsa \"Doğru\" olarak döner. Ticari parametreler kök bloğu hariç kanvas üzerinde herhangi bir yere yerleştirilebilir.", "386502387": "Bot çalışmıyor", "389923099": "Yakınlaştır", - "390647540": "Gerçek hesap", "390890891": "Son çeyrek", "391915203": "Hedge etme", "392582370": "Fall Equals", @@ -256,7 +252,6 @@ "396961806": "Polygon'ı (Matic) desteklemiyoruz, deposit için lütfen yalnızca Ethereum ({{token}}) kullanın.", "399387585": "Ayrıntılar için lütfen e-postanızı kontrol edin. Herhangi bir sorunuz varsa, lütfen <0>Yardım Merkezi'ne gidin.", "401339495": "Adresi doğrula", - "402343402": "Sunucumuzdaki bir sorun nedeniyle bazı {{platform}} hesaplarınız şu anda kullanılamıyor. Lütfen bizimle kalın ve sabrınız için teşekkür ederiz.", "403456289": "SMA için formül:", "404743411": "Toplam mevduat", "406359555": "Sözleşme detayları", @@ -271,6 +266,7 @@ "427134581": "Başka bir dosya türü kullanmayı deneyin.", "427617266": "Bitcoin", "428709688": "Her rapor arasında tercih ettiğiniz zaman aralığı:", + "432508385": "Kar Al: {{ currency }} {{ take_profit }}", "432519573": "Belge yüklendi", "433348384": "Gerçek hesaplar siyasi nüfuz sahibi kişiler (PEP'ler) tarafından kullanılamaz.", "433616983": "2. Soruşturma aşaması", @@ -326,7 +322,6 @@ "505793554": "son harf", "510815408": "Yalnızca harfler, sayılar, boşluklar, tireler", "514031715": "{{ input_list }} listesi boş", - "514776243": "{{account_type}} parolanız değiştirildi.", "514948272": "Bağlantıyı Kopyala", "518955798": "7. Başlangıçta bir kez çalıştır", "520136698": "Boom 500 Endeksi", @@ -438,7 +433,6 @@ "659482342": "Lütfen cevaplarınızı doğru ve güncel tutmanın sizin sorumluluğunuzda olduğunu unutmayın. Kişisel bilgilerinizi istediğiniz zaman hesap ayarlarınızdan güncelleyebilirsiniz.", "660481941": "Mobil uygulamalarınıza ve diğer üçüncü taraf uygulamalarınıza erişmek için öncelikle bir API token oluşturmanız gerekir.", "660991534": "Bitir", - "662609119": "MT5 uygulamasını indirin", "665089217": "Hesabınızın kimliğini doğrulamak ve kasiyerinize erişmek için lütfen <0>kimlik kanıtınızı gönderin.", "665777772": "XLM/USD", "665872465": "Aşağıdaki örnekte, açılış fiyatı seçilir ve daha sonra \"op\" adlı bir değişkene atanır.", @@ -590,6 +584,7 @@ "872957901": "Karanlık (Çok yakında DBot'a geliyor)", "873166343": "1. \"Kayıt\" düzenli bir mesaj görüntüler.", "874461655": "Telefonunuzla QR kodunu tarayın", + "874484887": "'Kar al' pozitif bir sayı olmalıdır.", "875532284": "Farklı bir cihazda işlemi yeniden başlatın", "876086855": "Finansal değerlendirme formunu doldurun", "876292912": "Çıkış", @@ -637,7 +632,6 @@ "947046137": "Para çekme işleminiz 24 saat içinde işleme alınacaktır", "947363256": "Liste oluştur", "947758334": "Şehir gereklidir", - "948156236": "{{type}} şifresini oluşturun", "949859957": "Gönder", "952655566": "Ödeme aracısı", "956448295": "Kesik resim algılandı", @@ -765,7 +759,6 @@ "1129124569": "\"Altında\"yı seçerseniz, son tikin son hanesi tahmininizden azsa ödemeyi kazanırsınız.", "1129296176": "FONLARINIZI ALMAK IÇIN ÖNEMLI UYARI", "1129842439": "Lütfen bir take profit tutarı girin.", - "1129984312": "Banka havalesi", "1130744117": "Şikayetinizi 10 iş günü içinde çözmeye çalışacağız. Pozisyonumuz hakkında bir açıklama ile birlikte sizi sonuç hakkında bilgilendireceğiz ve almayı düşündüğümüz her türlü iyileştirici önlemi önereceğiz.", "1130791706": "N", "1133651559": "Canlı sohbet", @@ -878,6 +871,7 @@ "1293660048": "Günlük maks. toplam kayıp", "1294756261": "Bu blok, herhangi bir zamanda yürütülebilecek bir talimat grubu olan bir fonksiyon yaratır. Stratejinizde ihtiyaç duyduğunuz her türlü eylemi gerçekleştirmek için diğer blokları buraya yerleştirin. Bir fonksiyondaki tüm talimatlar yerine getirildiğinde, botunuz stratejinizde kalan bloklarla devam edecektir. Seçtiğiniz bir isim vermek için \"bir şey yap\" alanına tıklayın. İşlevinize bir değer (adlandırılmış bir değişken olarak) göndermek için artı simgesine tıklayın.", "1295284664": "Devam etmek için lütfen <0>güncellenmiş Şartlar ve Koşullarımızı kabul edin.", + "1296380713": "Sözleşmemi kapat", "1299479533": "8 saat", "1301668579": "Bu özelliği yakında kullanıma sunmak için çalışıyoruz. Başka bir hesabınız varsa alım satım işlemine devam etmek için o hesaba geçin. Bir DMT5 Finansal ekleyebilirsiniz.", "1302691457": "Meslek", @@ -921,7 +915,6 @@ "1346339408": "Yöneticiler", "1347071802": "{{minutePast}} dk önce", "1348009461": "Lütfen aşağıdaki Deriv X hesaplarındaki pozisyonlarınızı kapatın:", - "1349142948": "DMT5 Finansal", "1349289354": "Harika, bu ihtiyacımız olan her şey", "1349295677": "{{ input_text }} metninde {{ position1 }} {{ index1 }} ile {{ position2 }} {{ index2 }} arasından alt dize al", "1351152200": "Deriv MT5 (DMT5) kontrol paneline hoş geldiniz", @@ -1024,6 +1017,7 @@ "1467421920": "aralık ile: %1", "1468308734": "Bu blok, belirli bir koşul doğru olduğu sürece talimatları tekrarlar", "1468419186": "Deriv şu anda Tether USDT'nin Omni cüzdanına çekilmesini destekliyor. İşlemin başarılı olmasını sağlamak için geri çekmek istediğiniz token'lar ile uyumlu bir cüzdan adresi girin. <0>Daha fazla bilgi edin", + "1469150826": "Kar Al", "1469764234": "Kasiyer Hatası", "1469814942": "- Bölüm", "1470319695": "Doğru veya Yanlış olarak döner", @@ -1043,7 +1037,6 @@ "1502325741": "Parolanız e-posta adresinizle aynı olamaz.", "1503618738": "- Anlaşma referans kimliği: Sözleşme referans kimliği", "1505898522": "Deste indir", - "1506251760": "Cüzdanlar", "1509570124": "{{buy_value}} (Satın Al)", "1509678193": "Eğitim", "1510075920": "Altın/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Mobil bağlantınız bir saat içinde sona erecek", "1577527507": "Hesap açma nedeni gerekli.", "1577612026": "Bir klasör seçin", + "1579484521": "Ticaret merkezi", "1580498808": "Birden çok yüz bulundu", "1584109614": "Tikler Dizesi Listesi", "1584936297": "XML dosyası desteklenmeyen öğeler içeriyor. Lütfen dosyayı kontrol edin veya değiştirin.", @@ -1107,6 +1101,7 @@ "1620278321": "İsimleri ve soyadları tek başlarına tahmin etmek kolaydır", "1620346110": "Para birimi ayarla", "1622662457": "Tarihten itibaren", + "1623706874": "Ticaret türünüz olarak çarpanları kullanmak istediğinizde bu bloğu kullanın.", "1630372516": "Fiat onramp'ı deneyin", "1630417358": "Para çekme işlemlerini etkinleştirmek için lütfen hesap ayarlarınıza gidin ve kişisel bilgilerinizi tamamlayın.", "1634594289": "Dil seçin", @@ -1126,6 +1121,7 @@ "1651513020": "Her bir aralık için kalan süreyi göster", "1651951220": "\"abcabcabc\" gibi tekrarların tahmin edilmesi \"abc\"den biraz daha zordur", "1652366857": "alın ve kaldırın", + "1652968048": "Çarpan ve bahis gibi ticari seçeneklerinizi tanımlayın.", "1652976865": "Bu örnekte bu blok, mum listesinden açılış fiyatları almak için başka bir blok ile kullanılır. Daha sonra açılış fiyatları \"cl\" adlı değişkene atanır.", "1653136377": "kopyalandı!", "1653159197": "Ödeme aracısı para çekimi", @@ -1142,6 +1138,7 @@ "1665738338": "Bakiye", "1665756261": "Canlı sohbete git", "1667395210": "Kimlik kanıtınız başarıyla gönderildi", + "1670016002": "Çarpan: {{ multiplier }}", "1670426231": "Bitiş zamanı", "1671232191": "Aşağıdaki limitleri ayarladınız:", "1677027187": "Forex", @@ -1183,7 +1180,6 @@ "1734264460": "Yasal Uyarı", "1736292549": "Posta kodunu güncelle", "1737352280": "Bot.init çağrılmaz", - "1738504192": "E-cüzdan", "1738681493": "Gerekirse gözlüklerinizi çıkarın", "1739384082": "İşsiz", "1740371444": "Temel piyasa seçilmedi", @@ -1250,7 +1246,6 @@ "1820332333": "Doldur", "1824193700": "Bu blok size en son tik değerinin son basamağını verir.", "1827607208": "Dosya yüklenmedi.", - "1828994348": "DMT5, {{country}} için mevcut değil", "1832974109": "SmartTrader", "1833481689": "Kilidini aç", "1837762008": "Kasiyere erişmek için lütfen hesap ayarlarınızda hesabınızı doğrulamak üzere kimlik kanıtınızı ve adres kanıtınızı sunun.", @@ -1308,7 +1303,6 @@ "1887852176": "Site güncelleniyor", "1889357660": "Dakika cinsinden 60480 dakikaya kadar bir değer girin (6 haftaya eşit).", "1890171328": "Aşağıdaki Kabul Et'e tıklayarak ve Hesap Açılışına devam ederek, kendinizi doğru şekilde değerlendirebileceğiniz veya azaltabileceğiniz bilgi ve deneyime sahip olmayabileceğiniz risklere (ki önemli boyutta olabilir, yatırılan toplamın tamamının kaybedilme riski de dahil olmak üzere) maruz bırakabileceğinizi unutmayın.", - "1890284485": "DTrader'ı keşfedin", "1890332321": "Belirli bir metin dizesinin sayı, boşluk, noktalama işaretleri ve semboller gibi karakter sayısını verir.", "1894667135": "Lütfen adres kanıtınızı doğrulayın", "1898670234": "{{opening_day}}, <0> {{opening_date}} tarihinde {{formatted_opening_time} (GMT).", @@ -1365,6 +1359,7 @@ "1971898712": "Hesap ekle veya yönet", "1973536221": "Henüz açık pozisyonunuz yok.", "1982912252": "Bir periyotlu bir listeden Göreceli Güç Endeksi (RSI)", + "1983001416": "Çarpan ve bahis gibi ticari seçeneklerinizi tanımlayın. Bu blok yalnızca çarpanlar ticaret tipi ile kullanılabilir. Başka bir ticari tip seçerseniz, bu blok Ticaret opsiyonları bloğuyla değiştirilir.", "1983387308": "Önizleme", "1983544897": "Posta kutusu adres olarak kabul edilmez", "1983676099": "Ayrıntılar için lütfen e-postanızı kontrol edin.", @@ -1491,7 +1486,6 @@ "2138861911": "Taramalar ve fotokopiler kabul edilmez", "2139171480": "Reset Up/Reset Down", "2139362660": "sol taraf", - "2141055709": "Yeni {{type}} parolası", "2143803283": "Satın Alma Hatası", "2144609616": "\"Reset-Down\"ı seçerseniz çıkış noktası giriş noktasından veya sıfırlama zamanındaki noktadan kesinlikle düşükse ödeme kazanırsınız.", "2145690912": "Gelir Kazanma", @@ -1948,7 +1942,6 @@ "-582721696": "İzin verilen geçerli geri çekme miktarı {{format_min_withdraw_amount}} ile {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "daha fazla", "-1684548351": "Kripto hesabına geç", - "-1345040662": "Kriptopara birimi satın almanın bir yolunu mu arıyorsunuz?", "-197251450": "{{currency_code}} ile ticaret yapmak istemiyor musunuz? Başka bir kripto para birimi hesabı açabilirsiniz.", "-212277385": "Fiat hesabınıza para yatırmış olduğunuz veya gerçek bir DMT5 veya Deriv X hesabı oluşturduğunuz için hesabınızın para birimini artık değiştiremezsiniz. Açıklığa kavuşturulması için lütfen <0>canlı sohbet aracılığıyla bizimle iletişime geçin.", "-1900848111": "Bu sizin {{currency_code}} hesabınız.", @@ -2022,6 +2015,7 @@ "-811190405": "Zaman", "-2004264970": "Cüzdan adresinizin 25 ila 64 karakteri olmalıdır.", "-1707299138": "{{currency_symbol}} cüzdan adresiniz", + "-1179992129": "Tüm ödeme acenteleri", "-922432739": "Lütfen geçerli bir müşteri oturum açma kimliği girin.", "-1024241603": "Yetersiz bakiye.", "-1979554765": "Lütfen geçerli bir açıklama girin.", @@ -2033,7 +2027,6 @@ "-1388977563": "Kopyalandı!", "-1962894999": "Bu adres yalnızca BIR KEZ kullanılabilir. Lütfen bir sonraki işleminiz için yeni bir tane kopyalayın.", "-451858550": "'Devam'a tıklayarak, üçüncü taraf bir ödeme hizmeti sağlayıcısı olan {{ service }} konumuna yönlendirileceksiniz. {{ website_name }}'in {{ service }} tarafından sağlanan içerik veya hizmetlerden sorumlu olmadığını lütfen unutmayın. {{ service }} hizmetleriyle ilgili herhangi bir sorunla karşılaşırsanız, doğrudan {{ service }} ile iletişime geçmelisiniz.", - "-1179992129": "Tüm ödeme acenteleri", "-344959847": "Yerel ödeme yöntemleriniz veya para birimleriniz {{website_name}} üzerinde desteklenmiyorsa, bir ödeme acentesi sizin için para yatırma ve para çekme işlemlerini gerçekleştirmeye yetkilidir.", "-1232852916": "İşlemi görüntülemek için {{currency}} hesabınıza geçiyoruz.", "-38063175": "{{account_text}} cüzdan", @@ -2056,6 +2049,7 @@ "-1615615253": "Tron'u desteklemiyoruz, depozito için lütfen sadece Ethereum ({{token}}) kullanın.", "-1831000957": "Lütfen depozitinizin geleceği kanalı seçin.", "-314177745": "Ne yazık ki, sunucumuz çökmüş olduğu için adresi alamadık. Lütfen adresi yeniden yüklemek için Yenile'ye tıklayın veya daha sonra tekrar deneyin.", + "-1345040662": "Kriptopara birimi satın almanın bir yolunu mu arıyorsunuz?", "-2005265642": "Fiat onramp, Deriv kripto hesaplarınızı yüklemek için itibari para birimlerini kripto para birimlerine dönüştürmenizi sağlayan bir kasiyer hizmetidir. Burada üçüncü taraf kripto borsaları listelenmiştir. Hizmetlerini kullanmak için onlarla bir hesap oluşturmanız gerekir.", "-1593063457": "Ödeme kanalı seç", "-130833284": "Maksimum ve minimum para çekme limitlerinizin sabit olmadığını lütfen unutmayın. Kriptopara biriminin yüksek volatilitesi nedeniyle değişirler.", @@ -2093,6 +2087,8 @@ "-1354485738": "Reset Call", "-376148198": "Only Ups", "-1337379177": "Yüksek Tik", + "-328036042": "Lütfen mevcut potansiyel kayıptan daha yüksek bir zarar durdur miktarı girin.", + "-2127699317": "Geçersiz zarar durdur. Zarar durdur bahisden fazla olamaz.", "-1940333322": "Bu hesap için DBot mevcut değil", "-1210387519": "DMT5 panosuna gidin", "-1223145005": "Kayıp miktarı: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Maksimum süre: {{ max }}", "-1194719174": "Bir işlem kaybetmeniz durumunda bahisinizi artırmak için kullanılan çarpan miktarı.", "-749186458": "Botunuz çalışırken hesap değiştirme devre dışı bırakıldı. Hesap değiştirmeden önce lütfen botunuzu durdurun.", + "-662836330": "Mevcut sözleşmenizi korumak veya kapatmak ister misiniz? Kullanmaya devam etmeye karar verirseniz, bunu daha sonra <0>Raporlar sayfasından kontrol edip kapatabilirsiniz.", + "-597939268": "Sözleşmemi sürdür", "-1322453991": "Botu çalıştırmak için oturum açmanız gerekir.", "-1483938124": "Bu strateji şu anda DBot ile uyumlu değil.", + "-236548954": "Sözleşme Güncelleme Hatası", "-1428017300": "O", "-1450728048": "DEN", "-255051108": "SİZ", "-1845434627": "DİR", "-931434605": "BU", "-740712821": "BİR", + "-187634388": "Bu blok zorunludur. Burada, robotunuzun alım satım işlemine devam edip etmeyeceğine karar verebilirsiniz. Bu bloğun yalnızca bir kopyasına izin verilir.", + "-2105473795": "Tek giriş parametresi blok çıktısının nasıl biçimlendirileceğini belirler. Giriş parametresinin \"dize\" olma durumunda, hesap para birimi eklenecektir.", + "-1800436138": "2. \"sayılar\" için: 1325.68", + "-2046396241": "Bu blok zorunludur. Bu bloğun yalnızca bir kopyasına izin verilir. DBot'u açtığınızda, varsayılan olarak kanvasa eklenir.", + "-530632460": "Bu blok, piyasa fiyatının seçilen yönde mi, yoksa aksi yönde mi hareket ettiğini belirlemek için kullanılır. Size \"Doğru\" veya \"Yanlış\" değerini verir.", + "-1875717842": "Örnekler:", + "-890079872": "1. Eğer seçilen yön \"Rise\" ise ve önceki tik değeri geçerli tik değerinden küçükse çıktı \"Doğru\" olacaktır. Aksi takdirde, çıktı boş bir dize olur.", + "-489739641": "2. Eğer seçilen yön \"Fall\" ise ve önceki tik değeri geçerli tik değerinden büyükse çıktı \"Doğru\" olacaktır. Aksi takdirde, çıktı boş bir dize olur.", + "-2116076360": "4 mesaj türü vardır:", + "-1421941045": "2. Dikkat edilmesi gereken bir şeyi vurgulamak için \"Uyarı\" mesajı sarı renkte görüntülenir.", + "-277850921": "Eğer \"Win\" seçilirse, son işlem başarılı olursa \"Doğru\" olarak döner. Aksi takdirde, boş bir dize olarak döndürür.", + "-1918487001": "Örnek:", + "-2139916657": "1. Aşağıdaki örnekte, yalnızca bir yineleme tamamlansa bile \"x\" \"yanlış\" olduğunda döngü sonlandırılır", + "-1238900333": "2. Aşağıdaki örnekte, eğer \"x\" \"Yanlış\" ise döngü aşağıdaki bloku yürütmeden sonraki yinelemeye atlar", + "-1729479576": "Örneğin liste öğelerine erişmek için döngünün içinde \"i\" kullanabilirsiniz", + "-1474636594": "Bu örnekte döngü, verilen listedeki öğelerin sayısı olduğu için üç kez tekrarlanır. Her yineleme sırasında \"i\" değişkenine listeden bir değer atanır. ", + "-908772734": "Bu blok bir ifadeyi değerlendirir ve yalnızca ifade doğru olduğunda bir eylem gerçekleştirir.", + "-334040831": "Bu örnekte, x değeri 10'dan büyük veya eşit olduğu sürece talimatlar tekrarlanır. X değeri 10'in altına düştüğünde döngü sonlandırılır.", + "-444267958": "\"Epoch'dan Bu Yana Saniyeler\" bloğu 1 Ocak 1970'den bu yana geçen saniye sayısını geri verir.", + "-447522129": "Belirli bir süre sonra bir işlemi tekrarlamak istediğinizde buna ihtiyacınız olabilir.", + "-1488259879": "\"Mum\" terimi, mum çubuğu grafiğinde ki herbir barı ifade eder. Her mum, seçilen zaman aralığı için dört piyasa fiyatını temsil eder:", + "-2020693608": "Grafikdeki her bir mum çubuğu, seçilen zaman aralığı için 4 piyasa fiyatını temsil eder:", + "-62728852": "- Açılış fiyatı: açılma fiyatı", + "-1247744334": "- Düşük fiyat: en düşük fiyat", + "-1386365697": "- Kapanış fiyatı: kapanma fiyatı", + "-1498732382": "Siyah (veya kırmızı) bir mum, açılış fiyatının kapanış fiyatından yüksek olduğunu gösterir. Bu, piyasa fiyatının aşağı yönlü bir hareketini temsil eder.", + "-1871864755": "Bu blok, seçilen piyasanın en son tik değerinin son basamağını verir. En son tik değeri 1410.90 ise, bu blok 0'e geri döner. Çift/Tek, Matches/Differs, yada Higher/Lower gibi rakam tabanlı sözleşmelerde kullanışlıdır.", + "-1029671512": "Eğer \"VEYA\" işlemi seçilirse, verilen değerlerden biri veya her ikisi de \"Doğru\" ise blok \"Doğru\" olarak geri döner", + "-210295176": "Mevcut İşlemler:", + "-1385862125": "- Ek", + "-983721613": "- Çıkarma", + "-854750243": "- Çarpma", + "-1394815185": "Verilen sayı aralığın alt sınırından küçükse, blok alt sınır değerini verir. Benzer şekilde, verilen sayı üst sınırdan büyükse, blok daha yüksek sınır değerini verir. Verilen değer sınırlar arasındaysa, blok verilen değeri değiştirmeden verir.", + "-1034564248": "Aşağıdaki örnekte blok, verilen değer (5) alt sınırdan (10) düşük olduğu için 10 değerini verir", + "-2009817572": "Bu blok aşağıdaki işlemleri belirli bir numara için gerçekleştirir", + "-671300479": "Kullanılabilir işlemler şunlardır:", + "-514610724": "- Mutlak", + "-1923861818": "- Euler'in sayısı (2.71) belirli bir sayının gücü için", + "-1556344549": "Bunu yapmanın yolu:", + "-1061127827": "Aşağıdaki URL'yi ziyaret edin, yerine 1. Adımda oluşturduğunuz Telegram API token kullandığınızdan emin olun: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. DBot'a geri dönün ve Telegramı Bildir bloğunu çalışma alanına ekleyin. Telegram API tokeni ve sohbet kimliğini blok alanlarına uygun şekilde yapıştırın.", + "-311389920": "Bu örnekte, mum listesindeki açılış fiyatları \"cl\" adlı bir değişkene atanır.", + "-1460794449": "Bu blok, seçilen bir zaman aralığında bir mum listesi verir.", + "-1634242212": "Bir fonksiyon bloğunda kullanılan bu blok, belirli bir koşul doğru olduğunda bir değer verir.", + "-2012970860": "Bu blok size son sözleşmeniz hakkında bilgi verir.", + "-1504783522": "Aşağıdakilerden birini görmeyi seçebilirsiniz:", + "-10612039": "- Kar: Kazandığınız kâr", + "-555996976": "- Giriş zamanı: sözleşmenin başlangıç zamanı", + "-1391071125": "- Çıkış zamanı: Sözleşmenin sona erme zamanı", + "-1961642424": "- Çıkış değeri: sözleşmenin son tik değeri", + "-111312913": "- Bariyer: Sözleşmenin bariyer değeri (stays in/out, touch/no touch vb. gibi bariyer tabanlı ticaret türleri için geçerlidir)", + "-674283099": "- Sonuç: Son sözleşmenin sonucu: \"kazanç\" veya \"zarar\"", + "-704543890": "Bu blok size açılış fiyat, kapanış fiyat, yüksek fiyat, düşük fiyat ve açılış zamanı gibi seçilen mum değerini verir. Giriş parametresi olarak bir mum gerekir.", + "-482281200": "Aşağıdaki örnekte, açılış fiyatı \"op\" değişkenine atandı.", + "-364621012": "Bu blok, belirli bir zaman aralığı için belirtilen mum değerini verir. İstediğiniz değeri seçebilirsiniz:", + "-232477769": "- Açılış: açılış fiyatı", + "-610736310": "Sözleşmenizi piyasa fiyatı üzerinden satmak için bu bloğu kullanın. Sözleşmenizi satmak isteğe bağlıdır. Piyasa trendi olumsuz olursa satış yapmayı tercih edebilirsiniz.", + "-1307657508": "Bu blok, sözleşmenizi satmaya karar verirseniz potansiyel kar veya zararı size verir. Yalnızca \"Satış koşulları\" kök bloğunda kullanılabilir.", + "-1921072225": "Aşağıdaki örnekte, sözleşme yalnızca potansiyel kâr veya zarar bahisden fazla olduğunda satılabilir.", + "-955397705": "SMA, birkaç zaman periyodu için tikler veya mumlar listesine piyasa fiyatını ekler ve toplamı bu zaman periyodu sayısına böler.", + "-1424923010": "burada n periyot sayısıdır.", + "-1835384051": "SMA'nın size söylediği", + "-749487251": "SMA, trendin bir göstergesi olarak görev yapar. Eğer SMA'nın puanı artıyorsa, o zaman piyasa fiyatı da artıyor yada tam tersi oluyor. Periyot sayısı ne kadar büyük olursa, SMA hattı o kadar düzgün olur.", + "-1996062088": "Bu örnekte, SMA hattının her noktası son 10 gün için kapanış fiyatlarının aritmetik ortalamasıdır.", + "-1866751721": "Giriş listesi, tikler veya mumların bir listesini alırken, periyot belirtilen zaman periyotudur.", + "-1097076512": "Piyasa eğiliminin yönünü belirlemek için her bir bot çalışması üzerinde hesaplanan SMA değerlerini karşılaştırabilirsiniz. Alternatif olarak, basit Hareketli Ortalama dizi bloğu olan SMA bloğunun bir varyasyonunu da kullanabilirsiniz.\n\nHareketli Ortalama Dizi. ", + "-1254849504": "Bir 10 periyotu girilirse, Basit Hareketli Ortalama dizi bloğu, 10 periyotuna göre hesaplanan SMA değerlerinin bir listesini verir.", + "-1190046167": "Bu blok, özelleştirilmiş bir mesaj içeren bir iletişim kutusu görüntüler. İletişim kutusu görüntülendiğinde stratejiniz duraklatılır ve yalnızca \"Tamam\" öğesine tıkladıktan sonra devam eder.", + "-859028989": "Bu örnekte, tarih ve saat yeşil bir bildirim kutusunda görüntülenir.", + "-1452086215": "Bu örnekte, 1 Ağustos 2019 gece yarısı bir Rise sözleşmesi satın alınacak.", + "-1765276625": "Çarpan açılır menüsüne tıklayın ve takas etmek istediğiniz çarpan değerini seçin.", + "-1872233077": "Potansiyel kârınız seçtiğiniz çarpan değeriyle çarpılacak.", + "-614454953": "Çarpanlar hakkında daha fazla bilgi için, lütfen <0>Çarpanlar sayfasına gidin.", + "-2078588404": "İstediğiniz piyasa ve varlık türünü seçin. Örneğin, Forex > Major Çiftleri > AUD/JPY", + "-2037446013": "1. Ticaret türü", + "-533927844": "İstediğiniz ticari türünü seçin. Örneğin, Up/Down > Rise/Fall", + "-1192411640": "4. Varsayılan Mum Aralığı", + "-485434772": "8. Opsiyon Ticareti", + "-1827646586": "Bu blok, bir değişkene belirli bir değer atar ve zaten yoksa değişkeni oluşturur.", "-254421190": "Liste: ({{message_length}})", "-9461328": "Güvenlik ve gizlilik", "-418247251": "Günlüğünüzü indirin.", @@ -2209,17 +2287,6 @@ "-398198412": "Hepsi bir arada FX ve CFD ticaret platformu olan Deriv MT5 (DMT5) ile ticaret yapın.", "-1793883644": "FX ve CFD'leri özelleştirilebilir, kullanımı kolay bir ticaret platformunda takas edin.", "-1246992539": "Binary Bot", - "-563774117": "Pano", - "-773544978": "Ev", - "-1003047246": "Uygulamalarım", - "-2024365882": "Keşfedin", - "-2038666662": "Hakkımızda", - "-832198631": "Kredi/Banka kartları", - "-1787820992": "Platformlar", - "-837532140": "Ticaret Türleri", - "-663862998": "Piyasalar", - "-947407631": "Sentetik Endeksler", - "-362324454": "Emtialar", "-821418875": "Tüccar", "-1309011360": "Açık pozisyonlar", "-679102561": "Sözleşme detayları", @@ -2317,41 +2384,47 @@ "-618539786": "Hesabınızın kapatılması planlandı", "-945275490": "Opsiyonlar hesabınızdan tüm fonları çekin.", "-705744796": "Demo hesap bakiyeniz maksimum sınıra ulaştı ve yeni işlem yapamayacak. Demo hesabınızdan alım satım işlemine devam etmek için bakiyenizi sıfırlayın.", - "-2067423661": "Deriv hesabınız için daha güçlü güvenlik", - "-1719731099": "İki faktörlü kimlik doğrulama ile hesabınızı hem şifrenizle hem de telefonunuzla koruyacaksınız - böylece birisi şifrenizi bilse bile hesabınıza yalnızca siz erişebilirsiniz.", - "-1738575826": "Kasiyere erişmek için lütfen gerçek hesabınıza geçin veya bir hesap oluşturun.", + "-1585069798": "Uygunluk Testinizi tamamlamak için lütfen aşağıdaki bağlantıya tıklayın.", + "-1287141934": "Daha fazla bilgi edinin", + "-367759751": "Hesabınız doğrulanmadı", + "-596690079": "Deriv'i kullanmaktan keyif alıyor musunuz?", + "-265932467": "Düşüncelerinizi duymayı çok isteriz", + "-1815573792": "Yorumunuzu Trustpilot'a bırakın.", + "-823349637": "Trustpilot'a git", "-1204063440": "Hesabımın para birimini ayarla", + "-1164554246": "Süresi dolmuş kimlik belgeleri gönderdiniz", + "-219846634": "Kimliğinizi doğrulayalım", + "-529038107": "Yükle", + "-87149410": "DTrader web uygulamasını yükleyin", + "-1738575826": "Kasiyere erişmek için lütfen gerçek hesabınıza geçin veya bir hesap oluşturun.", + "-1329329028": "30 günlük ciro limitinizi ayarlamadınız", + "-132893998": "Kasiyere erişiminiz geçici olarak devre dışı bırakıldı, çünkü 30 günlük ciro limitinizi ayarlamadınız. Lütfen kendini-dışlama'ya gidin ve sınırı ayarlayın.", + "-1852207910": "MT5 para çekme devre dışı", + "-764323310": "Hesabınızda MT5 para çekme işlemleri devre dışı bırakıldı. Daha fazla bilgi için lütfen e-postanızı kontrol edin.", + "-1435762703": "Lütfen kimliğinizi doğrulayın", + "-1902997828": "Şimdi yenile", + "-753791937": "Deriv'in yeni bir sürümü mevcut", + "-1775108444": "Bu sayfa, en son sürümü yüklemek için 5 dakika içinde otomatik olarak yenilenir.", + "-1175685940": "Para çekme işlemlerini etkinleştirmek için lütfen canlı sohbet ile bizimle iletişime geçin.", + "-1125797291": "Parola güncellendi.", + "-157145612": "Lütfen güncellenmiş parolanızla oturum açın.", + "-87177461": "Para yatırma işlemlerini etkinleştirmek için lütfen hesap ayarlarınıza gidin ve kişisel bilgilerinizi tamamlayın.", + "-904632610": "Bakiyenizi sıfırlayın", + "-470018967": "Bakiyeyi sıfırla", + "-156611181": "Kilidini açmak için lütfen hesap ayarlarınızda finansal değerlendirmeyi tamamlayın.", "-1925176811": "Şu anda para çekme işlemleri gerçekleştirilemiyor", "-980696193": "Sistem bakımı nedeniyle para çekme işlemleri geçici olarak kullanılamıyor. Bakım tamamlandığında para çekme işlemi yapabilirsiniz.", "-1647226944": "Şu anda para yatırma işlemi gerçekleştirilemiyor", "-488032975": "Sistem bakımı nedeniyle para yatırma işlemleri geçici olarak kullanılamıyor. Bakım tamamlandığında para yatırma işlemlerini yapabilirsiniz.", "-67021419": "Sistem bakımı nedeniyle kasiyerimiz geçici olarak devre dışı. Bakım tamamlandıktan sonra birkaç dakika içinde kasiyere erişebilirsiniz.", - "-219846634": "Kimliğinizi doğrulayalım", - "-367759751": "Hesabınız doğrulanmadı", - "-1175685940": "Para çekme işlemlerini etkinleştirmek için lütfen canlı sohbet ile bizimle iletişime geçin.", - "-1852207910": "MT5 para çekme devre dışı", - "-764323310": "Hesabınızda MT5 para çekme işlemleri devre dışı bırakıldı. Daha fazla bilgi için lütfen e-postanızı kontrol edin.", - "-1585069798": "Uygunluk Testinizi tamamlamak için lütfen aşağıdaki bağlantıya tıklayın.", - "-1329329028": "30 günlük ciro limitinizi ayarlamadınız", - "-132893998": "Kasiyere erişiminiz geçici olarak devre dışı bırakıldı, çünkü 30 günlük ciro limitinizi ayarlamadınız. Lütfen kendini-dışlama'ya gidin ve sınırı ayarlayın.", - "-156611181": "Kilidini açmak için lütfen hesap ayarlarınızda finansal değerlendirmeyi tamamlayın.", "-849587074": "Vergi kimlik numaranızı sunmadınız", "-47462430": "Bu bilgiler, yasal ve düzenleyici gereklilikler için zorunludur. Lütfen hesap ayarlarınıza gidin ve en son vergi kimlik numaranızı girin.", - "-87177461": "Para yatırma işlemlerini etkinleştirmek için lütfen hesap ayarlarınıza gidin ve kişisel bilgilerinizi tamamlayın.", + "-2067423661": "Deriv hesabınız için daha güçlü güvenlik", + "-1719731099": "İki faktörlü kimlik doğrulama ile hesabınızı hem şifrenizle hem de telefonunuzla koruyacaksınız - böylece birisi şifrenizi bilse bile hesabınıza yalnızca siz erişebilirsiniz.", + "-822888359": "Para çekme işleminiz kilitli", + "-1197701578": "Lütfen Kimlik Kanıtı'ınızı tekrar gönderin ve kilidi açmak için hesap ayarındaki finansal değerlendirmeyi tamamlayın.", "-2087822170": "Çevrimdışısınız", "-1669693571": "Bağlantınızı kontrol edin.", - "-1125797291": "Parola güncellendi.", - "-157145612": "Lütfen güncellenmiş parolanızla oturum açın.", - "-904632610": "Bakiyenizi sıfırlayın", - "-470018967": "Bakiyeyi sıfırla", - "-1435762703": "Lütfen kimliğinizi doğrulayın", - "-1164554246": "Süresi dolmuş kimlik belgeleri gönderdiniz", - "-1902997828": "Şimdi yenile", - "-753791937": "Deriv'in yeni bir sürümü mevcut", - "-1775108444": "Bu sayfa, en son sürümü yüklemek için 5 dakika içinde otomatik olarak yenilenir.", - "-529038107": "Yükle", - "-87149410": "DTrader web uygulamasını yükleyin", - "-1287141934": "Daha fazla bilgi edinin", "-1998049070": "Çerezleri kullanmayı kabul ediyorsanız Kabul Et'i tıklayın. Daha fazla bilgi için, <0>politikamıza bakın.", "-1721181859": "Bir {{deriv_account}} hesabına ihtiyacınız olacak", "-1989074395": "Lütfen bir {{dmt5_account}} hesabı eklemeden önce bir {{deriv_account}} hesabı ekleyin. {{dmt5_label}} hesabınız için para yatırma ve para çekme işlemleri, {{deriv_label}} hesabınıza para transfer edilerek yapılır.", @@ -2386,6 +2459,7 @@ "-1950045402": "Tüm paranızı geri çekin", "-168971942": "Bu sizin için şu anlama geliyor", "-905560792": "Tamam, anlıyorum", + "-2024365882": "Keşfedin", "-1197864059": "Ücretsiz demo hesabı oluştur", "-1485242688": "Step {{step}}: ({{steps}}'in {{step}}) {{step_title}}", "-1829842622": "Her kriptopara birimi için bir hesap açabilirsiniz.", @@ -2439,6 +2513,7 @@ "-1917706589": "Deriv hesabınızın {{social_identity_provider}}'dan bağlantısı kesildi. Daha sonra oturum açmak için e-posta adresinizi ve parolanızı kullanın.", "-2017825013": "Anlaşıldı", "-505449293": "Deriv hesabınız için yeni bir parola girin.", + "-1787820992": "Platformlar", "-184713104": "Sınırlı riskle kazançlarınızı güçlendirmek için opsiyonlarla sabit ödemeler kazanın veya çarpan ticareti yapın.", "-1571775875": "En amiral gemisi opsiyonlarımız ve çarpanlar ticaret platformumuz.", "-1107320163": "Kodlama gerekmeyecek şekilde işlem yapma sürecini otomatikleştirin.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.Karar lehimize verilirse, kararın verildiği tarihten itibaren 7 gün içinde bizim için bir feragat sağlamanız gerekir ve şikayet kapanmış sayılacaktır.", "-429248139": "5. Yasal Uyarı", "-818926350": "Mali Komisyon, olayın tarihinden itibaren 45 gün içerisinde ve ancak ticaret yapan kişi sorunu doğrudan şirketle çözmeye çalıştıktan sonra itirazları kabul eder.", - "-236548954": "Sözleşme Güncelleme Hatası", "-1282933308": "{{barrier}} değil", "-968190634": "Eşittir {{barrier}}", "-1747377543": "{{barrier}} altında", @@ -2498,8 +2572,6 @@ "-763273340": "Digits", "-1790089996": "YENİ!", "-590018519": "Sözleşme Satın Alındı", - "-328036042": "Lütfen mevcut potansiyel kayıptan daha yüksek bir zarar durdur miktarı girin.", - "-2127699317": "Geçersiz zarar durdur. Zarar durdur bahisden fazla olamaz.", "-405439829": "Üzgünüz, bu hesaba ait olmadığı için bu sözleşmeyi görüntüleyemiyorsun.", "-1714959941": "Bu grafik ekranı tik sözleşmeleri için ideal değildir", "-1254554534": "Lütfen daha iyi bir alım satım deneyimi amacıyla tik için grafik süresini değiştirin.", @@ -2593,22 +2665,13 @@ "-584696680": "“Kâr al” seçeneğini seçerseniz ve kazanmak istediğiniz tutarı belirtirseniz, karınız bu miktardan fazla veya bu miktara eşit olduğunda pozisyonunuz otomatik olarak kapatılır. Kârınız, kapanıştaki piyasa fiyatına bağlı olarak girdiğiniz tutardan fazla olabilir.", "-178096090": "“Kâr al” güncellenemez. Yalnızca “Anlaşma iptali” sona erdiğinde güncelleyebilirsiniz.", "-206909651": "Giriş noktası, sözleşmenizin sunucularımız tarafından işlendiği zamanki piyasa fiyatıdır.", - "-673424733": "Demo hesabı", - "-1066565281": "Sunucu bakımı her Pazar 06:00'da (TSİ) başlar ve 2 saate kadar sürebilir. Bu süre içinde hizmet kesintiye uğrayabilir.", - "-1481390656": "Her Pazar 01:00'dan (TSİ) itibaren sunucu bakımı başlıyor. Bu işlemin tamamlanması 2 saat kadar sürebilir. Bu süre içinde hizmet kesintiye uğrayabilir.", - "-1199152768": "Lütfen diğer platformlarımızı inceleyin.", - "-498346912": "DBot'u Keşfet", + "-464262734": "{{platform}} gerçek {{account_title}} hesap parolasını yönet", "-2042845290": "Yatırımcı parolanız değiştirildi.", "-1882295407": "Parolanız değiştirildi.", "-254497873": "Başka bir kullanıcıya görüntüleme erişimi vermek için bu parolayı kullanın. Onlar alım satım hesabınızı görebilseler de ticaret yapamaz veya başka bir işlem yapamaz.", "-161656683": "Mevcut yatırımcı parolası", "-374736923": "Yeni yatırımcı parolası", "-1793894323": "Yatırımcı parolası oluşturun veya sıfırlayın", - "-464262734": "{{platform}} gerçek {{account_title}} hesap parolasını yönet", - "-1928229820": "Deriv X yatırımcı parolasını sıfırla", - "-1917043724": "DMT5 yatırımcı parolasını sıfırla", - "-1087845020": "asıl", - "-1950683866": "yatırımcı", "-149836494": "İşlem referans numaranız: {{transaction_id}}", "-1382749084": "Ticarete geri dön", "-538215347": "Net mevduatlar", @@ -2737,7 +2800,6 @@ "-1588406981": "Bu blokla yapılan son işlemin sonucunu kontrol edebilirsiniz.", "-1459154781": "Sözleşme Detayları: {{ contract_detail }}", "-1652241017": "Seçilen bir özelliği sözleşme ayrıntıları listesinden okur", - "-2012970860": "Bu blok size son sözleşmeniz hakkında bilgi verir.", "-2082345383": "Bu bloklar kontrolü satın alma koşulları bloğuna transfer eder.", "-172574065": "Bu blok, kontrolü tekrar satın alma koşulları bloğuna aktararak başka bir sözleşme satın almanızı sağlar.", "-403103225": "yeniden başlatın", @@ -2780,7 +2842,6 @@ "-1556495906": "Seçilen zaman aralığına göre mum listesinden belirli değerlerin listesini verir", "-166816850": "Mum değerlerinden bir liste oluştur (1)", "-1261436901": "Mumlar Listesi", - "-1460794449": "Bu blok, seçilen bir zaman aralığında bir mum listesi verir.", "-1174859923": "Seçilen mum değerini okuyun", "-1972165119": "Mum değerini okuyun (1)", "-1956100732": "Bu bloğu, ticaretiniz ne olursa olsun, tiklerin analiz edilmesi için kullanabilirsiniz", @@ -2830,10 +2891,13 @@ "-702370957": "Tarih/saat olarak dönüştürür", "-982729677": "Zaman damgasına dönüştürür", "-311268215": "Bu blok, tarih ve saati temsil eden bir metin dizisini Unix Epoch'tan (1 Ocak 1970) bu yana saniyelere dönüştürür. Saat ve saat dilimi farkı isteğe bağlıdır. Örnek: 2019-01-01 21:03:45 GMT+0800, 1546347825'e dönüştürülecek.", + "-1797602591": "Zarar Durdur : {{ currency }} {{ stop_loss }}", + "-1214929127": "Zarar durdur pozitif bir sayı olmalıdır.", + "-2142851225": "Çarpan ticaret seçenekleri", + "-625636913": "Miktar pozitif bir sayı olmalıdır.", "-1466383897": "Süre: {{ duration_unit }} {{ duration_value }}", "-440702280": "Opsiyon Ticareti", "-1193894978": "Süre ve bahis gibi ticari opsiyonlarınızı tanımlayın. Bazı opsiyonlar yalnızca belirli ticaret türleri için geçerlidir.", - "-625636913": "Miktar pozitif bir sayı olmalıdır.", "-46523443": "Süre değerine izin verilmiyor. Botu çalıştırmak için lütfen {{min}} ile {{max}} arasında bir değer girin.", "-1483427522": "Ticaret türü: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Ticari parametreler", @@ -2841,7 +2905,6 @@ "-783173909": "Opsiyon Ticareti:", "-376956832": "Sözleşmenizin parametrelerini burada tanımlarsınız.", "-1244007240": "eger {{ condition }} sonra", - "-908772734": "Bu blok bir ifadeyi değerlendirir ve yalnızca ifade doğru olduğunda bir eylem gerçekleştirir.", "-1577206704": "başka eğer", "-33796979": "doğru", "-1434883449": "Bu, doğru veya yanlış bir boolean değeri veren tek bir blokdur.", @@ -2903,84 +2966,11 @@ "-1133072029": "Metin Dizesi Uzunluğu", "-1109723338": "yazdır {{ input_text }}", "-736668830": "Yazdır", - "-1190046167": "Bu blok, özelleştirilmiş bir mesaj içeren bir iletişim kutusu görüntüler. İletişim kutusu görüntülendiğinde stratejiniz duraklatılır ve yalnızca \"Tamam\" öğesine tıkladıktan sonra devam eder.", "-1821552998": "{{ input_text }} öğesinin {{ side }} tarafından boşlukları kırp", "-801766026": "sağ taraf", "-474779821": "Boşlukları kırpar", "-1219239717": "Çalışma alanınızda bir veya daha fazla zorunlu blok eksik. Lütfen gerekli blokları ekleyin ve tekrar deneyin.", "-250761331": "Çalışma alanınızda bir veya daha fazla zorunlu blok devre dışı bırakıldı. Lütfen gerekli blokları etkinleştirin ve yeniden deneyin.", - "-187634388": "Bu blok zorunludur. Burada, robotunuzun alım satım işlemine devam edip etmeyeceğine karar verebilirsiniz. Bu bloğun yalnızca bir kopyasına izin verilir.", - "-2105473795": "Tek giriş parametresi blok çıktısının nasıl biçimlendirileceğini belirler. Giriş parametresinin \"dize\" olma durumunda, hesap para birimi eklenecektir.", - "-1800436138": "2. \"sayılar\" için: 1325.68", - "-2046396241": "Bu blok zorunludur. Bu bloğun yalnızca bir kopyasına izin verilir. DBot'u açtığınızda, varsayılan olarak kanvasa eklenir.", - "-530632460": "Bu blok, piyasa fiyatının seçilen yönde mi, yoksa aksi yönde mi hareket ettiğini belirlemek için kullanılır. Size \"Doğru\" veya \"Yanlış\" değerini verir.", - "-1875717842": "Örnekler:", - "-890079872": "1. Eğer seçilen yön \"Rise\" ise ve önceki tik değeri geçerli tik değerinden küçükse çıktı \"Doğru\" olacaktır. Aksi takdirde, çıktı boş bir dize olur.", - "-489739641": "2. Eğer seçilen yön \"Fall\" ise ve önceki tik değeri geçerli tik değerinden büyükse çıktı \"Doğru\" olacaktır. Aksi takdirde, çıktı boş bir dize olur.", - "-2116076360": "4 mesaj türü vardır:", - "-1421941045": "2. Dikkat edilmesi gereken bir şeyi vurgulamak için \"Uyarı\" mesajı sarı renkte görüntülenir.", - "-277850921": "Eğer \"Win\" seçilirse, son işlem başarılı olursa \"Doğru\" olarak döner. Aksi takdirde, boş bir dize olarak döndürür.", - "-1918487001": "Örnek:", - "-2139916657": "1. Aşağıdaki örnekte, yalnızca bir yineleme tamamlansa bile \"x\" \"yanlış\" olduğunda döngü sonlandırılır", - "-1238900333": "2. Aşağıdaki örnekte, eğer \"x\" \"Yanlış\" ise döngü aşağıdaki bloku yürütmeden sonraki yinelemeye atlar", - "-1729479576": "Örneğin liste öğelerine erişmek için döngünün içinde \"i\" kullanabilirsiniz", - "-1474636594": "Bu örnekte döngü, verilen listedeki öğelerin sayısı olduğu için üç kez tekrarlanır. Her yineleme sırasında \"i\" değişkenine listeden bir değer atanır. ", - "-334040831": "Bu örnekte, x değeri 10'dan büyük veya eşit olduğu sürece talimatlar tekrarlanır. X değeri 10'in altına düştüğünde döngü sonlandırılır.", - "-444267958": "\"Epoch'dan Bu Yana Saniyeler\" bloğu 1 Ocak 1970'den bu yana geçen saniye sayısını geri verir.", - "-447522129": "Belirli bir süre sonra bir işlemi tekrarlamak istediğinizde buna ihtiyacınız olabilir.", - "-1488259879": "\"Mum\" terimi, mum çubuğu grafiğinde ki herbir barı ifade eder. Her mum, seçilen zaman aralığı için dört piyasa fiyatını temsil eder:", - "-2020693608": "Grafikdeki her bir mum çubuğu, seçilen zaman aralığı için 4 piyasa fiyatını temsil eder:", - "-62728852": "- Açılış fiyatı: açılma fiyatı", - "-1247744334": "- Düşük fiyat: en düşük fiyat", - "-1386365697": "- Kapanış fiyatı: kapanma fiyatı", - "-1498732382": "Siyah (veya kırmızı) bir mum, açılış fiyatının kapanış fiyatından yüksek olduğunu gösterir. Bu, piyasa fiyatının aşağı yönlü bir hareketini temsil eder.", - "-1871864755": "Bu blok, seçilen piyasanın en son tik değerinin son basamağını verir. En son tik değeri 1410.90 ise, bu blok 0'e geri döner. Çift/Tek, Matches/Differs, yada Higher/Lower gibi rakam tabanlı sözleşmelerde kullanışlıdır.", - "-1029671512": "Eğer \"VEYA\" işlemi seçilirse, verilen değerlerden biri veya her ikisi de \"Doğru\" ise blok \"Doğru\" olarak geri döner", - "-210295176": "Mevcut İşlemler:", - "-1385862125": "- Ek", - "-983721613": "- Çıkarma", - "-854750243": "- Çarpma", - "-1394815185": "Verilen sayı aralığın alt sınırından küçükse, blok alt sınır değerini verir. Benzer şekilde, verilen sayı üst sınırdan büyükse, blok daha yüksek sınır değerini verir. Verilen değer sınırlar arasındaysa, blok verilen değeri değiştirmeden verir.", - "-1034564248": "Aşağıdaki örnekte blok, verilen değer (5) alt sınırdan (10) düşük olduğu için 10 değerini verir", - "-2009817572": "Bu blok aşağıdaki işlemleri belirli bir numara için gerçekleştirir", - "-671300479": "Kullanılabilir işlemler şunlardır:", - "-514610724": "- Mutlak", - "-1923861818": "- Euler'in sayısı (2.71) belirli bir sayının gücü için", - "-1556344549": "Bunu yapmanın yolu:", - "-1061127827": "Aşağıdaki URL'yi ziyaret edin, yerine 1. Adımda oluşturduğunuz Telegram API token kullandığınızdan emin olun: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. DBot'a geri dönün ve Telegramı Bildir bloğunu çalışma alanına ekleyin. Telegram API tokeni ve sohbet kimliğini blok alanlarına uygun şekilde yapıştırın.", - "-311389920": "Bu örnekte, mum listesindeki açılış fiyatları \"cl\" adlı bir değişkene atanır.", - "-1634242212": "Bir fonksiyon bloğunda kullanılan bu blok, belirli bir koşul doğru olduğunda bir değer verir.", - "-1504783522": "Aşağıdakilerden birini görmeyi seçebilirsiniz:", - "-10612039": "- Kar: Kazandığınız kâr", - "-555996976": "- Giriş zamanı: sözleşmenin başlangıç zamanı", - "-1391071125": "- Çıkış zamanı: Sözleşmenin sona erme zamanı", - "-1961642424": "- Çıkış değeri: sözleşmenin son tik değeri", - "-111312913": "- Bariyer: Sözleşmenin bariyer değeri (stays in/out, touch/no touch vb. gibi bariyer tabanlı ticaret türleri için geçerlidir)", - "-674283099": "- Sonuç: Son sözleşmenin sonucu: \"kazanç\" veya \"zarar\"", - "-704543890": "Bu blok size açılış fiyat, kapanış fiyat, yüksek fiyat, düşük fiyat ve açılış zamanı gibi seçilen mum değerini verir. Giriş parametresi olarak bir mum gerekir.", - "-482281200": "Aşağıdaki örnekte, açılış fiyatı \"op\" değişkenine atandı.", - "-364621012": "Bu blok, belirli bir zaman aralığı için belirtilen mum değerini verir. İstediğiniz değeri seçebilirsiniz:", - "-232477769": "- Açılış: açılış fiyatı", - "-610736310": "Sözleşmenizi piyasa fiyatı üzerinden satmak için bu bloğu kullanın. Sözleşmenizi satmak isteğe bağlıdır. Piyasa trendi olumsuz olursa satış yapmayı tercih edebilirsiniz.", - "-1307657508": "Bu blok, sözleşmenizi satmaya karar verirseniz potansiyel kar veya zararı size verir. Yalnızca \"Satış koşulları\" kök bloğunda kullanılabilir.", - "-1921072225": "Aşağıdaki örnekte, sözleşme yalnızca potansiyel kâr veya zarar bahisden fazla olduğunda satılabilir.", - "-955397705": "SMA, birkaç zaman periyodu için tikler veya mumlar listesine piyasa fiyatını ekler ve toplamı bu zaman periyodu sayısına böler.", - "-1424923010": "burada n periyot sayısıdır.", - "-1835384051": "SMA'nın size söylediği", - "-749487251": "SMA, trendin bir göstergesi olarak görev yapar. Eğer SMA'nın puanı artıyorsa, o zaman piyasa fiyatı da artıyor yada tam tersi oluyor. Periyot sayısı ne kadar büyük olursa, SMA hattı o kadar düzgün olur.", - "-1996062088": "Bu örnekte, SMA hattının her noktası son 10 gün için kapanış fiyatlarının aritmetik ortalamasıdır.", - "-1866751721": "Giriş listesi, tikler veya mumların bir listesini alırken, periyot belirtilen zaman periyotudur.", - "-1097076512": "Piyasa eğiliminin yönünü belirlemek için her bir bot çalışması üzerinde hesaplanan SMA değerlerini karşılaştırabilirsiniz. Alternatif olarak, basit Hareketli Ortalama dizi bloğu olan SMA bloğunun bir varyasyonunu da kullanabilirsiniz.\n\nHareketli Ortalama Dizi. ", - "-1254849504": "Bir 10 periyotu girilirse, Basit Hareketli Ortalama dizi bloğu, 10 periyotuna göre hesaplanan SMA değerlerinin bir listesini verir.", - "-859028989": "Bu örnekte, tarih ve saat yeşil bir bildirim kutusunda görüntülenir.", - "-1452086215": "Bu örnekte, 1 Ağustos 2019 gece yarısı bir Rise sözleşmesi satın alınacak.", - "-2078588404": "İstediğiniz piyasa ve varlık türünü seçin. Örneğin, Forex > Major Çiftleri > AUD/JPY", - "-2037446013": "1. Ticaret türü", - "-533927844": "İstediğiniz ticari türünü seçin. Örneğin, Up/Down > Rise/Fall", - "-1192411640": "4. Varsayılan Mum Aralığı", - "-485434772": "8. Opsiyon Ticareti", - "-1827646586": "Bu blok, bir değişkene belirli bir değer atar ve zaten yoksa değişkeni oluşturur.", "-1687036846": "İndirme bloğu", "-1266781295": "Genişlet", "-894560707": "fonksiyon", diff --git a/packages/translations/src/translations/vi.json b/packages/translations/src/translations/vi.json index 2e9375f9e659..24de0c192152 100644 --- a/packages/translations/src/translations/vi.json +++ b/packages/translations/src/translations/vi.json @@ -7,7 +7,6 @@ "11872052": "Được, tôi sẽ quay lại sau", "14365404": "Yêu cầu lỗi vì: {{ message_type }}, thử lại trong {{ delay }} giây", "15377251": "Khoản lãi: {{profit}}", - "17217397": "Tiền điện tử", "17843034": "Kiểm tra trạng thái xác minh của tài liệu xác nhận danh tính", "21035405": "Vui lòng cho chúng tôi biết lý do bạn rời đi. (chọn được {{ allowed_reasons }} lý do.)", "25854018": "Khối này hiển thị các thông báo trong bảng điều khiển của nhà phát triển, với một đầu vào có thể là một chuỗi văn bản, một số, boolean hoặc một mảng dữ liệu.", @@ -22,6 +21,7 @@ "46523711": "Chứng minh danh tính của bạn đã được phê duyệt", "49963458": "Chọn một lựa chọn", "54185751": "Ít hơn $100,000", + "55340304": "Giữ hợp đồng hiện tại của bạn?", "55916349": "Tất cả", "58254854": "Phạm vi", "59169515": "Nếu bạn chọn \"Châu Á Tăng\", bạn sẽ giành chiến thắng nếu giá ở tick cuối cùng cao hơn so giá trung bình của các tick.", @@ -61,7 +61,6 @@ "111931529": "Tổng tiền cược tối đa qua 7 ngày", "113378532": "ETH/USD", "113884303": "Chỉ số Đức", - "113933902": "Tải ứng dụng Deriv X", "115032488": "Giá mua và Lãi/Lỗ", "116005488": "Chỉ số", "117318539": "Mật khẩu phải có chữ cái tiếng Anh viết thường và viết hoa kèm theo số.", @@ -163,7 +162,6 @@ "270339490": "Nếu bạn chọn \"Trên\", bạn sẽ giành chiến thắng nếu chữ số cuối cùng của tick cuối cùng lớn hơn so với dự đoán bạn đưa ra.", "270610771": "Trong ví dụ này, giá bắt đầu của một nến được gán vào biến \"candle_open_price\".", "270712176": "giảm dần", - "270727821": "Chỉ số chứng khoán", "270780527": "Bạn đã đạt giới hạn tải tài liệu của mình.", "272179372": "Khung này thường được sử dụng để điều chỉnh các tham số của giao dịch tiếp theo và để thực hiện logic dừng lỗ/chốt lãi.", "273350342": "Sao chép và dán token lên ứng dụng.", @@ -197,7 +195,6 @@ "317601768": "Chủ đề", "318865860": "đóng", "318984807": "Khung này lặp lại một số lần xác định các chỉ dẫn đã có sẵn trong nó.", - "319538091": "Tài chính STP DMT5", "323179846": "Vòng lặp thời gian cho từng nến có thể cài đặt từ một phút tới một ngày.", "323209316": "Chọn một chiến lược Bot Deriv", "325662004": "Mở rộng Khung", @@ -248,7 +245,6 @@ "384303768": "Khung này trả về \"Đúng\" nếu nến cuối cùng có màu đen. Nó có thể được đặt ở bất cứ đâu trên biểu đồ, ngoại trừ trong khung Tham số giao dịch gốc.", "386502387": "Bot đang không chạy", "389923099": "Phóng to", - "390647540": "Tài khoản Thực", "390890891": "Quý trước", "391915203": "Bảo hiểm rủi ro", "392582370": "Giảm tương đương", @@ -256,7 +252,6 @@ "396961806": "Chúng tôi không hỗ trợ Polygon (Matic), để gửi tiền, vui lòng chỉ sử dụng Ethereum ({{token}}).", "399387585": "Vui lòng kiểm tra email để có thêm chi tiết. Nếu bạn có bất kỳ câu hỏi nào, vui lòng đi tới <0>Trung tâm Hỗ trợ của chúng tôi.", "401339495": "Xác minh địa chỉ", - "402343402": "Do vấn đề với máy chủ, một số tài khoản {{platform}} của bạn tạm thời không khả dụng. Vui lòng thông cảm cho chúng tôi và cảm ơn sự kiên nhẫn của bạn.", "403456289": "Công thức của SMA là:", "404743411": "Tổng số tiền gửi", "406359555": "Chi tiết hợp đồng", @@ -271,6 +266,7 @@ "427134581": "Thử dùng loại file khác.", "427617266": "Bitcoin", "428709688": "Khoảng thời gian nghỉ bạn ưa thích giữa mỗi báo cáo:", + "432508385": "Chốt lãi: {{ currency }} {{ take_profit }}", "432519573": "Tài liệu đã được tải lên", "433348384": "Tài khoản thật không được hỗ trợ cho những người liên quan tới chính trị (PEP).", "433616983": "2. Giai đoạn điều tra", @@ -326,7 +322,6 @@ "505793554": "ký tự cuối", "510815408": "Chỉ dùng chữ cái, số, dấu cách, dấu gạch nối", "514031715": "danh sách {{ input_list }} trống", - "514776243": "Mật khẩu cho {{account_type}} của bạn đã được đổi.", "514948272": "Sao chép đường dẫn", "518955798": "7. Chạy một lần tại điểm bắt đầu", "520136698": "Chỉ số Boom 500", @@ -438,7 +433,6 @@ "659482342": "Hãy nhớ rằng bạn có trách nhiệm giữ cho câu trả lời của mình chính xác và cập nhật. Bạn có thể cập nhật chi tiết cá nhân của mình bất kỳ lúc nào trong phần cài đặt tài khoản của mình.", "660481941": "Để truy cập các ứng dụng dành cho thiết bị di động của bạn và các ứng dụng bên thứ ba khác, trước tiên bạn cần tạo mã thông báo API.", "660991534": "Kết thúc", - "662609119": "Tải ứng dụng MT5", "665089217": "Vui lòng gửi <0>bằng chứng nhận dạng để xác thực tài khoản và truy cập vào Quỹ của bạn.", "665777772": "XLM/USD", "665872465": "Trong ví dụ dưới đây, giá mở cửa được chọn, sau đó được gán cho một biến được gọi là \"op\".", @@ -590,6 +584,7 @@ "872957901": "Nền Tối (Sắp có trên DBot)", "873166343": "1. \"Nhật ký\" hiển thị một thông báo thông thường.", "874461655": "Quét mã QR với điện thoại của bạn", + "874484887": "Số chốt lãi phải là số dương.", "875532284": "Bắt đầu lại quá trình trên thiết bị khác", "876086855": "Hoàn thành biểu mẫu đánh giá tài chính", "876292912": "Thoát", @@ -637,7 +632,6 @@ "947046137": "Khoản tiền rút của bạn sẽ được được xử lý trong vòng 24 giờ", "947363256": "Tạo danh sách", "947758334": "Yêu cầu phải có Thành phố", - "948156236": "Tạo mật khẩu {{type}}", "949859957": "Gửi", "952655566": "Đại lý thanh toán", "956448295": "Phát hiện hình ảnh đã bị chỉnh sửa", @@ -765,7 +759,6 @@ "1129124569": "Nếu bạn chọn \"Dưới\", bạn sẽ thắng nếu chữ số sau cùng của tick cuối thấp hơn so với dự đoán bạn đưa ra.", "1129296176": "THÔNG BÁO QUAN TRỌNG ĐỂ NHẬN TIỀN CỦA BẠN", "1129842439": "Vui lòng nhập vào một giá trị lấy lãi.", - "1129984312": "Chuyển tiền ngân hàng", "1130744117": "Chúng tôi sẽ cố gắng giải quyết khiếu nại của bạn trong vòng 10 ngày làm việc. Chúng tôi sẽ thông báo kết quả cùng với một lời giải thích về vị trí của chúng tôi cũng như đề xuất bất kỳ biện pháp khắc phục nào chúng tôi dự định áp dụng.", "1130791706": "N", "1133651559": "Chat trực tuyến", @@ -878,6 +871,7 @@ "1293660048": "Tổng mức thua lỗ tối đa mỗi ngày", "1294756261": "Khung này tạo ra một hàm, là một nhóm các lệnh có thể được thực thi bất cứ lúc nào. Đặt các khung khác vào đây để thực hiện bất kỳ loại hành động nào bạn cần trong chiến lược của mình. Khi tất cả các hướng dẫn trong một chức năng đã được thực hiện, bot của bạn sẽ tiếp tục với các khung còn lại trong chiến lược của bạn. Nhấp vào ô \"làm gì đó\" để đặt tên cho lựa chọn của bạn. Nhấp vào biểu tượng dấu cộng để gửi một giá trị (dưới dạng biến được đặt tên) cho hàm của bạn.", "1295284664": "Vui lòng chấp nhận <0>Điều khoản và Điều kiện cập nhật của chúng tôi để tiếp tục.", + "1296380713": "Đóng hợp đồng của tôi", "1299479533": "8 giờ", "1301668579": "Chúng tôi đang làm việc để sớm cung cấp tính năng này cho bạn. Nếu bạn có tài khoản khác, hãy chuyển sang tài khoản đó để tiếp tục giao dịch. Bạn có thể thêm một tài khoản DMT5 Tài chính.", "1302691457": "Nghề nghiệp", @@ -921,7 +915,6 @@ "1346339408": "Người quản lý", "1347071802": "{{minutePast}} phút trước", "1348009461": "Vui lòng đóng các đơn hàng của bạn cho (các) tài khoản Deriv X sau:", - "1349142948": "Tài chính DMT5", "1349289354": "Rất tốt, đó là tất cả những gì chúng tôi cần", "1349295677": "trong văn bản {{ input_text }} lấy chuỗi phụ từ {{ position1 }} {{ index1 }} tới {{ position2 }} {{ index2 }}", "1351152200": "Chào mừng đến với bảng điều khiển của Deriv MT5 (DMT5)", @@ -1024,6 +1017,7 @@ "1467421920": "với khoảng thời gian %1", "1468308734": "Khung này lặp lại các hướng dẫn miễn là một điều kiện có sẵn là đúng", "1468419186": "Deriv hiện hỗ trợ rút Tether USDT sang ví Omni. Để đảm bảo giao dịch thành công, hãy nhập địa chỉ ví tương thích với mã bạn muốn rút. <0>Tìm hiểu thêm", + "1469150826": "Chốt lãi", "1469764234": "Lỗi Thu Ngân", "1469814942": "- Chia ra", "1470319695": "Trả về Đúng hoặc Sai", @@ -1043,7 +1037,6 @@ "1502325741": "Mật khẩu không được trùng với mật khẩu cho email của bạn.", "1503618738": "- ID tham chiếu của thỏa thuận: ID tham chiếu của hợp đồng", "1505898522": "Tải xuống ngăn xếp", - "1506251760": "Ví điện tử", "1509570124": "{{buy_value}} (Mua)", "1509678193": "Đào tạo", "1510075920": "Vàng/USD", @@ -1085,6 +1078,7 @@ "1577480486": "Đường dẫn trên điện thoại của bạn sẽ hết hạn sau một giờ", "1577527507": "Phải có lý do mở tải khoản.", "1577612026": "Chọn một thư mục", + "1579484521": "Hub giao dịch", "1580498808": "Phát hiện nhiều khuôn mặt", "1584109614": "Danh sách chuỗi Ticks", "1584936297": "Tệp XML chứa các yếu tố không được hỗ trợ. Vui lòng kiểm tra hoặc sửa đổi tập tin.", @@ -1107,6 +1101,7 @@ "1620278321": "Tên và họ bản chất rất dễ đoán", "1620346110": "Thiết lập tiền tệ", "1622662457": "Ngày từ", + "1623706874": "Sử dụng khối này khi bạn muốn sử dụng cấp số nhân làm loại giao dịch của mình.", "1630372516": "Thử dùng dịch vụ Fiat onramp của chúng tôi", "1630417358": "Vui lòng chuyển đến cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để có thể rút tiền.", "1634594289": "Chọn ngôn ngữ", @@ -1126,6 +1121,7 @@ "1651513020": "Hiển thị thời gian còn lại cho mỗi khoảng", "1651951220": "Các lặp lại như \"abcabcabc\" chỉ hơi khó đoán hơn \"abc\"", "1652366857": "lấy và loại bỏ", + "1652968048": "Xác định các tùy chọn giao dịch của bạn chẳng hạn như cấp số nhân và tiền cược.", "1652976865": "Trong ví dụ, khung này được sử dụng với một khung khác để lấy giá khởi đầu từ danh sách nến. Những giá khởi đầu này sau đó được gán cho biến được gọi là \"cl\".", "1653136377": "đã sao chép!", "1653159197": "Rút tiền qua Đại lý Thanh toán", @@ -1142,6 +1138,7 @@ "1665738338": "Số dư", "1665756261": "Chuyển tới trò chuyện trực tuyến", "1667395210": "Chứng minh danh tính của bạn đã được nộp thành công", + "1670016002": "Bội số nhân: {{ multiplier }}", "1670426231": "Thời gian Kết thúc", "1671232191": "Bạn đã đặt các giới hạn sau:", "1677027187": "Ngoại hối", @@ -1183,7 +1180,6 @@ "1734264460": "Miễn trừ trách nhiệm", "1736292549": "Cập nhật mã bưu điện", "1737352280": "Bot.init không được gọi", - "1738504192": "Ví điện tử", "1738681493": "Hãy bỏ kính, nếu cần thiết", "1739384082": "Thất nghiệp", "1740371444": "Thị trường cơ bản không được chọn", @@ -1250,7 +1246,6 @@ "1820332333": "Nạp", "1824193700": "Khung này cung cấp cho bạn chữ số cuối cùng của giá trị tick mới nhất.", "1827607208": "Tập tin chưa được tải lên.", - "1828994348": "DMT5 không khả dụng ở {{country}}", "1832974109": "SmartTrader", "1833481689": "Mở khoá", "1837762008": "Vui lòng gửi bằng chứng nhận dạng và bằng chứng địa chỉ để xác minh tài khoản của bạn trong cài đặt tài khoản để truy cập vào thu ngân.", @@ -1308,7 +1303,6 @@ "1887852176": "Trang đang được cập nhật", "1889357660": "Nhập một giá trị phút, tối đa 60480 phút (tương đương bằng 6 tuần).", "1890171328": "Bằng cách nhấp chuột vào Chấp nhận dưới đây và xử lý việc Mở Tài khoản, bạn nên chú ý rằng bản thân bạn có thể gặp rủi ro (điều này rất quan trọng, bao gồm cả rủi ro thất thoát toàn bộ số vốn đầu tư) mà bạn có thể không biết hoặc chưa trải qua để có thể đánh giá.", - "1890284485": "Tìm hiểu DTrader", "1890332321": "Trả về số lượng ký tự của một chuỗi văn bản sẵn có, bao gồm số, dấu cách, dấu chấm câu và ký hiệu.", "1894667135": "Vui lòng thực hiện xác minh địa chỉ của bạn", "1898670234": "{{formatted_opening_time}} (GMT) vào {{opening_day}},<0> {{opening_date}}.", @@ -1365,6 +1359,7 @@ "1971898712": "Thêm hoặc quản lý tài khoản", "1973536221": "Bạn không có vị thế mở nào.", "1982912252": "Chỉ số tiềm lực tương đương (RSI) từ một danh sách cùng với một giai đoạn", + "1983001416": "Xác định các tùy chọn giao dịch của bạn chẳng hạn như cấp số nhân và tiền đặt cược. Khối này chỉ có thể được sử dụng với loại giao dịch cấp số nhân. Nếu bạn chọn loại giao dịch khác, khối này sẽ được thay thế bằng khối tùy chọn Giao dịch.", "1983387308": "Xem trước", "1983544897": "Không thể dùng Hộp thư bưu điện làm địa chỉ", "1983676099": "Vui lòng kiểm tra email của bạn để biết thêm chi tiết.", @@ -1491,7 +1486,6 @@ "2138861911": "Các bản scan và sao chép không được chấp nhận", "2139171480": "Đặt lại Lên/Đặt lại Xuống", "2139362660": "bên trái", - "2141055709": "Mật khẩu {{type}} mới", "2143803283": "Lỗi Mua", "2144609616": "Nếu bạn chọn \"Đặt lại-Xuống\", bạn sẽ thắng khi giá tại thời điểm chốt thấp hơn hẳn so với giá khởi điểm hoặc tại mốc thời điểm đặt lại.", "2145690912": "Thu nhập", @@ -1948,7 +1942,6 @@ "-582721696": "Số tiền được phép rút hiện tại là {{format_min_withdraw_amount}} đến {{format_max_withdraw_amount}} {{currency}}", "-1957498244": "thêm", "-1684548351": "Chuyển đổi sang tài khoản tiền kỹ thuật số", - "-1345040662": "Đang tìm kiếm một cách để mua tiền điện tử?", "-197251450": "Bạn không muốn giao dịch bằng {{currency_code}}? Bạn có thể mở một tài khoản tiền kỹ thuật số khác.", "-212277385": "Bạn không thể thay đổi đơn vị tiền tệ tài khoản của mình nữa vì bạn đã gửi tiền vào tài khoản tiền pháp định của mình hoặc tạo tài khoản DMT5 hoặc Deriv X thực. Vui lòng liên hệ với chúng tôi qua <0>trò chuyện trực tuyến để xác minh.", "-1900848111": "Đây là tài khoản {{currency_code}} của bạn.", @@ -2022,6 +2015,7 @@ "-811190405": "Thời gian", "-2004264970": "Địa chỉ ví của bạn cần có từ 25 đến 64 ký tự.", "-1707299138": "Địa chỉ ví tiền {{currency_symbol}} của bạn", + "-1179992129": "Tất cả đại lý thanh toán", "-922432739": "Vui lòng nhập một ID đăng nhập hợp lệ của khách hàng.", "-1024241603": "Số dư tài khoản không đủ.", "-1979554765": "Vui lòng nhập một mô tả hợp lệ.", @@ -2033,7 +2027,6 @@ "-1388977563": "Đã sao chép!", "-1962894999": "Địa chỉ này chỉ có thể được sử dụng MỘT LẦN. Vui lòng sao chép một cái mới cho giao dịch tiếp theo của bạn.", "-451858550": "Bằng cách nhấp vào 'Tiếp tục', bạn sẽ được chuyển hướng đến {{ service }}, một nhà cung cấp dịch vụ thanh khoản bên thứ ba. Xin lưu ý rằng {{ website_name }} không chịu trách nhiệm cho các nội dung hoặc dịch vụ được cung cấp bởi {{ service }}. Nếu bạn gặp bất kỳ sự cố nào liên quan đến các dịch vụ của {{ service }}, bạn phải liên hệ trực tiếp với {{ service }}.", - "-1179992129": "Tất cả đại lý thanh toán", "-344959847": "Đại lý thanh toán được ủy quyền xử lý nạp và rút tiền cho bạn nếu phương thức thanh toán hoặc tiền tệ địa phương của bạn không được hỗ trợ trên {{website_name}}.", "-1232852916": "Chúng tôi đang chuyển sang tài khoản {{currency}} của bạn để xem giao dịch.", "-38063175": "Ví tiền {{account_text}}", @@ -2056,6 +2049,7 @@ "-1615615253": "Chúng tôi không hỗ trợ Tron, để gửi tiền, vui lòng chỉ sử dụng Ethereum ({{token}}).", "-1831000957": "Vui lòng chọn mạng mà tiền gửi của bạn sẽ chuyển từ đó.", "-314177745": "Rất tiếc, chúng tôi không thể lấy được địa chỉ vì máy chủ của chúng tôi không hoạt động. Vui lòng nhấp vào Làm mới để tải lại địa chỉ hoặc thử lại sau.", + "-1345040662": "Đang tìm kiếm một cách để mua tiền điện tử?", "-2005265642": "Fiat onramp là một dịch vụ thu ngân cho phép bạn đổi tiền pháp định sang tiền điện tử để nạp vào tài khoản tiền điện tử Deriv của bạn. Được liệt kê ở đây là các sàn giao dịch tiền điện tử của bên thứ ba. Bạn sẽ cần tạo một tài khoản với họ để sử dụng dịch vụ của họ.", "-1593063457": "Chọn kênh thanh toán", "-130833284": "Xin lưu ý rằng giới hạn rút tiền tối đa và tối thiểu của bạn không cố định. Chúng thay đổi do sự biến động cao của tiền điện tử.", @@ -2093,6 +2087,8 @@ "-1354485738": "Đặt lại Mua", "-376148198": "Chỉ Tăng", "-1337379177": "Tick cao", + "-328036042": "Vui lòng nhập một sỗ chặn lỗ cao hơn số lỗ dự kiến tại thời điểm hiện tại.", + "-2127699317": "Chặn lỗ không khả dụng. Chặn lỗ không thể lớn hơn tiền cọc.", "-1940333322": "DBot không khả dụng cho tài khoản này", "-1210387519": "Đi tới bảng điều khiển DMT5", "-1223145005": "Khoản lỗ: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "Thời lượng tối đa: {{ max }}", "-1194719174": "Số nhân được sử dụng để tăng mức cược của bạn nếu bạn thua một giao dịch.", "-749186458": "Việc đổi tài khoản sẽ bị vô hiệu hóa khi bot đang chạy. Vui lòng dừng bot của bạn trước khi đổi tài khoản.", + "-662836330": "Bạn muốn giữ hay đóng hợp đồng hiện tại? Nếu bạn quyết định tiếp tục giữ hợp đồng, bạn có thể kiểm tra và đóng chúng về sau trên trang <0>Báo cáo.", + "-597939268": "Giữ hợp đồng của tôi", "-1322453991": "Bạn cần đăng nhập để chạy bot.", "-1483938124": "Chiến lượng này hiện không khả dụng với DBot.", + "-236548954": "Lỗi Cập Nhật Hợp Đồng", "-1428017300": "CÁC", "-1450728048": "CỦA", "-255051108": "BẠN", "-1845434627": "LÀ", "-931434605": "ĐÂY", "-740712821": "Một", + "-187634388": "Khung này là bắt buộc. Đây là nơi bạn có thể quyết định xem bot của bạn có nên tiếp tục giao dịch hay không. Chỉ có một bản sao của khung này được cho phép.", + "-2105473795": "Thông số đầu vào duy nhất quyết định cách đầu ra của khung được định dạng. Trong trường hợp thông số đầu vào là \"string\" thì đơn vị tiền tệ của tài khoản sẽ được thêm vào.", + "-1800436138": "2. cho \"số\": 1325.68", + "-2046396241": "Khung này là bắt buộc. Chỉ có một bản sao của khung này được cho phép. Nó được thêm vào bảng khung theo mặc định khi bạn mở DBot.", + "-530632460": "Khung này được sử dụng để xác định xem giá thị trường có di chuyển theo hướng đã chọn hay không. Nó đưa ra cho bạn giá trị \"Đúng\" hoặc \"Sai\".", + "-1875717842": "Ví dụ:", + "-890079872": "1. Nếu hướng được chọn là \"Tăng\", và các giá trị của tick trước đó nhỏ hơn giá trị của tick hiện tại, đầu ra sẽ là \"Đúng\". Nếu không, đầu ra sẽ là một chuỗi rỗng.", + "-489739641": "2. Nếu hướng được chọn là \"Giảm\", và các giá trị của tick trước đó lớn hơn giá trị của tick hiện tại, đầu ra sẽ là \"Đúng\". Nếu không, đầu ra sẽ là một chuỗi rỗng.", + "-2116076360": "Có 4 loại thông báo:", + "-1421941045": "2. 'Cảnh báo' hiển thị thông báo màu vàng để làm nổi bật điều gì đó cần chú ý.", + "-277850921": "Nếu \"Thắng\" được chọn, nó sẽ trả về \"Đúng\" nếu giao dịch cuối của bạn thành công. Nếu không, nó sẽ trả về chuỗi rỗng.", + "-1918487001": "Ví dụ:", + "-2139916657": "1. Dưới đây là ví dụ vong lặp bị hủy trong trường hợp \"x\" là \"Sai\" cho dù chỉ có một vòng lặp được thực hiện", + "-1238900333": "2. Trong ví dụ dưới đây vòng lặp nhảy đến lần lặp tiếp theo mà không thực hiện khối thuật toán bên dưới trong trường hợp nếu \"x\" là \"Sai\"", + "-1729479576": "Bạn có thể sử dụng \"i\" trong vòng lặp, ví dụ để mở danh sách các mục", + "-1474636594": "Trong ví dụ này, vòng lặp sẽ lặp lại ba lần, vì đó là số lượng mục trong danh sách đã cho. Trong mỗi lần lặp, biến \"i\" sẽ được gán một giá trị từ danh sách. ", + "-908772734": "Khung này đánh giá một điều kiện và sẽ chỉ thực hiện một hành động khi điều kiện đúng.", + "-334040831": "2. Trong ví dụ này, các chỉ dẫn được lặp lại khi giá trị của x lớn hơn hoặc bằng 10. Khi giá trị của x nhỏ hơn 10, vòng lặp sẽ kết thúc.", + "-444267958": "Khung \"Số giây kể từ Epoch\" trả về số giây kể từ ngày 1 tháng 1 năm 1970.", + "-447522129": "Bạn sẽ cần nó khi bạn muốn lặp lại một hành động sau một khoảng thời gian nhất định.", + "-1488259879": "Thuật ngữ \"nến\" ám chỉ mỗi thanh trong một bản thống kê thanh nến. Mỗi nến đại diện bốn giá thị trường tại thời điểm đã chọn:", + "-2020693608": "Mỗi nến trên biểu đồ thể hiện 4 giá thị trường cho khoảng thời gian đã chọn:", + "-62728852": "- Giá mở cửa: giá bắt đầu", + "-1247744334": "- Giá thấp: giá thấp nhất", + "-1386365697": "- Giá đóng: giá kết thúc", + "-1498732382": "Một nến màu đen (hoặc đỏ) chỉ ra rằng giá mở cao hơn giá đóng cửa. Điều này thể hiện sự đi xuống của giá thị trường.", + "-1871864755": "Khối này cung cấp cho bạn chữ số cuối cùng của giá trị tick mới nhất của thị trường đã chọn. Nếu giá trị \btick mới nhất là 1410.90, khối này sẽ trả về 0. Nó có ích cho các hợp đồng dựa trên chữ số như Chẵn/Lẻ, \u001dKhớp/Khác nhau hoặc Cao hơn/Thấp hơn.", + "-1029671512": "Trong trường hợp nếu thuật toán \"OR\" được chọn, khung sẽ chỉ trả về là \"Đúng\" khi một hoặc cả hai điều kiện đưa ra là \"Đúng\"", + "-210295176": "Phép tính có sẵn:", + "-1385862125": "- Phép cộng", + "-983721613": "- Phép trừ", + "-854750243": "Nhân", + "-1394815185": "Trong trường hợp nếu số đã cho nhỏ hơn ranh giới thấp hơn của phạm vi, khung sẽ trả về giá trị biên thấp hơn. Tương tự, nếu số đã cho lớn hơn ranh giới cao hơn, khối sẽ trả về giá trị biên cao hơn. Trong trường hợp nếu giá trị đã cho nằm giữa các ranh giới, khối sẽ trả về giá trị đã cho không thay đổi.", + "-1034564248": "Trong ví dụ dưới đây, khung trả về giá trị 10 vì giá trị đã cho (5) nhỏ hơn ranh giới thấp hơn (10)", + "-2009817572": "Khung này thực hiện các phép tính sau đến một số nhất định", + "-671300479": "Phép tính có sẵn là:", + "-514610724": "- Tuyệt đối", + "-1923861818": "- Số Euler từ (2.71) tới luỹ thừa của một số đã cho", + "-1556344549": "Bằng cách:", + "-1061127827": "- Truy cập URL sau, đảm bảo thay thế bằng mã thông báo API Telegram bạn đã tạo ở Bước 1: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. Quay trở lại DBot và thêm khung Thông báo Telegram vào bảng điều khiển. Dán mã thông báo API Telegram và ID chat vào các \u001dtrường của khung tương ứng.", + "-311389920": "Trong ví dụ, giá bắt đầu từ một danh sách nến được gán vào một biến gọi là\"cl\".", + "-1460794449": "Khung này cung cấp cho bạn một danh sách nến trong khoảng thời gian đã chọn.", + "-1634242212": "Được sử dụng trong một khung chức năng, khung này trả về một giá trị khi một điều kiện cụ thể là đúng.", + "-2012970860": "Khung này cung cấp cho bạn thông tin về gói thầu cuối cùng của bạn.", + "-1504783522": "Bạn có thể chọn để xem một trong những điều sau đây:", + "-10612039": "- Lợi nhuận: số lãi bạn đã kiếm được", + "-555996976": "- Thời điểm ban đầu: thời gian bắt đầu hợp đồng", + "-1391071125": "- Thời điểm thoát: thời gian hết hạn hợp đồng", + "-1961642424": "- Giá trị thoát: giá trị của dấu tick cuối cùng của hợp đồng", + "-111312913": "- Rào cản: giá trị rào cản của hợp đồng (áp dụng cho các loại giao dịch dựa trên rào cản như ở trong/ngoài, chạm/không chạm, v. v.)", + "-674283099": "- Kết quả: kết quả của hợp đồng cuối cùng: \"thắng\" hay \"thua\"", + "-704543890": "Khung này cung cấp cho bạn giá trị nến đã chọn như giá mở, giá đóng, giá cao, giá thấp và thời gian mở. Nó cần một nến như một tham số đầu vào.", + "-482281200": "Trong ví dụ dưới đây, giá mở được gán vào biến\"op\".", + "-364621012": "Khung này cung cấp cho bạn giá trị nến được chỉ định trong khoảng thời gian đã chọn. Bạn có thể chọn giá trị nào bạn muốn:", + "-232477769": "- Mở cửa: giá bắt đầu", + "-610736310": "Sử dụng \bkhung này để bán hợp đồng của bạn tại giá thị trường. Việc bán hợp đồng của bạn là tùy chọn. Bạn có thể chọn bán nếu xu hướng thị trường không thuận lợi.", + "-1307657508": "Khung này mang lại cho bạn lợi nhuận hoặc thua lỗ tiềm năng nếu bạn quyết định bán hợp đồng của mình. Nó chỉ có thể được sử dụng trong khối gốc \"Điều kiện bán\".", + "-1921072225": "Trong ví dụ dưới đây, hợp đồng sẽ chỉ được bán nếu lợi nhuận hoặc thua lỗ tiềm năng lớn hơn mức mua vào.", + "-955397705": "SMA thêm giá thị trường vào một danh sách các tick hoặc nến trong một số khoảng thời gian và \u001dlấy tổng chia cho số khoảng thời gian đó.", + "-1424923010": "tại đó n là số các kỳ.", + "-1835384051": "\bThông tin SMA gửi tới bạn", + "-749487251": "SMA giống như là một chỉ báo của xu hướng. Nếu SMA tăng thì giá thị trường đang tăng và ngược lại. Số chu kỳ càng lớn, đường SMA càng mượt.", + "-1996062088": "Trong ví dụ này, mỗi điểm của đường SMA là số trung bình của các giá đóng trong 10 ngày qua.", + "-1866751721": "Danh sách đầu vào chấp nhận một danh sách các tick hoặc nến, trong khi khoảng thời gian là khoảng thời gian được chỉ định.", + "-1097076512": "Bạn có thể so sánh các giá trị SMA được tính trên mỗi lần chạy bot để xác định xu hướng thị trường. Ngoài ra, bạn cũng có thể sử dụng một biến của khung SMA, khung Mảng Biến thiên Trung bình Đơn giản. ", + "-1254849504": "Nếu một khoảng thời gian là 10 được nhập, khối Mảng Biến thiên Trung bình Đơn giản sẽ trả về danh sách các giá trị SMA được tính dựa trên khoảng thời gian 10.", + "-1190046167": "Khung này hiển thị một ô hội thoại với một tin nhắn dựng sẵn. Khi ô hội thoại xuất hiện, chiến lược của bạn sẽ tạm dừng và chỉ chạy trở lại sau khi bạn chọn \"OK\".", + "-859028989": "Trong ví dụ này, ngày và giờ sẽ được hiển thị trong hộp thông báo màu xanh lục.", + "-1452086215": "Trong ví dụ này, hợp đồng Rise sẽ được mua vào nửa đêm ngày 1 tháng 8 năm 2019.", + "-1765276625": "Nhấp vào menu thả xuống của cấp số nhân và chọn giá trị cấp số nhân mà bạn muốn giao dịch.", + "-1872233077": "Lợi nhuận tiềm năng của bạn sẽ được nhân với giá trị cấp số nhân mà bạn đã chọn.", + "-614454953": "Để tìm hiểu thêm về cấp số nhân, vui lòng truy cập trang <0>Cấp số nhân.", + "-2078588404": "Chọn thị trường và loại tài sản mong muốn của bạn. Ví dụ: Forex > Các cặp chính > AUD/JPY", + "-2037446013": "2. Loại giao dịch", + "-533927844": "Chọn loại giao dịch mong muốn của bạn. Ví dụ: Lên/Xuống > Tăng/Giảm", + "-1192411640": "4. Khoảng thời gian nến mặc định", + "-485434772": "8. Các tùy chọn giao dịch", + "-1827646586": "Khung này gán một giá trị đã cho cho một biến, tạo biến nếu nó không tồn tại.", "-254421190": "Danh sách: ({{message_length}})", "-9461328": "Bảo mật và riêng tư", "-418247251": "Tải xuống nhật ký của bạn.", @@ -2209,17 +2287,6 @@ "-398198412": "Giao dịch trên Deriv MT5 (DMT5), nền tảng giao dịch FX và CFD tất cả trong một.", "-1793883644": "Giao dịch FX và CFD trên nền tảng giao dịch có thể tùy chỉnh, dễ sử dụng.", "-1246992539": "Binary Bot", - "-563774117": "Bảng điều khiển", - "-773544978": "Trang chủ", - "-1003047246": "Ứng dụng của tôi", - "-2024365882": "Khám phá", - "-2038666662": "Về chúng tôi", - "-832198631": "Thẻ tín dụng/Thẻ ghi nợ", - "-1787820992": "Nền tảng", - "-837532140": "Kiểu Giao dịch", - "-663862998": "Thị trường", - "-947407631": "Các chỉ số tổng hợp", - "-362324454": "Hàng hóa", "-821418875": "Nhà giao dịch", "-1309011360": "Vị thế mở", "-679102561": "Chi tiết hợp đồng", @@ -2317,41 +2384,47 @@ "-618539786": "Tài khoản của bạn đã được lên lịch để đóng", "-945275490": "Rút tất cả tiền từ tài khoản Quyền chọn của bạn.", "-705744796": "Số dư tài khoản demo của bạn đã đạt đến giới hạn tối đa và bạn sẽ không thể thực hiện các giao dịch mới. Đặt lại số dư để tiếp tục giao dịch từ tài khoản demo của bạn.", - "-2067423661": "Bảo mật mạnh mẽ hơn cho tài khoản Deriv của bạn", - "-1719731099": "Với xác thực hai yếu tố, bạn sẽ bảo vệ tài khoản của mình bằng cả mật khẩu và điện thoại - vì vậy chỉ bạn mới có thể truy cập vào tài khoản của mình, ngay cả khi ai đó biết mật khẩu của bạn.", - "-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 thu ngân.", + "-1585069798": "Vui lòng nhấp vào liên kết sau để hoàn thành Kiểm tra Tính phù hợp của bạn.", + "-1287141934": "Tìm hiểu thêm", + "-367759751": "Tài khoản của bạn chưa được xác minh", + "-596690079": "Enjoy using Deriv?", + "-265932467": "We’d love to hear your thoughts", + "-1815573792": "Drop your review on Trustpilot.", + "-823349637": "Go to Trustpilot", "-1204063440": "Cài đặt đơn vị tiền tệ cho tài khoản của tôi", + "-1164554246": "Bạn đã gửi giấy tờ tùy thân hết hạn", + "-219846634": "Hãy xác minh ID của bạn", + "-529038107": "Cài đặt", + "-87149410": "Cài đặt ứng dụng web DTrader", + "-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 thu ngân.", + "-1329329028": "Bạn chưa đặt giới hạn doanh thu trong 30 ngày của mình", + "-132893998": "Quyền truy cập của bạn vào thu ngân tạm thời bị vô hiệu hóa do bạn chưa đặt giới hạn doanh thu trong 30 ngày của mình. Vui lòng chuyển đến phần Tự loại trừ và đặt giới hạn.", + "-1852207910": "Rút tiền MT5 đã bị vô hiệu hóa", + "-764323310": "Rút tiền MT5 đã bị vô hiệu hoá trên tài khoản của bạn. Vui lòng kiểm tra email của bạn để biết chi tiết.", + "-1435762703": "Vui lòng xác minh danh tính của bạn", + "-1902997828": "Làm mới ngay", + "-753791937": "Đã có phiên bản mới của Deriv", + "-1775108444": "Trang này sẽ tự động làm mới sau 5 phút để tải phiên bản mới nhất.", + "-1175685940": "Vui lòng liên hệ chúng tôi qua trò chuyện trực tuyến để cho phép rút tiền.", + "-1125797291": "Mật khẩu đã được cập nhật.", + "-157145612": "Vui lòng đăng nhập với mật khẩu mới cập nhật.", + "-87177461": "Vui lòng đi tới cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để có thể gửi tiền.", + "-904632610": "Đặt lại số dư", + "-470018967": "Đặt lại số dư", + "-156611181": "Vui lòng hoàn thành đánh giá tài chính trong cài đặt tài khoản của bạn để mở khóa.", "-1925176811": "Không thể xử lý rút tiền trong thời điểm này", "-980696193": "Rút tiền tạm thời không khả dụng do bảo trì hệ thống. Bạn có thể rút tiền khi quá trình bảo trì hoàn tất.", "-1647226944": "Không thể xử lý gửi tiền trong thời điểm này", "-488032975": "Tiền gửi tạm thời không khả dụng do bảo trì hệ thống. Bạn có thể gửi tiền khi quá trình bảo trì hoàn tất.", "-67021419": "Thu ngân của chúng tôi tạm thời ngừng hoạt động do bảo trì hệ thống. Bạn có thể truy cập thu ngân sau vài phút khi quá trình bảo trì hoàn tất.", - "-219846634": "Hãy xác minh ID của bạn", - "-367759751": "Tài khoản của bạn chưa được xác minh", - "-1175685940": "Vui lòng liên hệ chúng tôi qua trò chuyện trực tuyến để cho phép rút tiền.", - "-1852207910": "Rút tiền MT5 đã bị vô hiệu hóa", - "-764323310": "Rút tiền MT5 đã bị vô hiệu hoá trên tài khoản của bạn. Vui lòng kiểm tra email của bạn để biết chi tiết.", - "-1585069798": "Vui lòng nhấp vào liên kết sau để hoàn thành Kiểm tra Tính phù hợp của bạn.", - "-1329329028": "Bạn chưa đặt giới hạn doanh thu trong 30 ngày của mình", - "-132893998": "Quyền truy cập của bạn vào thu ngân tạm thời bị vô hiệu hóa do bạn chưa đặt giới hạn doanh thu trong 30 ngày của mình. Vui lòng chuyển đến phần Tự loại trừ và đặt giới hạn.", - "-156611181": "Vui lòng hoàn thành đánh giá tài chính trong cài đặt tài khoản của bạn để mở khóa.", "-849587074": "Bạn chưa cung cấp mã số thuế của mình", "-47462430": "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 chuyển đế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.", - "-87177461": "Vui lòng đi tới cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để có thể gửi tiền.", + "-2067423661": "Bảo mật mạnh mẽ hơn cho tài khoản Deriv của bạn", + "-1719731099": "Với xác thực hai yếu tố, bạn sẽ bảo vệ tài khoản của mình bằng cả mật khẩu và điện thoại - vì vậy chỉ bạn mới có thể truy cập vào tài khoản của mình, ngay cả khi ai đó biết mật khẩu của bạn.", + "-822888359": "Your withdrawal is locked", + "-1197701578": "Please submit your Proof of Identity again and complete the financial assessment in account setting to unlock it.", "-2087822170": "Bạn đang ngoại tuyến", "-1669693571": "Kiểm tra kết nối của bạn.", - "-1125797291": "Mật khẩu đã được cập nhật.", - "-157145612": "Vui lòng đăng nhập với mật khẩu mới cập nhật.", - "-904632610": "Đặt lại số dư", - "-470018967": "Đặt lại số dư", - "-1435762703": "Vui lòng xác minh danh tính của bạn", - "-1164554246": "Bạn đã gửi giấy tờ tùy thân hết hạn", - "-1902997828": "Làm mới ngay", - "-753791937": "Đã có phiên bản mới của Deriv", - "-1775108444": "Trang này sẽ tự động làm mới sau 5 phút để tải phiên bản mới nhất.", - "-529038107": "Cài đặt", - "-87149410": "Cài đặt ứng dụng web DTrader", - "-1287141934": "Tìm hiểu thêm", "-1998049070": "Nếu bạn đồng ý cho việc sử dụng cookies của chúng tôi, nhấn vào Chấp nhận. Để biết thêm thông tin <0>xem quy định.", "-1721181859": "Bạn cần một tài khoản {{deriv_account}}", "-1989074395": "Vui lòng thêm một tài khoản {{deriv_account}} trước khi thêm tài khoản {{dmt5_account}}. Việc gửi và rút tiền cho tài khoản {{dmt5_label}} của bạn được thực hiện bằng cách chuyển tiền đến và từ tài khoản {{deriv_label}} của bạn.", @@ -2386,6 +2459,7 @@ "-1950045402": "Rút toàn bộ tiền của bạn", "-168971942": "Điều này có ý nghĩa thế nào với bạn", "-905560792": "OK, tôi hiểu", + "-2024365882": "Khám phá", "-1197864059": "Tạo tài khoản dùng thử miễn phí", "-1485242688": "Bước {{step}}: {{step_title}} ({{step}} của {{steps}})", "-1829842622": "Bạn có thể mở một tài khoản cho mỗi loại tiền điện tử.", @@ -2439,6 +2513,7 @@ "-1917706589": "Tài khoản Deriv của bạn đã bỏ liên kết với {{social_identity_provider}}. Hãy sử dụng email và mật khẩu của bạn để đăng nhập trong tương lai.", "-2017825013": "Đã hiểu", "-505449293": "Nhập một mật khẩu mới cho tài khoản Deriv của bạn.", + "-1787820992": "Nền tảng", "-184713104": "Kiếm các khoản thanh toán cố định với các tùy chọn hoặc hệ số giao dịch để tăng lợi nhuận của bạn với rủi ro hạn chế.", "-1571775875": "Các tùy chọn hàng đầu và nền tảng giao dịch số nhân của chúng tôi.", "-1107320163": "Tự động hóa giao dịch của bạn, không cần hiểu biết về lập trình.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d. Nếu phán quyết được đưa ra có lợi cho chúng tôi, bạn phải xác nhận miễn trừ trách nhiệm cho chúng tôi trong vòng 7 ngày kể từ khi quyết định được đưa ra và đơn khiếu nại sẽ được coi là kết thúc.", "-429248139": "5. Miễn trách nhiệm", "-818926350": "Ủy ban Tài chính chấp nhận kháng cáo trong 45 ngày sau ngày xảy ra vụ việc và chỉ sau khi nhà giao dịch đã cố gắng giải quyết vấn đề trực tiếp với công ty.", - "-236548954": "Lỗi Cập Nhật Hợp Đồng", "-1282933308": "Không {{barrier}}", "-968190634": "Bằng {{barrier}}", "-1747377543": "Dưới {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "Chữ số", "-1790089996": "MỚI!", "-590018519": "Hợp đồng đã mua", - "-328036042": "Vui lòng nhập một sỗ chặn lỗ cao hơn số lỗ dự kiến tại thời điểm hiện tại.", - "-2127699317": "Chặn lỗ không khả dụng. Chặn lỗ không thể lớn hơn tiền cọc.", "-405439829": "Xin lỗi, bạn không thể xem hợp đồng này vì nó không thuộc tài khoản này.", "-1714959941": "Hiển thị biểu đồ này không lý tưởng cho các hợp đồng tick", "-1254554534": "Vui lòng thay đổi thời lượng biểu đồ về tick cho trải nghiệm giao dịch tốt hơn.", @@ -2593,22 +2665,13 @@ "-584696680": "Nếu bạn chọn \"Lấy lãi\" và đưa ra một giá trị nhất định để giới hạn lãi cho mình, đơn hàng của bạn sẽ tự động đóng khi số lãi lớn hơn hoặc bằng giá trị này. Số lãi của bạn có thể sẽ lớn hơn giá trị bạn đặt ra do phụ thuộc vào giá của thị trường tại thời điểm đóng đơn hàng.", "-178096090": "\"Lấy lãi\" không thể được cập nhật. Bạn chỉ có thể cập nhật nó khi \"Hủy thỏa thuận\" hết hạn.", "-206909651": "Điểm khởi đầu là giá thị trường khi hợp đồng được xử lý bởi máy chủ của chúng tôi.", - "-673424733": "Tài khoản demo", - "-1066565281": "Bảo trì máy chủ bắt đầu từ 06:00 GMT mỗi Chủ nhật. Quá trình này có thể mất 2 giờ. Dịch vụ có thể bị gián đoạn trong thời gian này.", - "-1481390656": "Bảo trì máy chủ bắt đầu từ 01:00 GMT mỗi Chủ nhật. Quá trình này có thể mất tới 2 giờ để hoàn thành. Dịch vụ có thể bị gián đoạn trong thời gian này.", - "-1199152768": "Vui lòng tìm hiểu các nền tảng khác của chúng tôi.", - "-498346912": "Tìm hiểu DBot", + "-464262734": "Quản lý mật khẩu tài khoản thực {{platform}} {{account_title}} của bạn", "-2042845290": "Mật khẩu nhà đầu tư của bạn đã được đổi.", "-1882295407": "Mật khẩu của bạn đã được đổi.", "-254497873": "Sử dụng mật khẩu này để cấp quyền quan sát cho một người dùng khác. Trong khi họ có thể xem các tài khoản giao dịch của bạn, họ sẽ không thể thực hiện giao dịch hoặc có các hành động khác.", "-161656683": "Mật khẩu nhà đầu tư hiện tại", "-374736923": "Mật khẩu nhà đầu tư mới", "-1793894323": "Tạo hoặc đặt lại mật khẩu nhà đầu tư", - "-464262734": "Quản lý mật khẩu tài khoản thực {{platform}} {{account_title}} của bạn", - "-1928229820": "Đặt lại mật khẩu nhà đầu tư Deriv X", - "-1917043724": "Đặt lại mật khẩu nhà đầu tư DMT5", - "-1087845020": "chính", - "-1950683866": "nhà đầu tư", "-149836494": "Số tham chiếu giao dịch của bạn là {{transaction_id}}", "-1382749084": "Trở về giao dịch", "-538215347": "Tiền gửi ròng", @@ -2737,7 +2800,6 @@ "-1588406981": "Bạn có thể kiểm tra kết quả của giao dịch cuối cùng với khung này.", "-1459154781": "Chi tiết Hợp đồng: {{ contract_detail }}", "-1652241017": "Đọc một đặc tính đã được chọn từ danh sách chi tiết gói thầu", - "-2012970860": "Khung này cung cấp cho bạn thông tin về gói thầu cuối cùng của bạn.", "-2082345383": "Các khối này chuyển quyền kiểm soát sang khối Điều kiện mua hàng.", "-172574065": "Khung này sẽ chuyển quyền điều khiển trở lại khung Các điều kiện Mua, cho phép bạn mua hợp đồng khác.", "-403103225": "khởi động lại", @@ -2780,7 +2842,6 @@ "-1556495906": "Trả về danh sách các giá trị cụ thể từ danh sách nến theo khoảng thời gian đã chọn", "-166816850": "Tạo danh sách các giá trị nến (1)", "-1261436901": "Danh sách nến", - "-1460794449": "Khung này cung cấp cho bạn một danh sách nến trong khoảng thời gian đã chọn.", "-1174859923": "Đọc giá trị nến đã chọn", "-1972165119": "Đọc giá trị nến (1)", "-1956100732": "Bạn có thể sử dụng khối này để phân tích các dấu tick, bất kể giao dịch của bạn là gì", @@ -2830,10 +2891,13 @@ "-702370957": "Đổi sang ngày/giờ", "-982729677": "Đổi sang mốc thời gian", "-311268215": "Khung này chuyển đổi một chuỗi văn bản đại diện cho ngày và thời gian thành giây kể từ Unix Epoch (ngày 1 tháng 1 năm 1970). Thời gian và múi giờ bù là tùy chọn. Ví dụ: 2019-01-01 21:03:45 GMT + 0800 sẽ được chuyển đổi thành 1546347825.", + "-1797602591": "Cắt lỗ: {{ currency }} {{ stop_loss }}", + "-1214929127": "Số cắt lỗ phải là một số dương.", + "-2142851225": "Quyền chọn giao dịch cấp số nhân", + "-625636913": "Số nhập vào phải là một số dương.", "-1466383897": "Thời lượng: {{ duration_unit }} {{ duration_value }}", "-440702280": "Các tùy chọn giao dịch", "-1193894978": "Xác định các tùy chọn giao dịch của bạn như thời hạn và giá khởi đầu. Một số tùy chọn chỉ áp dụng cho các loại giao dịch nhất định.", - "-625636913": "Số nhập vào phải là một số dương.", "-46523443": "Giá trị thời lượng không hợp lệ. Để chạy được bot, vui lòng nhập một giá trị trong khoảng từ {{min}} đến {{max}}.", "-1483427522": "Loại Giao dịch: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. Thông số giao dịch", @@ -2841,7 +2905,6 @@ "-783173909": "Các tùy chọn giao dịch:", "-376956832": "Đây là nơi bạn xác định các tham số của hợp đồng của bạn.", "-1244007240": "nếu {{ condition }} thì", - "-908772734": "Khung này đánh giá một điều kiện và sẽ chỉ thực hiện một hành động khi điều kiện đúng.", "-1577206704": "khác nếu", "-33796979": "đúng", "-1434883449": "Đây là một khung duy nhất trả về giá trị boolean, đúng hoặc sai.", @@ -2903,84 +2966,11 @@ "-1133072029": "Độ dài Chuỗi Văn bản", "-1109723338": "in {{ input_text }}", "-736668830": "In", - "-1190046167": "Khung này hiển thị một ô hội thoại với một tin nhắn dựng sẵn. Khi ô hội thoại xuất hiện, chiến lược của bạn sẽ tạm dừng và chỉ chạy trở lại sau khi bạn chọn \"OK\".", "-1821552998": "cắt khoảng trống từ {{ side }} của {{ input_text }}", "-801766026": "bên phải", "-474779821": "Cắt khoảng trống", "-1219239717": "Một hoặc nhiều khối bắt buộc bị thiếu trong không gian làm việc của bạn. Vui lòng thêm (các) khối bắt buộc và sau đó thử lại.", "-250761331": "Một hoặc nhiều khối bắt buộc bị dừng hoạt động trong không gian làm việc của bạn. Vui lòng kích hoạt (các) khối cần thiết và sau đó thử lại.", - "-187634388": "Khung này là bắt buộc. Đây là nơi bạn có thể quyết định xem bot của bạn có nên tiếp tục giao dịch hay không. Chỉ có một bản sao của khung này được cho phép.", - "-2105473795": "Thông số đầu vào duy nhất quyết định cách đầu ra của khung được định dạng. Trong trường hợp thông số đầu vào là \"string\" thì đơn vị tiền tệ của tài khoản sẽ được thêm vào.", - "-1800436138": "2. cho \"số\": 1325.68", - "-2046396241": "Khung này là bắt buộc. Chỉ có một bản sao của khung này được cho phép. Nó được thêm vào bảng khung theo mặc định khi bạn mở DBot.", - "-530632460": "Khung này được sử dụng để xác định xem giá thị trường có di chuyển theo hướng đã chọn hay không. Nó đưa ra cho bạn giá trị \"Đúng\" hoặc \"Sai\".", - "-1875717842": "Ví dụ:", - "-890079872": "1. Nếu hướng được chọn là \"Tăng\", và các giá trị của tick trước đó nhỏ hơn giá trị của tick hiện tại, đầu ra sẽ là \"Đúng\". Nếu không, đầu ra sẽ là một chuỗi rỗng.", - "-489739641": "2. Nếu hướng được chọn là \"Giảm\", và các giá trị của tick trước đó lớn hơn giá trị của tick hiện tại, đầu ra sẽ là \"Đúng\". Nếu không, đầu ra sẽ là một chuỗi rỗng.", - "-2116076360": "Có 4 loại thông báo:", - "-1421941045": "2. 'Cảnh báo' hiển thị thông báo màu vàng để làm nổi bật điều gì đó cần chú ý.", - "-277850921": "Nếu \"Thắng\" được chọn, nó sẽ trả về \"Đúng\" nếu giao dịch cuối của bạn thành công. Nếu không, nó sẽ trả về chuỗi rỗng.", - "-1918487001": "Ví dụ:", - "-2139916657": "1. Dưới đây là ví dụ vong lặp bị hủy trong trường hợp \"x\" là \"Sai\" cho dù chỉ có một vòng lặp được thực hiện", - "-1238900333": "2. Trong ví dụ dưới đây vòng lặp nhảy đến lần lặp tiếp theo mà không thực hiện khối thuật toán bên dưới trong trường hợp nếu \"x\" là \"Sai\"", - "-1729479576": "Bạn có thể sử dụng \"i\" trong vòng lặp, ví dụ để mở danh sách các mục", - "-1474636594": "Trong ví dụ này, vòng lặp sẽ lặp lại ba lần, vì đó là số lượng mục trong danh sách đã cho. Trong mỗi lần lặp, biến \"i\" sẽ được gán một giá trị từ danh sách. ", - "-334040831": "2. Trong ví dụ này, các chỉ dẫn được lặp lại khi giá trị của x lớn hơn hoặc bằng 10. Khi giá trị của x nhỏ hơn 10, vòng lặp sẽ kết thúc.", - "-444267958": "Khung \"Số giây kể từ Epoch\" trả về số giây kể từ ngày 1 tháng 1 năm 1970.", - "-447522129": "Bạn sẽ cần nó khi bạn muốn lặp lại một hành động sau một khoảng thời gian nhất định.", - "-1488259879": "Thuật ngữ \"nến\" ám chỉ mỗi thanh trong một bản thống kê thanh nến. Mỗi nến đại diện bốn giá thị trường tại thời điểm đã chọn:", - "-2020693608": "Mỗi nến trên biểu đồ thể hiện 4 giá thị trường cho khoảng thời gian đã chọn:", - "-62728852": "- Giá mở cửa: giá bắt đầu", - "-1247744334": "- Giá thấp: giá thấp nhất", - "-1386365697": "- Giá đóng: giá kết thúc", - "-1498732382": "Một nến màu đen (hoặc đỏ) chỉ ra rằng giá mở cao hơn giá đóng cửa. Điều này thể hiện sự đi xuống của giá thị trường.", - "-1871864755": "Khối này cung cấp cho bạn chữ số cuối cùng của giá trị tick mới nhất của thị trường đã chọn. Nếu giá trị \btick mới nhất là 1410.90, khối này sẽ trả về 0. Nó có ích cho các hợp đồng dựa trên chữ số như Chẵn/Lẻ, \u001dKhớp/Khác nhau hoặc Cao hơn/Thấp hơn.", - "-1029671512": "Trong trường hợp nếu thuật toán \"OR\" được chọn, khung sẽ chỉ trả về là \"Đúng\" khi một hoặc cả hai điều kiện đưa ra là \"Đúng\"", - "-210295176": "Phép tính có sẵn:", - "-1385862125": "- Phép cộng", - "-983721613": "- Phép trừ", - "-854750243": "Nhân", - "-1394815185": "Trong trường hợp nếu số đã cho nhỏ hơn ranh giới thấp hơn của phạm vi, khung sẽ trả về giá trị biên thấp hơn. Tương tự, nếu số đã cho lớn hơn ranh giới cao hơn, khối sẽ trả về giá trị biên cao hơn. Trong trường hợp nếu giá trị đã cho nằm giữa các ranh giới, khối sẽ trả về giá trị đã cho không thay đổi.", - "-1034564248": "Trong ví dụ dưới đây, khung trả về giá trị 10 vì giá trị đã cho (5) nhỏ hơn ranh giới thấp hơn (10)", - "-2009817572": "Khung này thực hiện các phép tính sau đến một số nhất định", - "-671300479": "Phép tính có sẵn là:", - "-514610724": "- Tuyệt đối", - "-1923861818": "- Số Euler từ (2.71) tới luỹ thừa của một số đã cho", - "-1556344549": "Bằng cách:", - "-1061127827": "- Truy cập URL sau, đảm bảo thay thế bằng mã thông báo API Telegram bạn đã tạo ở Bước 1: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. Quay trở lại DBot và thêm khung Thông báo Telegram vào bảng điều khiển. Dán mã thông báo API Telegram và ID chat vào các \u001dtrường của khung tương ứng.", - "-311389920": "Trong ví dụ, giá bắt đầu từ một danh sách nến được gán vào một biến gọi là\"cl\".", - "-1634242212": "Được sử dụng trong một khung chức năng, khung này trả về một giá trị khi một điều kiện cụ thể là đúng.", - "-1504783522": "Bạn có thể chọn để xem một trong những điều sau đây:", - "-10612039": "- Lợi nhuận: số lãi bạn đã kiếm được", - "-555996976": "- Thời điểm ban đầu: thời gian bắt đầu hợp đồng", - "-1391071125": "- Thời điểm thoát: thời gian hết hạn hợp đồng", - "-1961642424": "- Giá trị thoát: giá trị của dấu tick cuối cùng của hợp đồng", - "-111312913": "- Rào cản: giá trị rào cản của hợp đồng (áp dụng cho các loại giao dịch dựa trên rào cản như ở trong/ngoài, chạm/không chạm, v. v.)", - "-674283099": "- Kết quả: kết quả của hợp đồng cuối cùng: \"thắng\" hay \"thua\"", - "-704543890": "Khung này cung cấp cho bạn giá trị nến đã chọn như giá mở, giá đóng, giá cao, giá thấp và thời gian mở. Nó cần một nến như một tham số đầu vào.", - "-482281200": "Trong ví dụ dưới đây, giá mở được gán vào biến\"op\".", - "-364621012": "Khung này cung cấp cho bạn giá trị nến được chỉ định trong khoảng thời gian đã chọn. Bạn có thể chọn giá trị nào bạn muốn:", - "-232477769": "- Mở cửa: giá bắt đầu", - "-610736310": "Sử dụng \bkhung này để bán hợp đồng của bạn tại giá thị trường. Việc bán hợp đồng của bạn là tùy chọn. Bạn có thể chọn bán nếu xu hướng thị trường không thuận lợi.", - "-1307657508": "Khung này mang lại cho bạn lợi nhuận hoặc thua lỗ tiềm năng nếu bạn quyết định bán hợp đồng của mình. Nó chỉ có thể được sử dụng trong khối gốc \"Điều kiện bán\".", - "-1921072225": "Trong ví dụ dưới đây, hợp đồng sẽ chỉ được bán nếu lợi nhuận hoặc thua lỗ tiềm năng lớn hơn mức mua vào.", - "-955397705": "SMA thêm giá thị trường vào một danh sách các tick hoặc nến trong một số khoảng thời gian và \u001dlấy tổng chia cho số khoảng thời gian đó.", - "-1424923010": "tại đó n là số các kỳ.", - "-1835384051": "\bThông tin SMA gửi tới bạn", - "-749487251": "SMA giống như là một chỉ báo của xu hướng. Nếu SMA tăng thì giá thị trường đang tăng và ngược lại. Số chu kỳ càng lớn, đường SMA càng mượt.", - "-1996062088": "Trong ví dụ này, mỗi điểm của đường SMA là số trung bình của các giá đóng trong 10 ngày qua.", - "-1866751721": "Danh sách đầu vào chấp nhận một danh sách các tick hoặc nến, trong khi khoảng thời gian là khoảng thời gian được chỉ định.", - "-1097076512": "Bạn có thể so sánh các giá trị SMA được tính trên mỗi lần chạy bot để xác định xu hướng thị trường. Ngoài ra, bạn cũng có thể sử dụng một biến của khung SMA, khung Mảng Biến thiên Trung bình Đơn giản. ", - "-1254849504": "Nếu một khoảng thời gian là 10 được nhập, khối Mảng Biến thiên Trung bình Đơn giản sẽ trả về danh sách các giá trị SMA được tính dựa trên khoảng thời gian 10.", - "-859028989": "Trong ví dụ này, ngày và giờ sẽ được hiển thị trong hộp thông báo màu xanh lục.", - "-1452086215": "Trong ví dụ này, hợp đồng Rise sẽ được mua vào nửa đêm ngày 1 tháng 8 năm 2019.", - "-2078588404": "Chọn thị trường và loại tài sản mong muốn của bạn. Ví dụ: Forex > Các cặp chính > AUD/JPY", - "-2037446013": "2. Loại giao dịch", - "-533927844": "Chọn loại giao dịch mong muốn của bạn. Ví dụ: Lên/Xuống > Tăng/Giảm", - "-1192411640": "4. Khoảng thời gian nến mặc định", - "-485434772": "8. Các tùy chọn giao dịch", - "-1827646586": "Khung này gán một giá trị đã cho cho một biến, tạo biến nếu nó không tồn tại.", "-1687036846": "Tải xuống khung", "-1266781295": "Mở rộng", "-894560707": "chức năng", diff --git a/packages/translations/src/translations/zh_cn.json b/packages/translations/src/translations/zh_cn.json index eeda4d87a0d8..66b685b3991c 100644 --- a/packages/translations/src/translations/zh_cn.json +++ b/packages/translations/src/translations/zh_cn.json @@ -7,7 +7,6 @@ "11872052": "是,我将稍后再来", "14365404": "{{ message_type }}的请求已失败,{{ delay }}秒后重试", "15377251": "盈利金额: {{profit}}", - "17217397": "加密货币", "17843034": "查看身份证明文件验证状态", "21035405": "请告诉我们您为什么要离开。(最多选择{{ allowed_reasons }} 个原因。)", "25854018": "此程序块在开发人员控制台中显示消息,输入内容可以是文本字符串、数字、布尔值或数据数组。", @@ -22,6 +21,7 @@ "46523711": "您的身份证明已通过验证", "49963458": "选择期权", "54185751": "少于$100,000", + "55340304": "保留当前合约?", "55916349": "所有", "58254854": "范围", "59169515": "如果您选择“亚洲上涨”期权,当最新价格高于平均价格时,您将获得赔付。", @@ -61,7 +61,6 @@ "111931529": "7天内最大总投注金额", "113378532": "以太币/美元", "113884303": "德国指数", - "113933902": "下载 Deriv X 应用程序", "115032488": "买入价和损益", "116005488": "指标", "117318539": "密码必须有大小写英文字母和数字。", @@ -163,7 +162,6 @@ "270339490": "如果您选择“大于”期权,只要最新价格的最后一个数字大于您的预测,您将获得赔付。", "270610771": "下例中,烛线开盘价被分配到\"candle_open_price“变量。", "270712176": "下降", - "270727821": "股票指数", "270780527": "文件上传已达上限。", "272179372": "此程序块一般用于调整下一个交易的参数及执行止损/止盈逻辑。", "273350342": "复制令牌并粘贴到应用程序内。", @@ -197,7 +195,6 @@ "317601768": "主题", "318865860": "收盘", "318984807": "此程序块以指定次数重复其内含的说明。", - "319538091": "DMT5 金融 STP", "323179846": "每一烛形图线可设置为一分钟到一天的时间间隔。", "323209316": "选择Deriv Bot 策略", "325662004": "扩大程序块", @@ -248,7 +245,6 @@ "384303768": "如上一个烛形线是黑色,此程序块将返回“真”。它能放在画布上任何位置,除了交易参数根块的范围内。", "386502387": "自动交易已停止", "389923099": "放大", - "390647540": "真实账户", "390890891": "上一季", "391915203": "对冲", "392582370": "下跌同价", @@ -256,7 +252,6 @@ "396961806": "不支持以 Polygon (Matic) 代币存款,请仅使用以太币{{token}}。", "399387585": "欲知详情,请查看电子邮件。如有疑问,请前往我们的<0>帮助中心。", "401339495": "地址验证", - "402343402": "由于服务器发生问题,一些{{platform}} 账户目前无法使用。请耐心配合,非常感谢。", "403456289": "简单移动平均线的公式是:", "404743411": "存款总额", "406359555": "合约细节", @@ -271,6 +266,7 @@ "427134581": "尝试使用其他文件类型。", "427617266": "比特币", "428709688": "每个报告之间的首选时间间隔:", + "432508385": "止盈: {{ currency }} {{ take_profit }}", "432519573": "文档已上传", "433348384": "政治公众人士(PEP) 不可使用真实账户。", "433616983": "2. 调查阶段", @@ -326,7 +322,6 @@ "505793554": "最后一个字母", "510815408": "仅字母、数字、空格、连字符", "514031715": "列表 {{ input_list }} 为空", - "514776243": "您的{{account_type}} 密码已被更改。", "514948272": "复制链接", "518955798": "7. 开机时运行", "520136698": "兴旺 500 指数", @@ -438,7 +433,6 @@ "659482342": "请记住,保持准确和更新的答复是您的责任。您可随时到账户设置更新您的个人资料。", "660481941": "首先您必须生成API令牌才能够访问您的移动应用程序和其他第三方应用程序。", "660991534": "完成", - "662609119": "下载 MT5 应用程序", "665089217": "请提交<0>身份证明以验证账户并访问收银台。", "665777772": "恒星币/美元", "665872465": "下例中,先选定开盘价,然后分配予称为\"op\"的变量。", @@ -590,6 +584,7 @@ "872957901": "DBot即将推出的暗池", "873166343": "1. “日志”显示常规消息。", "874461655": "用手机扫描QR码", + "874484887": "止盈必须是正数.", "875532284": "用其他设备重启进程", "876086855": "完成金融评估表", "876292912": "退出", @@ -637,7 +632,6 @@ "947046137": "取款将于24小时内处理", "947363256": "创建列表", "947758334": "城市为必填项", - "948156236": "创建{{type}} 密码", "949859957": "提交", "952655566": "付款代理", "956448295": "检测到裁切图像", @@ -765,7 +759,6 @@ "1129124569": "如果您选择“小于”期权,只要最新价格的最后一个数字小于您的预测,您将获得赔付。", "1129296176": "关于接收资金的重要通知", "1129842439": "请输入止盈金额。", - "1129984312": "银行汇款", "1130744117": "我们将尝试在10个工作日内解决您的投诉。我们会把结果通知您,并说明我们的立场,也会提出我们打算采取的任何补救措施。", "1130791706": "否", "1133651559": "在线聊天", @@ -878,6 +871,7 @@ "1293660048": "每天最大总亏损金额", "1294756261": "此程序块创建可以随时执行一组指令的函数。在此处放置其他程序块,以执行策略中所需的任何类型操作。当函数中的所有指令执行完毕后,您的机器人将继续执行策略中的其余程序块。单击“执行某项操作”字段,以为其指定名称。单击加号图标以将值(作为已命名变量)发送到您的函数。", "1295284664": "请接受<0>更新条款和条件以继续操作。", + "1296380713": "关闭合约", "1299479533": "8小时", "1301668579": "我们正在努力为您提供此功能。如果您有另一个账户,请切换到该账户以继续交易。您可以添加 DMT5 金融账户。", "1302691457": "职业", @@ -921,7 +915,6 @@ "1346339408": "经理", "1347071802": "{{minutePast}}分钟前", "1348009461": "请将以下 Deriv X 账户平仓:", - "1349142948": "DMT5 金融", "1349289354": "太好了,这就是我们需要的一切信息", "1349295677": "文本 {{ input_text }} 中获取自 {{ position1 }} {{ index1 }} 至 {{ position2 }} {{ index2 }} 的子字符串", "1351152200": "欢迎来到 Deriv MT5 (DMT5) 仪表板", @@ -1024,6 +1017,7 @@ "1467421920": "有间隔:%1", "1468308734": "只要给定条件为真,此程序块就会重复指令", "1468419186": "Deriv当前支持提款Tether USDT到Omni 钱包。为了确保交易成功,请输入与您要提取的代币兼容的钱包地址。<0>了解详情", + "1469150826": "止盈", "1469764234": "收银台出错", "1469814942": "- 分部", "1470319695": "返回真或假", @@ -1043,7 +1037,6 @@ "1502325741": "密码不可与电子邮件地址相同。", "1503618738": "-交易参考ID:合约的参考ID", "1505898522": "下载堆栈", - "1506251760": "钱包", "1509570124": "{{buy_value}} (买入)", "1509678193": "教育", "1510075920": "黄金/美元", @@ -1085,6 +1078,7 @@ "1577480486": "您的手机链接将于一小时后失效", "1577527507": "开立账户的原因是必填项.", "1577612026": "选择文件夹", + "1579484521": "交易中心", "1580498808": "发现多个面孔", "1584109614": "跳动点字符串列表", "1584936297": "XML文件包含不受支持的元素。请检查或修改文件。", @@ -1107,6 +1101,7 @@ "1620278321": "仅名字和姓氏本身很容易猜到", "1620346110": "设置货币", "1622662457": "开始日期", + "1623706874": "当您想使用乘数作为交易类型时,请使用此程序块。", "1630372516": "体验法币通道", "1630417358": "请前往账户设置并填写个人详细信息,以启用取款。", "1634594289": "选择语言", @@ -1126,6 +1121,7 @@ "1651513020": "显示每个间隔的剩余时间", "1651951220": "像“abcabcabc”这样的重复词比“abc”更难猜测", "1652366857": "获取和删除", + "1652968048": "定义诸如乘数和投注额等交易选项。", "1652976865": "此例子中,这个程序块与另一个程序块同时使用,以从烛形图列表中获取开盘价。之后开盘价被分配给称为\"cl\"的变量。", "1653136377": "已复制!", "1653159197": "支付代理取款", @@ -1142,6 +1138,7 @@ "1665738338": "余额", "1665756261": "前往实时聊天", "1667395210": "您的身份证明已成功提交", + "1670016002": "乘数: {{ multiplier }}", "1670426231": "结束时间", "1671232191": "您已设置以下限制:", "1677027187": "外汇", @@ -1183,7 +1180,6 @@ "1734264460": "免责声明", "1736292549": "邮政编码更新", "1737352280": "未调用Bot.init", - "1738504192": "电子钱包", "1738681493": "必要时摘下眼镜", "1739384082": "无职业", "1740371444": "未选择标的市场", @@ -1250,7 +1246,6 @@ "1820332333": "充值", "1824193700": "此程序块提供最新跳动点数值的最后数字。", "1827607208": "文件未上传。", - "1828994348": "DMT5 在 {{country}} 不可用", "1832974109": "SmartTrader", "1833481689": "解锁", "1837762008": "请提交身份证明和地址证明,在账户设置验证账户以访问收银台。", @@ -1308,7 +1303,6 @@ "1887852176": "站点已更新", "1889357660": "输入以分钟为单位的值,最多60480分钟(相当于6周)。", "1890171328": "通过点击以下接受 键并依照后续流程开立账户,您须注意,您可能承担一些风险(可能会很严重,包括损失整个投资资金的风险),而对于此类风险缺,你可能乏知识与经验以作出正确评估或化解。", - "1890284485": "探索 DTrader", "1890332321": "返回给定文本字符串的字符数,包括数字、空格、标点符号和符号。", "1894667135": "请验证您的地址证明", "1898670234": "{{opening_date}}<0>{{opening_day}}{{formatted_opening_time}} (GMT) 。", @@ -1365,6 +1359,7 @@ "1971898712": "添加或管理账户", "1973536221": "您还没有持仓头寸。", "1982912252": "从有期限列表获得的相对强度指标 (RSI)", + "1983001416": "定义您的交易选项,例如乘数和投注资金。此程序块只能与乘数交易类型一起使用。如果您选择其他交易类型,此程序块将被交易选项程序块取代。", "1983387308": "预览", "1983544897": "不接受以邮箱为地址", "1983676099": "请查看您的电子邮件以便了解详情.", @@ -1491,7 +1486,6 @@ "2138861911": "不接受扫描件和影印件", "2139171480": "重设上涨/重设下跌", "2139362660": "左侧", - "2141055709": "新{{type}} 密码", "2143803283": "买入错误", "2144609616": "如果您选择“重设-下跌”,只要退市现价严格低于入市现价或重设时现货价,您将获得赔付。", "2145690912": "赚取收入", @@ -1948,7 +1942,6 @@ "-582721696": "当前允许取款额为 {{format_min_withdraw_amount}} 至 {{format_max_withdraw_amount}}", "-1957498244": "更多", "-1684548351": "转换至加密账户", - "-1345040662": "在找买入加密货币的方法?", "-197251450": "不想以{{currency_code}} 交易?您可以另外开立加密货币账户。", "-212277385": "无法再更改账户币种,因为您已在法定账户存款或开立了真实的 DMT5 或 Deriv X 账户。请通过<0>实时聊天与我们联系以了解详情。", "-1900848111": "这是您的 {{currency_code}} 账户。", @@ -2022,6 +2015,7 @@ "-811190405": "时间", "-2004264970": "钱包地址需有25至64个字符。", "-1707299138": "您的{{currency_symbol}} 钱包地址", + "-1179992129": "所有支付代理", "-922432739": "请输入有效的客户登录 ID。", "-1024241603": "余额不足。", "-1979554765": "请输入有效的说明。", @@ -2033,7 +2027,6 @@ "-1388977563": "已复制!", "-1962894999": "该地址只能使用一次。请为您的下个交易复制新的地址。", "-451858550": "通过单击“继续”,您将被重定向到第三方付款服务提供商{{service}}。请注意,{{website_name}} 对{{service}} 提供的内容或服务概不负责。如果遇到与{{service}} 服务相关的任何问题,您必须直接与{{service}} 联系。", - "-1179992129": "所有支付代理", "-344959847": "如果{{website_name}} 不支持您的本地付款方式或货币,付款代理商将被授权为您处理存款和取款。", "-1232852916": "正在转换至您的{{currency}} 账户以查看交易。", "-38063175": "{{account_text}} 钱包", @@ -2056,6 +2049,7 @@ "-1615615253": "不支持以波场币,请仅使用以太币{{token}} 存款。", "-1831000957": "请选择您存款的来源网络。", "-314177745": "很遗憾,由于服务器故障,我们无法获得地址。请单击刷新以重新加载地址或稍后重试。", + "-1345040662": "在找买入加密货币的方法?", "-2005265642": "Fiat onramp 是一种收银服务,可让您将法定货币转换为加密货币以对 Deriv 加密货币账户充值。这里列出了第三方加密货币兑换所。您需与他们开立账户才能使用其服务。", "-1593063457": "选择付款渠道", "-130833284": "请注意,您的最高和最低提款限额不是固定的。将根据加密货币的高波动率而发生变化。", @@ -2093,6 +2087,8 @@ "-1354485738": "重设买权", "-376148198": "只会持续上涨", "-1337379177": "高跳动点", + "-328036042": "请输入高于当前潜在亏损的止损金额。", + "-2127699317": "无效止损额。止损不可大于投注额。", "-1940333322": "此账户不可用 DBot", "-1210387519": "前往 DMT5 仪表板", "-1223145005": "亏损金额: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "最大持续时间: {{ max }}", "-1194719174": "交易正亏损时您可加入投注资金的乘数金额。", "-749186458": "机器人运行时,账户切换将被禁用。切换账户前请先停止运行机器人。", + "-662836330": "您想保留当前合约或关闭它?如您决定保留,稍后可在<0>报表页面查看及关闭它。", + "-597939268": "保留合约", "-1322453991": "需要登录才能运行 bot。", "-1483938124": "此策略当前与DBot不兼容。", + "-236548954": "合约更新错误", "-1428017300": "该", "-1450728048": "的", "-255051108": "您", "-1845434627": "是", "-931434605": "此", "-740712821": "一个", + "-187634388": "此程序块是强制性的。您可以在此处决定是否让机器人继续交易。此程序块仅允许复制一次。", + "-2105473795": "唯一确定如何格式化程序块输出的输入参数。如果输入参数是“字符串”,则将添加账户货币。", + "-1800436138": "2. \"数字\": 1325.68", + "-2046396241": "此程序块是强制性的。此程序块仅允许复制一次。当您打开DBot时,默认情况下它将添加到画布上。", + "-530632460": "此程序块用于确定市场价格是否朝所选方向移动。它提供“真”或“假”之值。", + "-1875717842": "例如:", + "-890079872": "1. 如果所选方向为“上涨”,并且上一个跳动值小于当前跳动值,则输出为“真”。 否则输出将为空字符串。", + "-489739641": "2. 如果所选方向为“下跌”,并且上一个跳动值大于当前跳动值,则输出为“真”。否则输出将为空字符串。", + "-2116076360": "有4种消息类型:", + "-1421941045": "2. “警告”以黄色显示消息,以突出显示需要注意的内容。", + "-277850921": "如果选择“赢”,假设您的最后一笔交易成功,将返回“真”。否则将返回空字符串。", + "-1918487001": "例如:", + "-2139916657": "1. 下面的示例中,即使仅完成一次迭代,如果“x”为“假”,循环也会终止", + "-1238900333": "2. 下面的示例中,如果\"x\"为\"假\",循环将跳至下一个迭代,而无需执行以下程序块", + "-1729479576": "您可以在循环内使用“i”,例如访问列表项", + "-1474636594": "此示例中,循环将重复三次,因为这是给定列表中的项目数。每次迭代中,将从列表分配一个值予变量\"i\"。 ", + "-908772734": "此程序块对语句作出评估,并仅在该语句为“真”时才执行操作。", + "-334040831": "2. 此示例中,只要x的值大于或等于10,指令会重复执行。一旦x的值跌至小于10,循环即终止。", + "-444267958": "“自大纪元以来的秒数”程序块返回自1970年1月1日以来的秒数。", + "-447522129": "如果您要在一定时间后重复操作,可能需要用到它。", + "-1488259879": "“烛线图”指烛台图上的每个条形图。每个烛线图代表选定时间间隔内的四个市场价格:", + "-2020693608": "图表上每个烛台代表选定时间间隔内的4个市场价格:", + "-62728852": "- 开盘价:开市价格", + "-1247744334": "- 低价: 最低价", + "-1386365697": "- 平仓价: 平仓价", + "-1498732382": "黑色(或红色)烛形线表示开盘价高于平仓价。代表市价下跌走势。", + "-1871864755": "此程序块为您提供所选市场的最新跳动点值的最后数字。如果最新跳动点值为1410.90,此程序块将返回0。这对基于数字的合约(如偶/奇,相符/差异或高于/低于)很有用。", + "-1029671512": "如果选择了“或”操作,则当一或两个给定值为“真”时,程序块返回“真”", + "-210295176": "可用的运算:", + "-1385862125": "- 加", + "-983721613": "- 减", + "-854750243": "- 乘", + "-1394815185": "如果给定数字小于范围的下边界值,程序块将返回下边界值。同样,如果给定的数字大于上边界值,则程序块将返回上边界值。如果给定值在边界之间,程序块将不变地返回给定值。", + "-1034564248": "下面示例中,程序块返回值10,因为给定值(5)小于下边界值(10)", + "-2009817572": "此程序块对给定数字执行以下运算。", + "-671300479": "可用的运算为:", + "-514610724": "- 绝对", + "-1923861818": "- 指定数字的Euler (2.71) 数次方", + "-1556344549": "方法如下:", + "-1061127827": "- 访问以下网址,确保将替换为您在步骤1中创建的Telegram API令牌: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. 回到 DBot,并将Notify Telegram程序块添加到工作区中。将Telegram API令牌和聊天ID相应地粘贴到程序块字段中。", + "-311389920": "此例中,烛线列表中的开盘价被分配予称为\"cl\"的变量。", + "-1460794449": "此程序块提供选定时间间隔内的烛形线列表。", + "-1634242212": "在功能块中使用,当特定条件为真时,此程序块返回一个值。", + "-2012970860": "此程序块为您提供有关上一份合约的信息。", + "-1504783522": "您可选择查看以下内容之一:", + "-10612039": "- 利润: 您赚取的盈利", + "-555996976": "- 入市时间:合约开始的时间", + "-1391071125": "- 退市时间: 合约到期时间", + "-1961642424": "- 退市数值:合约最后跳动点的数值", + "-111312913": "- 障碍:合约的障碍值(适用于基于障碍的交易类型,如范围之内/之外、触及/未触及等)", + "-674283099": "- 结果: 上次合约的结果:\"获利\" 或 \"亏损\"", + "-704543890": "此程序块为您提供选定的烛线值,例如开盘价、平仓价、高价、低价和开盘时间。它需要烛线值作为输入参数。", + "-482281200": "下例中,开盘价被分配予\"op\"变量。", + "-364621012": "此程序块提供选定时间间隔的特定烛线值。您可以选择所需的数值:", + "-232477769": "- 开盘:开市价格", + "-610736310": "用此程序块以市价卖出您的合约。合约卖出是可选的。如果市场走势不利,您可以选择卖出。", + "-1307657508": "如果您决定卖出合约,此程序块会向您显示潜在的损益。它只能在“卖出条件”根块内使用。", + "-1921072225": "下例中,仅在潜在损益大于投注额时才卖出合约。", + "-955397705": "SMA将市价添加到多个时间段的跳动点或烛线列表中,然后将总和除以该时间段数。", + "-1424923010": "其中n是周期数。", + "-1835384051": "SMA的指示", + "-749487251": "SMA可作为走势的指标。如果SMA向上,则市场价格将上涨,反之亦然。周期数越大,SMA线越平滑。", + "-1996062088": "此例子中,简单移动平均线(SMA)的每一点是前10天收盘价的算术平均数。", + "-1866751721": "输入列表接受跳动点或烛线列表,而周期是指定的时间段。", + "-1097076512": "您可以对每次机器人运行所计算出的SMA值作比较,以识别市场走势方向。或者,您也可以使用SMA程序块,即简单移动平均数组程序块的变化。 ", + "-1254849504": "如果输入的周期为10,则简单移动平均数组程序块将返回基于周期10计算的SMA值列表。", + "-1190046167": "此程序块显示带有自定义消息的对话框。显示对话框时,您的策略将暂停,并且仅在单击“确定”后才会恢复。", + "-859028989": "此示例中,日期和时间将显示在绿色的通知框中。", + "-1452086215": "此示例中,2019年8月1日午夜将买入上涨合约。", + "-1765276625": "单击乘数下拉菜单,然后选择您要交易的乘数值。", + "-1872233077": "您的潜在利润将乘以您选择的乘数值。", + "-614454953": "要了解关于乘数的详细信息,请前往 <0>乘数页面。", + "-2078588404": "选择所需的市场和资产类型。例如,外汇>主要货币对> 澳元/日元", + "-2037446013": "2. 交易类型", + "-533927844": "选择所需的交易类型。例如,涨/跌>上涨/下跌", + "-1192411640": "4. 默认烛线间隔", + "-485434772": "8. 交易选项", + "-1827646586": "此程序块将给定数值分配给变量,如果变量尚不存在则创建一个。", "-254421190": "列表: ({{message_length}})", "-9461328": "安全和隐私", "-418247251": "下载您的日志。", @@ -2209,17 +2287,6 @@ "-398198412": "在一体式外汇和差价合约交易平台 Deriv MT5(DMT5)交易。", "-1793883644": "在可自定义、容易使用的交易平台交易外汇和差价合约。", "-1246992539": "Binary Bot", - "-563774117": "仪表板", - "-773544978": "主页", - "-1003047246": "我的应用程序", - "-2024365882": "探索", - "-2038666662": "关于我们", - "-832198631": "信用卡/借记卡", - "-1787820992": "平台", - "-837532140": "交易类型", - "-663862998": "市场", - "-947407631": "综合指数", - "-362324454": "大宗商品", "-821418875": "交易者", "-1309011360": "空缺", "-679102561": "合约细节", @@ -2317,41 +2384,47 @@ "-618539786": "您的账户将按时关闭", "-945275490": "从您的期权账户中提取所有资金.", "-705744796": "您的模拟账户余额已达到最大限额,您将无法进行新交易。重设余额以继续用模拟账户交易。", - "-2067423661": "为 Deriv 账户提供更安全保障", - "-1719731099": "双重验证以密码和手机保护账户。因此只有您可以访问自己的账户,即使有人知道密码也无法访问。", - "-1738575826": "请切换到或开立真实账户以访问收银台。", + "-1585069798": "请单击以下链接以完成合适性测试。", + "-1287141934": "查找更多信息", + "-367759751": "账户尚未通过验证", + "-596690079": "享受使用 Deriv 的乐趣?", + "-265932467": "我们很想听听您的意见", + "-1815573792": "在 Trustpilot留下您的评语。", + "-823349637": "前往 Trustpilot", "-1204063440": "设置账户币种", + "-1164554246": "您提交了过期的身份证明文件", + "-219846634": "让我们验证您的身份", + "-529038107": "安装", + "-87149410": "安装 DTrader 应用", + "-1738575826": "请切换到或开立真实账户以访问收银台。", + "-1329329028": "您尚未设置30天交易限额", + "-132893998": "由于您尚未设置 30 天交易限额,您已被暂时禁用收银台。请前往自我禁止并设置此限额。", + "-1852207910": "MT5 已被禁提款", + "-764323310": "您的MT5账户已被禁提款。请检查您的电子邮件, 以了解更多详情。", + "-1435762703": "请验证您的身份", + "-1902997828": "立即刷新", + "-753791937": "新版 Deriv 已推出", + "-1775108444": "此页面将于5分钟内自动刷新以加载最新版本。", + "-1175685940": "请通过实时聊天与我们联系,以启用取款。", + "-1125797291": "密码已更新。", + "-157145612": "请用更新密码登录。", + "-87177461": "请前往账户设置并填写个人详细信息,以启用存款。", + "-904632610": "重设余额", + "-470018967": "重设余额", + "-156611181": "请前往账户设置完成财务评估以解锁。", "-1925176811": "暂时无法处理提款", "-980696193": "由于系统维护,暂时无法取款。一旦维护完成,您即可取款。", "-1647226944": "暂时无法处理存款", "-488032975": "由于系统维护,暂时无法存款。一旦维护完成,您即可存款。", "-67021419": "由于系统维护,收银台暂时无法使用。数分钟后一旦维护完成,您即可访问收银台。", - "-219846634": "让我们验证您的身份", - "-367759751": "账户尚未通过验证", - "-1175685940": "请通过实时聊天与我们联系,以启用取款。", - "-1852207910": "MT5 已被禁提款", - "-764323310": "您的MT5账户已被禁提款。请检查您的电子邮件, 以了解更多详情。", - "-1585069798": "请单击以下链接以完成合适性测试。", - "-1329329028": "您尚未设置30天交易限额", - "-132893998": "由于您尚未设置 30 天交易限额,您已被暂时禁用收银台。请前往自我禁止并设置此限额。", - "-156611181": "请前往账户设置完成财务评估以解锁。", "-849587074": "您尚未提供税务编号", "-47462430": "法律和监管规定要求提供此信息。请到账户设置填写您最新的税务编号。", - "-87177461": "请前往账户设置并填写个人详细信息,以启用存款。", + "-2067423661": "为 Deriv 账户提供更安全保障", + "-1719731099": "双重验证以密码和手机保护账户。因此只有您可以访问自己的账户,即使有人知道密码也无法访问。", + "-822888359": "取款功能已被锁", + "-1197701578": "请再次提交身份证明并前往账户设置完成财务评估以解锁。", "-2087822170": "您已离线", "-1669693571": "检查您的连接。", - "-1125797291": "密码已更新。", - "-157145612": "请用更新密码登录。", - "-904632610": "重设余额", - "-470018967": "重设余额", - "-1435762703": "请验证您的身份", - "-1164554246": "您提交了过期的身份证明文件", - "-1902997828": "立即刷新", - "-753791937": "新版 Deriv 已推出", - "-1775108444": "此页面将于5分钟内自动刷新以加载最新版本。", - "-529038107": "安装", - "-87149410": "安装 DTrader 应用", - "-1287141934": "查找更多信息", "-1998049070": "如您同意我们使用 cookie,请单击“接受”。有关更多信息,请<0>参阅我们的政策。", "-1721181859": "您需要有 {{deriv_account}} 账户", "-1989074395": "请先添加 {{deriv_account}} 账户,然后再添加 {{dmt5_account}} 账户。通过{{deriv_label}} 账户进行转账即可完成{{dmt5_label}} 账户的存款和取款。", @@ -2386,6 +2459,7 @@ "-1950045402": "提取所有资金", "-168971942": "这对您来说意味着什么", "-905560792": "好, 我明白", + "-2024365882": "探索", "-1197864059": "开立免费模拟账户", "-1485242688": "步骤 {{step}}: {{step_title}} ({{step}} 共 {{steps}})", "-1829842622": "您可以为每种加密货币开立账户。", @@ -2439,6 +2513,7 @@ "-1917706589": "您的Deriv账户已与{{social_identity_provider}} 解除链接。以后请用电子邮件和密码登录。", "-2017825013": "知道了", "-505449293": "输入Deriv账户的新密码。", + "-1787820992": "平台", "-184713104": "通过期权或乘数交易赚取固定赔付,在有限风险下扩大收益。", "-1571775875": "我们的旗舰期权和乘数交易平台。", "-1107320163": "不须程序代码,将您的交易构思自动化.", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.如果决定对我们有利,您必须在做出决定后7天内向我们提供免责声明,之后该投诉将被视为已结案。", "-429248139": "5. 免责声明", "-818926350": "事件发生之日起45天内,金融委员会接受上诉,条件是交易者事先须试图直接与公司解决问题。", - "-236548954": "合约更新错误", "-1282933308": "不是 {{barrier}}", "-968190634": "等于 {{barrier}}", "-1747377543": "低于 {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "数字期权", "-1790089996": "新建!", "-590018519": "合约已购入", - "-328036042": "请输入高于当前潜在亏损的止损金额。", - "-2127699317": "无效止损额。止损不可大于投注额。", "-405439829": "很抱歉,您不能查看此合约,因为它不属于此账户。", "-1714959941": "此图表对跳动点合约并不适用", "-1254554534": "请更改图表持续时间以打勾获取更好的交易体验。", @@ -2593,22 +2665,13 @@ "-584696680": "如果您选择“止盈”并指定想要赢得的金额,那么当您的盈利大于或等于该金额时,您的头寸将自动平仓。您的获利可能大于您投入的金额,具体取决于收盘时的市场价格。", "-178096090": "“止盈”无法更新。您只能在“取消交易”到期时更新。", "-206909651": "入市现价指我们服务器处理合约完毕时的市价。", - "-673424733": "模拟账户", - "-1066565281": "服务器维护从每个星期日的格林尼治标准时间06:00开始,可能需要2个小时。此期间内服务可能会中断。", - "-1481390656": "服务器维护每个星期日从格林尼治标准时间01:00开始。此过程最多可能需要2个小时才能完成。此期间内服务可能会中断。", - "-1199152768": "请探索我们其他的平台。", - "-498346912": "探索 DBot", + "-464262734": "管理 {{platform}} 真实 {{account_title}} 账户密码", "-2042845290": "您的投资者密码已被更改.", "-1882295407": "您的密码已被更改。", "-254497873": "用此密码给予其他用户查看权限。当该用户查看您的交易账户时将无法交易或采取任何其他行动。", "-161656683": "当前投资者密码", "-374736923": "新投资者密码", "-1793894323": "创建或重置投资者密码", - "-464262734": "管理 {{platform}} 真实 {{account_title}} 账户密码", - "-1928229820": "重置Deriv X投资者密码", - "-1917043724": "重置DMT5投资者密码", - "-1087845020": "主页", - "-1950683866": "投资者", "-149836494": "您的交易参考号是{{transaction_id}}", "-1382749084": "返回交易", "-538215347": "净存款", @@ -2737,7 +2800,6 @@ "-1588406981": "您可用此程序块查看上次的交易结果。", "-1459154781": "合约详细: {{ contract_detail }}", "-1652241017": "从合约详细信息列表中读取所选的财产", - "-2012970860": "此程序块为您提供有关上一份合约的信息。", "-2082345383": "这些程序块将控制权转移到买入条件程序块。", "-172574065": "此程序块将控制权转移回“购入”条件程序块,让您可以购买另一份合约。", "-403103225": "重启", @@ -2780,7 +2842,6 @@ "-1556495906": "根据选定的时间间隔从烛线列表中返回特定数值列表", "-166816850": "创建烛线图数值列表(1)", "-1261436901": "蜡烛图线列表", - "-1460794449": "此程序块提供选定时间间隔内的烛形线列表。", "-1174859923": "读取选定的烛线值", "-1972165119": "读取烛线值(1)", "-1956100732": "无论是否有交易,您都可以使用此程序块分析跳动点", @@ -2830,10 +2891,13 @@ "-702370957": "转换成日期/时间", "-982729677": "转换成时间戳", "-311268215": "此程序块将代表日期和时间的文本字符串转换为自Unix 纪元(1970年1月1日)以来的秒数。时间和时区偏移是可选项。示例:2019年1月1日21:03:45 GMT + 0800将转换为1546347825。", + "-1797602591": "止损: {{ currency }} {{ stop_loss }}", + "-1214929127": "止损必须是正数.", + "-2142851225": "乘数交易期权", + "-625636913": "金额必须是正数.", "-1466383897": "持续时间: {{ duration_unit }} {{ duration_value }}", "-440702280": "交易选项", "-1193894978": "定义诸如期限和投注额等交易选项。一些选项仅适用于某些交易类型。", - "-625636913": "金额必须是正数.", "-46523443": "持续时间值是不允许的。要运行机器人,请输入介于{{min}} 至{{max}} 之间的值。", "-1483427522": "交易类型: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. 交易参数", @@ -2841,7 +2905,6 @@ "-783173909": "交易选项:", "-376956832": "在这里定义合约的参数。", "-1244007240": "如果 {{ condition }} 那么", - "-908772734": "此程序块对语句作出评估,并仅在该语句为“真”时才执行操作。", "-1577206704": "否则如果", "-33796979": "真", "-1434883449": "这是返回布尔值(真或假)的程序块。", @@ -2903,84 +2966,11 @@ "-1133072029": "文本字符串长度", "-1109723338": "打印 {{ input_text }}", "-736668830": "打印", - "-1190046167": "此程序块显示带有自定义消息的对话框。显示对话框时,您的策略将暂停,并且仅在单击“确定”后才会恢复。", "-1821552998": "在 {{ input_text }} 的 {{ side }} 中修剪空格", "-801766026": "右侧", "-474779821": "剪裁空格", "-1219239717": "工作区内缺失了一或多个强制程序块。请添加所需的程序块后重试。", "-250761331": "工作区内一或多个强制程序块已被禁用。请启用所需的程序块后重试。", - "-187634388": "此程序块是强制性的。您可以在此处决定是否让机器人继续交易。此程序块仅允许复制一次。", - "-2105473795": "唯一确定如何格式化程序块输出的输入参数。如果输入参数是“字符串”,则将添加账户货币。", - "-1800436138": "2. \"数字\": 1325.68", - "-2046396241": "此程序块是强制性的。此程序块仅允许复制一次。当您打开DBot时,默认情况下它将添加到画布上。", - "-530632460": "此程序块用于确定市场价格是否朝所选方向移动。它提供“真”或“假”之值。", - "-1875717842": "例如:", - "-890079872": "1. 如果所选方向为“上涨”,并且上一个跳动值小于当前跳动值,则输出为“真”。 否则输出将为空字符串。", - "-489739641": "2. 如果所选方向为“下跌”,并且上一个跳动值大于当前跳动值,则输出为“真”。否则输出将为空字符串。", - "-2116076360": "有4种消息类型:", - "-1421941045": "2. “警告”以黄色显示消息,以突出显示需要注意的内容。", - "-277850921": "如果选择“赢”,假设您的最后一笔交易成功,将返回“真”。否则将返回空字符串。", - "-1918487001": "例如:", - "-2139916657": "1. 下面的示例中,即使仅完成一次迭代,如果“x”为“假”,循环也会终止", - "-1238900333": "2. 下面的示例中,如果\"x\"为\"假\",循环将跳至下一个迭代,而无需执行以下程序块", - "-1729479576": "您可以在循环内使用“i”,例如访问列表项", - "-1474636594": "此示例中,循环将重复三次,因为这是给定列表中的项目数。每次迭代中,将从列表分配一个值予变量\"i\"。 ", - "-334040831": "2. 此示例中,只要x的值大于或等于10,指令会重复执行。一旦x的值跌至小于10,循环即终止。", - "-444267958": "“自大纪元以来的秒数”程序块返回自1970年1月1日以来的秒数。", - "-447522129": "如果您要在一定时间后重复操作,可能需要用到它。", - "-1488259879": "“烛线图”指烛台图上的每个条形图。每个烛线图代表选定时间间隔内的四个市场价格:", - "-2020693608": "图表上每个烛台代表选定时间间隔内的4个市场价格:", - "-62728852": "- 开盘价:开市价格", - "-1247744334": "- 低价: 最低价", - "-1386365697": "- 平仓价: 平仓价", - "-1498732382": "黑色(或红色)烛形线表示开盘价高于平仓价。代表市价下跌走势。", - "-1871864755": "此程序块为您提供所选市场的最新跳动点值的最后数字。如果最新跳动点值为1410.90,此程序块将返回0。这对基于数字的合约(如偶/奇,相符/差异或高于/低于)很有用。", - "-1029671512": "如果选择了“或”操作,则当一或两个给定值为“真”时,程序块返回“真”", - "-210295176": "可用的运算:", - "-1385862125": "- 加", - "-983721613": "- 减", - "-854750243": "- 乘", - "-1394815185": "如果给定数字小于范围的下边界值,程序块将返回下边界值。同样,如果给定的数字大于上边界值,则程序块将返回上边界值。如果给定值在边界之间,程序块将不变地返回给定值。", - "-1034564248": "下面示例中,程序块返回值10,因为给定值(5)小于下边界值(10)", - "-2009817572": "此程序块对给定数字执行以下运算。", - "-671300479": "可用的运算为:", - "-514610724": "- 绝对", - "-1923861818": "- 指定数字的Euler (2.71) 数次方", - "-1556344549": "方法如下:", - "-1061127827": "- 访问以下网址,确保将替换为您在步骤1中创建的Telegram API令牌: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. 回到 DBot,并将Notify Telegram程序块添加到工作区中。将Telegram API令牌和聊天ID相应地粘贴到程序块字段中。", - "-311389920": "此例中,烛线列表中的开盘价被分配予称为\"cl\"的变量。", - "-1634242212": "在功能块中使用,当特定条件为真时,此程序块返回一个值。", - "-1504783522": "您可选择查看以下内容之一:", - "-10612039": "- 利润: 您赚取的盈利", - "-555996976": "- 入市时间:合约开始的时间", - "-1391071125": "- 退市时间: 合约到期时间", - "-1961642424": "- 退市数值:合约最后跳动点的数值", - "-111312913": "- 障碍:合约的障碍值(适用于基于障碍的交易类型,如范围之内/之外、触及/未触及等)", - "-674283099": "- 结果: 上次合约的结果:\"获利\" 或 \"亏损\"", - "-704543890": "此程序块为您提供选定的烛线值,例如开盘价、平仓价、高价、低价和开盘时间。它需要烛线值作为输入参数。", - "-482281200": "下例中,开盘价被分配予\"op\"变量。", - "-364621012": "此程序块提供选定时间间隔的特定烛线值。您可以选择所需的数值:", - "-232477769": "- 开盘:开市价格", - "-610736310": "用此程序块以市价卖出您的合约。合约卖出是可选的。如果市场走势不利,您可以选择卖出。", - "-1307657508": "如果您决定卖出合约,此程序块会向您显示潜在的损益。它只能在“卖出条件”根块内使用。", - "-1921072225": "下例中,仅在潜在损益大于投注额时才卖出合约。", - "-955397705": "SMA将市价添加到多个时间段的跳动点或烛线列表中,然后将总和除以该时间段数。", - "-1424923010": "其中n是周期数。", - "-1835384051": "SMA的指示", - "-749487251": "SMA可作为走势的指标。如果SMA向上,则市场价格将上涨,反之亦然。周期数越大,SMA线越平滑。", - "-1996062088": "此例子中,简单移动平均线(SMA)的每一点是前10天收盘价的算术平均数。", - "-1866751721": "输入列表接受跳动点或烛线列表,而周期是指定的时间段。", - "-1097076512": "您可以对每次机器人运行所计算出的SMA值作比较,以识别市场走势方向。或者,您也可以使用SMA程序块,即简单移动平均数组程序块的变化。 ", - "-1254849504": "如果输入的周期为10,则简单移动平均数组程序块将返回基于周期10计算的SMA值列表。", - "-859028989": "此示例中,日期和时间将显示在绿色的通知框中。", - "-1452086215": "此示例中,2019年8月1日午夜将买入上涨合约。", - "-2078588404": "选择所需的市场和资产类型。例如,外汇>主要货币对> 澳元/日元", - "-2037446013": "2. 交易类型", - "-533927844": "选择所需的交易类型。例如,涨/跌>上涨/下跌", - "-1192411640": "4. 默认烛线间隔", - "-485434772": "8. 交易选项", - "-1827646586": "此程序块将给定数值分配给变量,如果变量尚不存在则创建一个。", "-1687036846": "下载程序块", "-1266781295": "展开", "-894560707": "功能", diff --git a/packages/translations/src/translations/zh_tw.json b/packages/translations/src/translations/zh_tw.json index a4e0b565b1ab..b35645e02e87 100644 --- a/packages/translations/src/translations/zh_tw.json +++ b/packages/translations/src/translations/zh_tw.json @@ -7,7 +7,6 @@ "11872052": "是,我將稍後再來", "14365404": "{{ message_type }}的請求已失敗, {{ delay }}秒後重試", "15377251": "盈利金額: {{profit}}", - "17217397": "加密貨幣", "17843034": "查看身份證明文件驗證狀態", "21035405": "請告訴我們您為什麼要離開。 (最多選擇{{ allowed_reasons }} 個原因。)", "25854018": "此區塊在開發人員主控台中顯示消息,輸入內容可以是文字串、數字、布爾值或資料陣列。", @@ -22,6 +21,7 @@ "46523711": "您的身份證明已通過驗證", "49963458": "選擇期權", "54185751": "少於$100,000", + "55340304": "保留目前合約?", "55916349": "所有", "58254854": "範圍", "59169515": "如果您選擇「亞洲上漲」期權,當最新價格高於平均價格時,您將獲得賠付。", @@ -61,7 +61,6 @@ "111931529": "7天內最大總投注金額", "113378532": "以太幣/美元", "113884303": "德國指數", - "113933902": "下載 Deriv X 應用程式", "115032488": "買入價和損益", "116005488": "指標", "117318539": "密碼必須有大小寫英文字母和數字。", @@ -163,7 +162,6 @@ "270339490": "如果您選擇「大於」期權,只要最新價格的最後一個數字大於您的預測,您將獲得賠付。", "270610771": "下例中,燭線開盤價被分配到\"candle_open_price\"變數。", "270712176": "下降", - "270727821": "股票指數", "270780527": "文件上傳已達上限。", "272179372": "此區塊一般用於調整下一個交易的參數及執行止損/止盈邏輯。", "273350342": "複製權杖並貼上應用程式內。", @@ -197,7 +195,6 @@ "317601768": "主題", "318865860": "收盤", "318984807": "此區塊以指定次數重覆其內含的說明。", - "319538091": "DMT5 金融 STP", "323179846": "每一燭形圖線可設定為一分鐘到一天的時間間隔。", "323209316": "選擇Deriv Bot 策略", "325662004": "擴大區塊", @@ -248,7 +245,6 @@ "384303768": "如上一個燭形線是黑色,此區塊將返回「真」。它能放在畫布上任何位置,除了交易參數根塊的範圍內。", "386502387": "自動交易已停止", "389923099": "放大", - "390647540": "真實帳戶", "390890891": "上一季", "391915203": "對沖", "392582370": "下跌同價", @@ -256,7 +252,6 @@ "396961806": "不支持以Polygon (Matic) 幣存款,請僅使用以太幣{{token}}。", "399387585": "欲知詳情,請檢視電子郵件。如有疑問,請前往我們的<0>幫助中心。", "401339495": "地址驗證", - "402343402": "由於伺服器發生問題,一些{{platform}} 帳戶目前無法使用。 請耐心配合,非常感謝。", "403456289": "簡單移動平均線的公式是:", "404743411": "存款總額", "406359555": "合約詳情", @@ -271,6 +266,7 @@ "427134581": "嘗試使用其他文件類型。", "427617266": "比特幣", "428709688": "每個報告之間的首選時間間隔:", + "432508385": "止盈:{{ currency }} {{ take_profit }}", "432519573": "文檔已上傳", "433348384": "政治公眾人士(PEP) 不可使用真實帳戶。", "433616983": "2. 調查階段", @@ -326,7 +322,6 @@ "505793554": "最後一個字母", "510815408": "只能包含字母、數字、空格、連字號", "514031715": "清單 {{ input_list }} 為空", - "514776243": "您的{{account_type}} 密碼已被更改。", "514948272": "複製連結", "518955798": "7. 開機時運行", "520136698": "興旺 500 指數", @@ -438,7 +433,6 @@ "659482342": "請記住,保持準確和更新的答覆是您的責任。您可隨時到帳戶設定更新您的個人資料。", "660481941": "首先您必須生成API權杖才能夠存取您的的行動應用程式和其他第三方應用程式。", "660991534": "完成", - "662609119": "下載 MT5 應用程式", "665089217": "請提交 <0>身份證明以驗證帳戶並存取收銀台。", "665777772": "恆星幣/美元", "665872465": "下例中,先選定開盤價,然後分配予稱為\"op\"的變數。", @@ -590,6 +584,7 @@ "872957901": "DBot即將推出的暗池", "873166343": "1. 「記錄」顯示標準消息。", "874461655": "用手機掃描QR碼", + "874484887": "止盈必須是正數.", "875532284": "用其他裝置重啟進程", "876086855": "完成金融評估表", "876292912": "退出", @@ -637,7 +632,6 @@ "947046137": "您的取款將於24小時内處理", "947363256": "建立清單", "947758334": "城市為必填欄位", - "948156236": "建立{{type}} 密碼", "949859957": "送出", "952655566": "付款代理", "956448295": "偵測到剪切圖像", @@ -765,7 +759,6 @@ "1129124569": "如果您選擇「小於」期權,只要最新價格的最後一個數字小於您的預測,您將獲得賠付。", "1129296176": "關於接收資金的重要通知", "1129842439": "請輸入止盈金額。", - "1129984312": "銀行匯款", "1130744117": "我們將嘗試在10個工作日內解決您的投訴。我們會把結果通知您,並說明我們的立場,也會提出我們打算採取的任何補救措施。", "1130791706": "否", "1133651559": "即時聊天", @@ -878,6 +871,7 @@ "1293660048": "每天最大總虧損金額", "1294756261": "此區塊建立可以隨時執行一組指令的函數。在此處放置其他區塊,以執行策略中所需的任何類型操作。當函數中的所有指令執行完畢後,您的機器人將繼續執行策略中的其餘區塊。點選「執行某項操作」欄位,以為其指定名稱。點選加號圖標以將值(作為已命名變數)傳送到您的函數。", "1295284664": "請接受<0>更新條款和條件以繼續操作。", + "1296380713": "關閉合約", "1299479533": "8小時", "1301668579": "我們正在努力為您提供此功能。如果您有另一個帳戶,請切換到該帳戶以繼續交易。您可以添加 DMT5 金融帳戶。", "1302691457": "職業", @@ -921,7 +915,6 @@ "1346339408": "經理", "1347071802": "{{minutePast}}分鐘前", "1348009461": "請將以下Deriv X 帳戶平倉:", - "1349142948": "DMT5 金融", "1349289354": "太好了,這就是我們需要的一切資訊", "1349295677": "文字 {{ input_text }} 中獲取自 {{ position1 }} {{ index1 }} 至 {{ position2 }} {{ index2 }} 的子字串", "1351152200": "歡迎來到 Deriv MT5 (DMT5) 儀表板", @@ -1024,6 +1017,7 @@ "1467421920": "有間隔: %1", "1468308734": "只要給定條件為真,此區塊就會重覆指令", "1468419186": "Deriv當前支持提款Tether USDT到Omni錢包。為了確保交易成功,請輸入與您要提取的代幣兼容的錢包地址。 <0>了解詳情", + "1469150826": "止盈", "1469764234": "收銀台出錯", "1469814942": "- 分區", "1470319695": "返回真或假", @@ -1043,7 +1037,6 @@ "1502325741": "您的密碼不可與電子郵件地址相同。", "1503618738": "-交易參考ID:合約的參考ID", "1505898522": "下載堆疊", - "1506251760": "錢包", "1509570124": "{{buy_value}} (買入)", "1509678193": "教育", "1510075920": "黃金/美元", @@ -1085,6 +1078,7 @@ "1577480486": "您的手機連結將於一小時後失效", "1577527507": "開立帳戶的原因是必填欄位.", "1577612026": "選擇資料夾", + "1579484521": "交易中心", "1580498808": "發現多個面孔", "1584109614": "跳動點字串清單", "1584936297": "XML文件包含不受支援的元素。請檢查或修改文件。", @@ -1107,6 +1101,7 @@ "1620278321": "僅名字和姓氏本身很容易猜到", "1620346110": "設定貨幣", "1622662457": "開始日期", + "1623706874": "當您想使用乘數作為交易類型時,請使用此區塊。", "1630372516": "體驗我們的法幣通道", "1630417358": "請前往帳戶設定並填寫個人詳細資料,以啟用取款。", "1634594289": "選擇語言", @@ -1126,6 +1121,7 @@ "1651513020": "顯示每個間隔的剩餘時間", "1651951220": "像“abcabcabc”這樣的重複詞比“abc”更難猜測", "1652366857": "獲取和刪除", + "1652968048": "定義乘數和投注額等交易選項。", "1652976865": "此例子中,這個區塊與另一個區塊同時使用,以從燭形圖清單中獲取開盤價。之後開盤價被分配給稱為\"cl\"的變數。", "1653136377": "已複製!", "1653159197": "支付代理取款", @@ -1142,6 +1138,7 @@ "1665738338": "餘額", "1665756261": "前往即時聊天", "1667395210": "您的身份證明已成功提交", + "1670016002": "乘數: {{ multiplier }}", "1670426231": "結束時間", "1671232191": "您已設定以下限制:", "1677027187": "外匯", @@ -1183,7 +1180,6 @@ "1734264460": "免責聲明", "1736292549": "郵遞區號更新", "1737352280": "未調用Bot.init", - "1738504192": "電子錢包", "1738681493": "必要時摘下眼鏡", "1739384082": "無職業", "1740371444": "未選擇標的市場", @@ -1250,7 +1246,6 @@ "1820332333": "充值", "1824193700": "此區塊提供最新跳動點數值的最後數字。", "1827607208": "文件未上傳。", - "1828994348": "DMT5在 {{country}} 不可用", "1832974109": "SmartTrader", "1833481689": "解鎖", "1837762008": "請提交身份證明和地址證明,在帳戶設置驗證帳戶以存取收銀台。", @@ -1308,7 +1303,6 @@ "1887852176": "站點已更新", "1889357660": "輸入以分鐘為單位的值,最多60480分鐘(相當於6週)。", "1890171328": "通過點選以下的接受 鍵繼續開立帳戶,請注意您可能讓自己冒一些風險(可能會很嚴重,包括損失整個投資資金的風險),而您可能缺乏正確評估或化解風險的知識或經驗。", - "1890284485": "探索 DTrader", "1890332321": "返回指定文字字串的字元數,包括數字、空格、標點符號和符號。", "1894667135": "請驗證您的地址證明", "1898670234": "{{opening_date}}<0>{{opening_day}}{{formatted_opening_time}} (GMT) 。", @@ -1365,6 +1359,7 @@ "1971898712": "新增或管理帳戶", "1973536221": "您還沒有持倉頭寸。", "1982912252": "從有期限清單獲得的相對強度指標 (RSI)", + "1983001416": "定義您的交易選項,例如乘數和投注資金。此區塊只能與乘數交易類型一起使用。如果您選擇其他交易類型,此區塊將被交易選項區塊取代。", "1983387308": "預覽", "1983544897": "不接受以郵箱為地址", "1983676099": "請檢查您的電子郵件以便瞭解詳情。", @@ -1491,7 +1486,6 @@ "2138861911": "不接受掃描件和影印件", "2139171480": "重設上漲/重設下跌", "2139362660": "左側", - "2141055709": "新{{type}} 密碼", "2143803283": "買入錯誤", "2144609616": "如果您選擇「重設-下跌」,只要退市現價嚴格低於入市現價或重設時現貨價,您將獲得賠付。", "2145690912": "賺取收入", @@ -1948,7 +1942,6 @@ "-582721696": "目前允許取款額為 {{format_min_withdraw_amount}} 至 {{format_max_withdraw_amount}}", "-1957498244": "更多", "-1684548351": "轉換至加密帳戶", - "-1345040662": "尋找買入加密貨幣的方法?", "-197251450": "不想以{{currency_code}} 交易?您可以另外開立加密貨幣帳戶。", "-212277385": "無法再更改帳戶幣種,因為您已在法定帳戶存款或開立了真實的 DMT5 或 Deriv X 帳戶。請通過<0>即時聊天與我們聯繫以了解詳情。", "-1900848111": "這是您的 {{currency_code}} 帳戶。", @@ -2022,6 +2015,7 @@ "-811190405": "時間", "-2004264970": "錢包地址需有25至64個字元。", "-1707299138": "您的 {{currency_symbol}} 錢包地址", + "-1179992129": "所有支付代理", "-922432739": "請輸入有效的客戶登入ID。", "-1024241603": "餘額不足。", "-1979554765": "請輸入有效的說明。", @@ -2033,7 +2027,6 @@ "-1388977563": "已複製!", "-1962894999": "此地址只能使用一次。請為您的下個交易複製新的地址。", "-451858550": "通過點選「繼續」,您將被重新導向到第三方付款服務提供商{{service}}。請注意,{{website_name}} 對{{service}} 提供的內容或服務概不負責。如果遇到與{{service}} 服務相關的任何問題,您必須直接與{{service}} 聯繫。", - "-1179992129": "所有支付代理", "-344959847": "如果{{website_name}} 不支持您的本地付款方式或貨幣,付款代理商將被授權為您處理存款和取款。", "-1232852916": "我們正轉換至您的{{currency}} 帳戶以檢視交易。", "-38063175": "{{account_text}} 錢包", @@ -2056,6 +2049,7 @@ "-1615615253": "不支持以波場幣存款,請僅使用以太幣{{token}}。", "-1831000957": "請選擇您存款的來源網絡。", "-314177745": "很遺憾,由於伺服器故障,我們無法獲得地址。請點選刷新以重新加載地址或稍後重試。", + "-1345040662": "尋找買入加密貨幣的方法?", "-2005265642": "Fiat onramp 是一種收銀服務,可讓您將法定貨幣轉換為加密貨幣以對 Deriv 加密貨幣賬戶充值。這裡列出了第三方加密貨幣兌換所。您需與他們開立帳戶才能使用其服務。", "-1593063457": "選擇付款渠道", "-130833284": "請注意,您的最高和最低提款限額不是固定的。將根據加密貨幣的高波動率而發生變化。", @@ -2093,6 +2087,8 @@ "-1354485738": "重設買權", "-376148198": "只會持續上漲", "-1337379177": "高跳動點", + "-328036042": "請輸入高於目前潛在虧損的止損金額。", + "-2127699317": "無效止損額。止損不可大於投注額。", "-1940333322": "此帳戶不可用 DBot", "-1210387519": "前往 DMT5 儀表板", "-1223145005": "虧損金額: {{profit}}", @@ -2112,14 +2108,96 @@ "-184183432": "最大持續時間: {{ max }}", "-1194719174": "交易正虧損時您可加入投注資金的乘數金額。", "-749186458": "機器人運行時,帳戶切換將被禁用。切換帳戶前請先停止運行機器人。", + "-662836330": "您想保留目前合約或關閉它?如您決定保留,稍後可在<0>報表頁面檢視及關閉它。", + "-597939268": "保留合約", "-1322453991": "需要登入才能運行 bot。", "-1483938124": "此策略目前與DBot不相容。", + "-236548954": "合約更新錯誤", "-1428017300": "該", "-1450728048": "的", "-255051108": "您", "-1845434627": "是", "-931434605": "此", "-740712821": "一個", + "-187634388": "此區塊是強制性的。您可以在此處決定是否讓機器人繼續交易。此區塊僅允許複製一次。", + "-2105473795": "唯一確定如何格式化區塊輸出的輸入參數。如果輸入參數是「字串」,則將新增帳戶貨幣。", + "-1800436138": "2. 「數字」: 1325.68", + "-2046396241": "此區塊是強制性的。此區塊僅允許複製一次。當您打開DBot時,預設情況下它將新增到畫布上。", + "-530632460": "此區塊用於確定市場價格是否朝所選方向移動。它提供「真」或「假」之值。", + "-1875717842": "例如:", + "-890079872": "1. 如果所選方向為「上漲」,並且上一個跳動值小於目前跳動值,則輸出為「真」。否則輸出將為空字串。", + "-489739641": "2. 如果所選方向為「下跌」,並且上一個跳動值大於目前跳動值,則輸出為「真」。否則輸出將為空字串。", + "-2116076360": "有4種消息類型:", + "-1421941045": "2. 「警告」以黃色顯示消息,以突出顯示需要注意的內容。", + "-277850921": "如果選擇「贏」,假設您的最後一筆交易成功,將返回「真」。否則將返回空字串。", + "-1918487001": "例如:", + "-2139916657": "1. 下面的例子中,即使僅完成一次反覆運算,如果「x」為「假」,迴圈也會終止", + "-1238900333": "2. 下面的例子中,如果「x」為「假」,迴圈將跳至下一個反覆項目,而無需執行以下區塊", + "-1729479576": "您可以在迴圈內使用「i」,例如存取清單項", + "-1474636594": "此例子中,迴圈將重覆三次,因為這是給定清單中的項目數。每次反覆項目中,將從清單分配一個值予變數\"i\"。 ", + "-908772734": "此區塊對語句作出評估,並僅在該語句為「真」時才執行操作。", + "-334040831": "2. 此例子中,只要x的值大於或等於10,指令會重覆執行。一旦x的值跌至小於10,迴圈即終止。", + "-444267958": "「自大紀元以來的秒數」區塊返回自1970年1月1日以來的秒數。", + "-447522129": "如果您要在一定時間後重覆操作,可能需要用到它。", + "-1488259879": "「燭線圖」指燭台圖上每個長條圖。每個燭線圖代表選定時間間隔內的四個市場價格:", + "-2020693608": "圖表上每個K線圖代表選定時間間隔內的4個市場價格:", + "-62728852": "- 開市價:開市價格", + "-1247744334": "- 低價: 最低價", + "-1386365697": "- 平倉價: 平倉價", + "-1498732382": "黑色(或紅色)燭形線表示開盤價高於平倉價。代表市價下跌走勢。", + "-1871864755": "此區塊為您提供所選市場的最新跳動點值的最後數字。如果最新跳動點值為1410.90,此區塊將返回0。這對基於數字的合約(如偶/奇,相符/差異或高於/低於)很有用。", + "-1029671512": "如果選擇了「或」操作,則當一或兩個給定值為「真」時,區塊返回「真」", + "-210295176": "可用的運算:", + "-1385862125": "- 加", + "-983721613": "- 減", + "-854750243": "- 乘", + "-1394815185": "如果給定數字小於範圍的下邊界值,區塊將返回下邊界值。同樣,如果給定的數字大於上邊界值,則區塊將返回上邊界值。如果給定值在邊界之間,區塊將不變地返回給定值。", + "-1034564248": "下面例子中,區塊返回值10,因為給定值(5)小於下邊界值(10)", + "-2009817572": "此區塊對指定數字執行以下運算。", + "-671300479": "可用的運算:", + "-514610724": "- 絕對", + "-1923861818": "- 指定數字的 Euler (2.71) 數次方", + "-1556344549": "方法如下:", + "-1061127827": "- 存取以下網址,確保將替換為您在步驟1中建立的Telegram API權杖: https://api.telegram.org/bot/getUpdates", + "-70949308": "4. 回到 DBot,並將Notify Telegram區塊新增到工作區中。將Telegram API權杖和聊天ID相應地粘貼到區塊欄位中。", + "-311389920": "此例中,燭線清單中的開盤價被分配予稱為\"cl\"的變數。", + "-1460794449": "此區塊提供選定時間間隔內的燭形線清單。", + "-1634242212": "在功能塊中使用,當指定條件為真時,此區塊返回一個值。", + "-2012970860": "此區塊為您提供有關上一份合約的資訊。", + "-1504783522": "您可選擇查看以下內容之一:", + "-10612039": "- 利潤: 您賺取的盈利", + "-555996976": "- 入市時間:合約開始的時間", + "-1391071125": "- 退市時間: 合約到期時間", + "-1961642424": "- 退市數值:合約最後跳動點的數值", + "-111312913": "- 障礙:合約的障礙值(適用於基於障礙的交易類型,如範圍之內/之外、觸及/未觸及等)", + "-674283099": "- 結果: 上次合約的結果: 「獲利」或「虧損」", + "-704543890": "此區塊為您提供選定的燭線值,例如開盤價、平倉價、高價、低價和開盤時間。它需要燭線值作為輸入參數。", + "-482281200": "下例中,開盤價被分配予\"op\"變數。", + "-364621012": "此區塊提供選定時間間隔的特定燭線值。您可以選擇所需的數值:", + "-232477769": "在文字字串中搜尋指定字元或單詞的特定出現率,然後返回位置。", + "-610736310": "用此區塊以市價賣出您的合約。合約賣出是可選的。如果市場走勢不利,您可以選擇賣出。", + "-1307657508": "如果您決定賣出合約,此區塊會向您顯示潛在的損益。它只能在「賣出條件」根塊內使用 。", + "-1921072225": "下例中,僅在潛在損益大於投注額時才賣出合約。", + "-955397705": "SMA將市價增加到多個時間段的跳動點或燭線清單中,然後將總和除以該時間段數。", + "-1424923010": "其中n是週期數。", + "-1835384051": "SMA的指示", + "-749487251": "SMA可作為走勢的指標。如果SMA向上,則市場價格將上漲,反之亦然。週期數越大,SMA線越平滑。", + "-1996062088": "此例子中,簡單移動平均線(SMA)的每一點是前10天收盤價的算術平均數。", + "-1866751721": "輸入清單接受跳動點或燭線清單,而周期是指定的時間段。", + "-1097076512": "您可以對每次機器人運行所計算出的SMA值作比較,以識別市場走勢方向。或者,您也可以使用SMA區塊,即簡單移動平均數組區塊的變化。 ", + "-1254849504": "如果輸入的周期為10,則簡單移動平均數組區塊將返回基於週期10計算的SMA值清單。", + "-1190046167": "此區塊顯示帶有自訂消息的對話方塊。顯示對話方塊時,您的策略將暫停,並且僅在點選「確定」後才會恢復。", + "-859028989": "此例中,日期和時間將顯示在綠色的通知方塊中。", + "-1452086215": "此例中,2019年8月1日午夜將買入上漲合約。", + "-1765276625": "點選乘數下拉選單,然後選擇您要交易的乘數值。", + "-1872233077": "您的潛在利潤將乘以您選擇的乘數值。", + "-614454953": "要了解關於乘數的詳細資訊,請前往 <0>乘數頁面。", + "-2078588404": "選擇所需的市場和資產類型。例如,外匯>主要貨幣對> 澳元/日元", + "-2037446013": "2. 交易類型", + "-533927844": "選擇所需的交易類型。例如,漲/跌>上漲/下跌", + "-1192411640": "4. 預設蠟燭線間隔", + "-485434772": "8. 交易選項", + "-1827646586": "此區塊將給定數值分配給變數,如果變數尚不存在則建立一個。", "-254421190": "清單: ({{message_length}})", "-9461328": "安全和隱私", "-418247251": "下載您的日誌。", @@ -2209,17 +2287,6 @@ "-398198412": "在一體式外匯和差價合約交易平台 Deriv MT5(DMT5)交易。", "-1793883644": "在可自訂、容易使用的交易平台交易外匯和差價合約。", "-1246992539": "Binary Bot", - "-563774117": "儀表板", - "-773544978": "首頁", - "-1003047246": "我的應用程式", - "-2024365882": "探索", - "-2038666662": "關於我們", - "-832198631": "信用卡/扣款卡", - "-1787820992": "平台", - "-837532140": "交易類型", - "-663862998": "市場", - "-947407631": "綜合指數", - "-362324454": "大宗商品", "-821418875": "交易者", "-1309011360": "空缺", "-679102561": "合約詳細資料", @@ -2317,41 +2384,47 @@ "-618539786": "您的帳戶將按時關閉", "-945275490": "從您的期權戶中提取所有資金.", "-705744796": "您的模擬帳戶餘額已達到最大限額,您將無法進行新交易。重設餘額以繼續用模擬帳戶交易。", - "-2067423661": "為 Deriv 帳戶提供更安全保障", - "-1719731099": "雙重驗證以密碼和手機保護帳戶。因此只有您可以存取自己的帳戶,即使有人知道密碼也無法存取。", - "-1738575826": "請切換到或開立真實帳戶以存取收銀台。", + "-1585069798": "請點選以下連結以完成合適性測試。", + "-1287141934": "尋找更多訊息", + "-367759751": "帳戶尚未通過驗證", + "-596690079": "享受使用 Deriv 的樂趣?", + "-265932467": "我們很想聽聽你的意見", + "-1815573792": "請在 Trustpilot 留下您的評語。", + "-823349637": "前往 Trustpilot", "-1204063440": "設定帳戶幣種", + "-1164554246": "您提交了過期的身份證明文件", + "-219846634": "讓我們驗證您的身份", + "-529038107": "安裝", + "-87149410": "安裝 DTrader 應用", + "-1738575826": "請切換到或開立真實帳戶以存取收銀台。", + "-1329329028": "您尚未設定30天交易限額", + "-132893998": "由於您尚未設定 30 天交易限額,您已被暫時禁用收銀台。請前往自我禁止並設定此限額。", + "-1852207910": "MT5已被禁提款", + "-764323310": "您的MT5帳戶已被禁提款。請檢查您的電子郵件, 以瞭解更多詳情。", + "-1435762703": "請驗證您的身份", + "-1902997828": "立即更新", + "-753791937": "新版 Deriv 已推出", + "-1775108444": "此頁面將於5分鐘內自動更新以加載最新版本。", + "-1175685940": "請透過即時聊天與我們聯繫,以启用取款。", + "-1125797291": "密碼已更新。", + "-157145612": "請用更新密碼登入。", + "-87177461": "請前往帳戶設定並填寫個人詳細資料,以啟用存款。", + "-904632610": "重設餘額", + "-470018967": "重設餘額", + "-156611181": "請前往帳戶設定完成財務評估以解鎖。", "-1925176811": "暫時無法處理提款", "-980696193": "由於系統維護,暫時無法取款。一旦維護完成,您即可取款。", "-1647226944": "暫時無法處理存款", "-488032975": "由於系統維護,暫時無法存款。一旦維護完成,您即可存款。", "-67021419": "由於系統維護,收銀台暫時無法使用。數分鐘後一旦維護完成,您即可存取收銀台。", - "-219846634": "讓我們驗證您的身份", - "-367759751": "帳戶尚未通過驗證", - "-1175685940": "請透過即時聊天與我們聯繫,以启用取款。", - "-1852207910": "MT5已被禁提款", - "-764323310": "您的MT5帳戶已被禁提款。請檢查您的電子郵件, 以瞭解更多詳情。", - "-1585069798": "請點選以下連結以完成合適性測試。", - "-1329329028": "您尚未設定30天交易限額", - "-132893998": "由於您尚未設定 30 天交易限額,您已被暫時禁用收銀台。請前往自我禁止並設定此限額。", - "-156611181": "請前往帳戶設定完成財務評估以解鎖。", "-849587074": "您尚未提供稅務編號", "-47462430": "法律和監管規定要求提供此資訊。請到帳戶設定填寫您最新的稅務編號。", - "-87177461": "請前往帳戶設定並填寫個人詳細資料,以啟用存款。", + "-2067423661": "為 Deriv 帳戶提供更安全保障", + "-1719731099": "雙重驗證以密碼和手機保護帳戶。因此只有您可以存取自己的帳戶,即使有人知道密碼也無法存取。", + "-822888359": "取款功能已被鎖", + "-1197701578": "請再提交身分證明並前往帳戶設定完成財務評估以解鎖。", "-2087822170": "您已離線", "-1669693571": "檢查您的連接。", - "-1125797291": "密碼已更新。", - "-157145612": "請用更新密碼登入。", - "-904632610": "重設餘額", - "-470018967": "重設餘額", - "-1435762703": "請驗證您的身份", - "-1164554246": "您提交了過期的身份證明文件", - "-1902997828": "立即更新", - "-753791937": "新版 Deriv 已推出", - "-1775108444": "此頁面將於5分鐘內自動更新以加載最新版本。", - "-529038107": "安裝", - "-87149410": "安裝 DTrader 應用", - "-1287141934": "尋找更多訊息", "-1998049070": "如您同意我們使用 cookie,請點選「接受」。有關更多資訊,請<0>參閱我們的政策。", "-1721181859": "您需要有 {{deriv_account}} 帳戶", "-1989074395": "請先新增 {{deriv_account}} 帳戶,然後再新增 {{dmt5_account}} 帳戶。通過 {{deriv_label}} 帳戶進行轉帳即可完成{{dmt5_label}} 帳戶的存款和取款。", @@ -2386,6 +2459,7 @@ "-1950045402": "提取所有資金", "-168971942": "這對您來說意味著什麼", "-905560792": "好, 我明白", + "-2024365882": "探索", "-1197864059": "開設免費模擬帳戶", "-1485242688": "步驟 {{step}}: {{step_title}} ({{step}} 共 {{steps}})", "-1829842622": "您可以為每種加密貨幣開立帳戶。", @@ -2439,6 +2513,7 @@ "-1917706589": "您的Deriv帳戶已與{{social_identity_provider}} 解除連結。以後請用電子郵件和密碼登入。", "-2017825013": "知道了", "-505449293": "輸入Deriv 帳戶的新密碼。", + "-1787820992": "平台", "-184713104": "通過期權或乘數交易賺取固定賠付,在有限風險下擴大收益。", "-1571775875": "我們的旗艦期權和乘數交易平台。", "-1107320163": "在瀏覽器上運行 Deriv X 或下載手機應用程式", @@ -2470,7 +2545,6 @@ "-1500907666": "<0>d.如果決定對我們有利,您必須在做出決定後7天內向我們提供免責聲明,之後該投訴將被視為已結案。", "-429248139": "免責聲明", "-818926350": "事件發生之日起45天內,金融委員會接受上訴,條件是交易者事先須試圖直接與公司解決問題。", - "-236548954": "合約更新錯誤", "-1282933308": "不是 {{barrier}}", "-968190634": "等於 {{barrier}}", "-1747377543": "低於 {{barrier}}", @@ -2498,8 +2572,6 @@ "-763273340": "數字期權", "-1790089996": "新建!", "-590018519": "合約已購入", - "-328036042": "請輸入高於目前潛在虧損的止損金額。", - "-2127699317": "無效止損額。止損不可大於投注額。", "-405439829": "很抱歉,您不能檢視此合約,因為它不屬於此帳戶。", "-1714959941": "此圖表對跳動點合約並不適用", "-1254554534": "請更改圖表持續時間以打鉤獲取更好的交易體驗。", @@ -2593,22 +2665,13 @@ "-584696680": "如果您選擇「止盈」並指定想要贏得的金額,那麼當您的盈利大於或等於該金額時,您的頭寸將自動平倉。您的獲利可能大於您投入的金額,具體取決於收盤時的市場價格。", "-178096090": "「止盈」無法更新。您只能在「取消交易」到期時更新。", "-206909651": "入市現價指我們伺服器處理合約完畢時的市價。", - "-673424733": "模擬帳戶", - "-1066565281": "伺服器維護從每週日格林尼治標準時間06:00開始,可能需要2個小時。此期間內服務可能會中斷。", - "-1481390656": "伺服器維護每週日從格林尼治標準時間01:00開始。此過程最多可能需要2個小時才能完成。此期間內服務可能會中斷。", - "-1199152768": "請探索我們其它的平台.", - "-498346912": "探索 DBot", + "-464262734": "管理 {{platform}} 真實{{account_title}} 帳戶密碼", "-2042845290": "您的投資者密碼已被更改。", "-1882295407": "您的密碼已被更改.", "-254497873": "用此密碼給予其他使用者檢視權限。該使用者檢視您的交易帳戶時將無法交易或採取任何其他行動。", "-161656683": "目前投資者密碼", "-374736923": "新投資者密碼", "-1793894323": "建立或重設投資者密碼", - "-464262734": "管理 {{platform}} 真實{{account_title}} 帳戶密碼", - "-1928229820": "重設Deriv X投資者密碼", - "-1917043724": "重設DMT5投資者密碼", - "-1087845020": "首頁", - "-1950683866": "投資者", "-149836494": "您的交易參考號是 {{transaction_id}}", "-1382749084": "返回交易", "-538215347": "淨存款", @@ -2737,7 +2800,6 @@ "-1588406981": "您可用此區塊檢視上一個交易的結果。", "-1459154781": "合約詳細: {{ contract_detail }}", "-1652241017": "從合同詳細資訊清單中讀取所選的財產", - "-2012970860": "此區塊為您提供有關上一份合約的資訊。", "-2082345383": "這些區塊將控制權轉移到買入條件區塊。", "-172574065": "此區塊將控制權轉移回「購入」條件區塊,使您可購買另一份合約。", "-403103225": "重啟", @@ -2780,7 +2842,6 @@ "-1556495906": "根據選定的時間間隔從燭線清單中返回特定數值清單", "-166816850": "建立燭線圖數值清單(1)", "-1261436901": "蠟燭圖線清單", - "-1460794449": "此區塊提供選定時間間隔內的燭形線清單。", "-1174859923": "讀取選定的燭線值", "-1972165119": "讀取燭線值 (1)", "-1956100732": "不論是否有交易,您可以使用此區塊分析跳動點", @@ -2830,10 +2891,13 @@ "-702370957": "轉換成日期/時間", "-982729677": "轉換成時間戳", "-311268215": "此區塊將代表日期和時間的文字字串轉換為自Unix 紀元(1970年1月1日)以來的秒數。時間和時區偏移是可選項。例子:2019年1月1日21:03:45 GMT + 0800將轉換為1546347825。", + "-1797602591": "止損: {{ currency }} {{ stop_loss }}", + "-1214929127": "止損必須是正數.", + "-2142851225": "乘數交易期權", + "-625636913": "金額必須是正數.", "-1466383897": "持續時間: {{ duration_unit }} {{ duration_value }}", "-440702280": "交易選項", "-1193894978": "定義諸如期限和投注額等交易選項。一些選項僅適用於某些交易類型。", - "-625636913": "金額必須是正數.", "-46523443": "持續時間值是不允許的。要運行機器人,請輸入介於{{min}} 至{{max}} 之間的值。", "-1483427522": "交易類型: {{ trade_type_category }} > {{ trade_type }}", "-323348124": "1. 交易參數", @@ -2841,7 +2905,6 @@ "-783173909": "交易選項:", "-376956832": "在這裡定義合約的參數。", "-1244007240": "如果{{ condition }} 那麼", - "-908772734": "此區塊對語句作出評估,並僅在該語句為「真」時才執行操作。", "-1577206704": "否則如果", "-33796979": "真", "-1434883449": "這是返回布林值(真或假)的區塊。", @@ -2903,84 +2966,11 @@ "-1133072029": "文字字串長度", "-1109723338": "列印 {{ input_text }}", "-736668830": "列印", - "-1190046167": "此區塊顯示帶有自訂消息的對話方塊。顯示對話方塊時,您的策略將暫停,並且僅在點選「確定」後才會恢復。", "-1821552998": "在{{ input_text }} 的{{ side }} 中修剪空格", "-801766026": "右側", "-474779821": "修剪空格", "-1219239717": "工作區內缺失了一或多個強制區塊。請新增所需的區塊後重試。", "-250761331": "工作區內一或多個強制區塊已被禁用。請啓用所需的區塊後重試。", - "-187634388": "此區塊是強制性的。您可以在此處決定是否讓機器人繼續交易。此區塊僅允許複製一次。", - "-2105473795": "唯一確定如何格式化區塊輸出的輸入參數。如果輸入參數是「字串」,則將新增帳戶貨幣。", - "-1800436138": "2. 「數字」: 1325.68", - "-2046396241": "此區塊是強制性的。此區塊僅允許複製一次。當您打開DBot時,預設情況下它將新增到畫布上。", - "-530632460": "此區塊用於確定市場價格是否朝所選方向移動。它提供「真」或「假」之值。", - "-1875717842": "例如:", - "-890079872": "1. 如果所選方向為「上漲」,並且上一個跳動值小於目前跳動值,則輸出為「真」。否則輸出將為空字串。", - "-489739641": "2. 如果所選方向為「下跌」,並且上一個跳動值大於目前跳動值,則輸出為「真」。否則輸出將為空字串。", - "-2116076360": "有4種消息類型:", - "-1421941045": "2. 「警告」以黃色顯示消息,以突出顯示需要注意的內容。", - "-277850921": "如果選擇「贏」,假設您的最後一筆交易成功,將返回「真」。否則將返回空字串。", - "-1918487001": "例如:", - "-2139916657": "1. 下面的例子中,即使僅完成一次反覆運算,如果「x」為「假」,迴圈也會終止", - "-1238900333": "2. 下面的例子中,如果「x」為「假」,迴圈將跳至下一個反覆項目,而無需執行以下區塊", - "-1729479576": "您可以在迴圈內使用「i」,例如存取清單項", - "-1474636594": "此例子中,迴圈將重覆三次,因為這是給定清單中的項目數。每次反覆項目中,將從清單分配一個值予變數\"i\"。 ", - "-334040831": "2. 此例子中,只要x的值大於或等於10,指令會重覆執行。一旦x的值跌至小於10,迴圈即終止。", - "-444267958": "「自大紀元以來的秒數」區塊返回自1970年1月1日以來的秒數。", - "-447522129": "如果您要在一定時間後重覆操作,可能需要用到它。", - "-1488259879": "「燭線圖」指燭台圖上每個長條圖。每個燭線圖代表選定時間間隔內的四個市場價格:", - "-2020693608": "圖表上每個K線圖代表選定時間間隔內的4個市場價格:", - "-62728852": "- 開市價:開市價格", - "-1247744334": "- 低價: 最低價", - "-1386365697": "- 平倉價: 平倉價", - "-1498732382": "黑色(或紅色)燭形線表示開盤價高於平倉價。代表市價下跌走勢。", - "-1871864755": "此區塊為您提供所選市場的最新跳動點值的最後數字。如果最新跳動點值為1410.90,此區塊將返回0。這對基於數字的合約(如偶/奇,相符/差異或高於/低於)很有用。", - "-1029671512": "如果選擇了「或」操作,則當一或兩個給定值為「真」時,區塊返回「真」", - "-210295176": "可用的運算:", - "-1385862125": "- 加", - "-983721613": "- 減", - "-854750243": "- 乘", - "-1394815185": "如果給定數字小於範圍的下邊界值,區塊將返回下邊界值。同樣,如果給定的數字大於上邊界值,則區塊將返回上邊界值。如果給定值在邊界之間,區塊將不變地返回給定值。", - "-1034564248": "下面例子中,區塊返回值10,因為給定值(5)小於下邊界值(10)", - "-2009817572": "此區塊對指定數字執行以下運算。", - "-671300479": "可用的運算:", - "-514610724": "- 絕對", - "-1923861818": "- 指定數字的 Euler (2.71) 數次方", - "-1556344549": "方法如下:", - "-1061127827": "- 存取以下網址,確保將替換為您在步驟1中建立的Telegram API權杖: https://api.telegram.org/bot/getUpdates", - "-70949308": "4. 回到 DBot,並將Notify Telegram區塊新增到工作區中。將Telegram API權杖和聊天ID相應地粘貼到區塊欄位中。", - "-311389920": "此例中,燭線清單中的開盤價被分配予稱為\"cl\"的變數。", - "-1634242212": "在功能塊中使用,當指定條件為真時,此區塊返回一個值。", - "-1504783522": "您可選擇查看以下內容之一:", - "-10612039": "- 利潤: 您賺取的盈利", - "-555996976": "- 入市時間:合約開始的時間", - "-1391071125": "- 退市時間: 合約到期時間", - "-1961642424": "- 退市數值:合約最後跳動點的數值", - "-111312913": "- 障礙:合約的障礙值(適用於基於障礙的交易類型,如範圍之內/之外、觸及/未觸及等)", - "-674283099": "- 結果: 上次合約的結果: 「獲利」或「虧損」", - "-704543890": "此區塊為您提供選定的燭線值,例如開盤價、平倉價、高價、低價和開盤時間。它需要燭線值作為輸入參數。", - "-482281200": "下例中,開盤價被分配予\"op\"變數。", - "-364621012": "此區塊提供選定時間間隔的特定燭線值。您可以選擇所需的數值:", - "-232477769": "在文字字串中搜尋指定字元或單詞的特定出現率,然後返回位置。", - "-610736310": "用此區塊以市價賣出您的合約。合約賣出是可選的。如果市場走勢不利,您可以選擇賣出。", - "-1307657508": "如果您決定賣出合約,此區塊會向您顯示潛在的損益。它只能在「賣出條件」根塊內使用 。", - "-1921072225": "下例中,僅在潛在損益大於投注額時才賣出合約。", - "-955397705": "SMA將市價增加到多個時間段的跳動點或燭線清單中,然後將總和除以該時間段數。", - "-1424923010": "其中n是週期數。", - "-1835384051": "SMA的指示", - "-749487251": "SMA可作為走勢的指標。如果SMA向上,則市場價格將上漲,反之亦然。週期數越大,SMA線越平滑。", - "-1996062088": "此例子中,簡單移動平均線(SMA)的每一點是前10天收盤價的算術平均數。", - "-1866751721": "輸入清單接受跳動點或燭線清單,而周期是指定的時間段。", - "-1097076512": "您可以對每次機器人運行所計算出的SMA值作比較,以識別市場走勢方向。或者,您也可以使用SMA區塊,即簡單移動平均數組區塊的變化。 ", - "-1254849504": "如果輸入的周期為10,則簡單移動平均數組區塊將返回基於週期10計算的SMA值清單。", - "-859028989": "此例中,日期和時間將顯示在綠色的通知方塊中。", - "-1452086215": "此例中,2019年8月1日午夜將買入上漲合約。", - "-2078588404": "選擇所需的市場和資產類型。例如,外匯>主要貨幣對> 澳元/日元", - "-2037446013": "2. 交易類型", - "-533927844": "選擇所需的交易類型。例如,漲/跌>上漲/下跌", - "-1192411640": "4. 預設蠟燭線間隔", - "-485434772": "8. 交易選項", - "-1827646586": "此區塊將給定數值分配給變數,如果變數尚不存在則建立一個。", "-1687036846": "下載區塊", "-1266781295": "展開", "-894560707": "功能",