Libraries refactor and add some sinks #4

Closed
m wants to merge 136 commits from library-refactor into master
1 changed files with 9 additions and 3 deletions
Showing only changes of commit 62d3f1a953 - Show all commits

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