Differentiate between trades+profit and profit in ES

This commit is contained in:
Mark Veidemanis 2022-02-17 23:24:12 +00:00
parent 6979b6c34a
commit 62d3f1a953
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 9 additions and 3 deletions

View File

@ -552,9 +552,15 @@ class Transactions(object):
total_usd += trades_usd
profit = total_usd - float(settings.Money.BaseUSD)
cast_es = {
"profit_usd": profit,
}
if trades:
cast_es = {
"profit_trades_usd": profit,
}
else:
cast_es = {
"profit_usd": profit,
}
self.write_to_es("get_profit", cast_es)
return profit