Skip to content

Commit

Permalink
[BOT] Farabi/bot-1289/correct tooltips for each strategy (deriv-com#1…
Browse files Browse the repository at this point in the history
…3551)

* fix: tooltips for each strategy

* fix: tooltips for each strategy
  • Loading branch information
farabi-deriv authored Feb 21, 2024
1 parent 6a443b8 commit 3a646f2
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const PURCHASE_TYPE: TConfigItem = {
const LABEL_STAKE: TConfigItem = {
type: 'label',
label: localize('Initial stake'),
description: localize('The amount that you pay to enter a trade.'),
description: localize('The amount that you stake for the first trade. Note that this is the minimum stake amount.'),
};

const STAKE: TConfigItem = {
Expand Down Expand Up @@ -122,17 +122,13 @@ const LOSS: TConfigItem = {
const LABEL_MARTINGALE_SIZE: TConfigItem = {
type: 'label',
label: localize('Size'),
description: localize(
'The multiplier amount used to increase your stake if you’re losing a trade. Value must be higher than 1.'
),
description: localize('The size used to multiply the stake after a losing trade for the next trade.'),
};

const LABEL_REVERSE_MARTINGALE_SIZE: TConfigItem = {
type: 'label',
label: localize('Size'),
description: localize(
'The multiplier amount used to increase your stake after a successful trade. Value must be higher than 1.'
),
description: localize('The size used to multiply the stake after a successful trade for the next trade.'),
};

const SIZE: TConfigItem = {
Expand All @@ -154,13 +150,17 @@ const SIZE: TConfigItem = {
const LABEL_DALEMBERT_UNIT: TConfigItem = {
type: 'label',
label: localize('Unit'),
description: localize("The amount that you may add to your stake if you're losing a trade."),
description: localize(
'Number of unit(s) to be added to the next trade after a losing trade. One unit is equivalent to the amount of initial stake.'
),
};

const LABEL_REVERSE_DALEMBERT_UNIT: TConfigItem = {
type: 'label',
label: localize('Unit'),
description: localize('The amount that you may add to your stake after a successful trade.'),
description: localize(
'Number of unit(s) to be added to the next trade after a successful trade. One unit is equivalent to the amount of initial stake.'
),
};

const UNIT: TConfigItem = {
Expand Down

0 comments on commit 3a646f2

Please sign in to comment.