diff --git a/handler/transactions.py b/handler/transactions.py index 5b7ca1c..77f9643 100644 --- a/handler/transactions.py +++ b/handler/transactions.py @@ -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