mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
chore: show botBalance in tooltip for futures
closes freqtrade/freqtrade#10533
This commit is contained in:
parent
627747c3ef
commit
500efe5739
|
@ -33,7 +33,9 @@ const chartValues = computed<BalanceValues[]>(() => {
|
|||
balance:
|
||||
showBotOnly.value && canUseBotBalance.value && v.bot_owned != undefined
|
||||
? v.bot_owned
|
||||
: v.balance,
|
||||
: v.is_position === true
|
||||
? v.position
|
||||
: v.balance,
|
||||
currency: v.currency,
|
||||
est_stake:
|
||||
showBotOnly.value && canUseBotBalance.value
|
||||
|
|
Loading…
Reference in New Issue
Block a user