mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Additional fix
This commit is contained in:
parent
51b94889b2
commit
6613e3757a
|
@ -584,10 +584,10 @@ class LocalTrade():
|
|||
continue
|
||||
|
||||
tmp_amount = o.amount
|
||||
tmp_price = o.average or o.price or 0.0
|
||||
tmp_price = o.average or o.price
|
||||
if o.filled is not None:
|
||||
tmp_amount = o.filled
|
||||
if tmp_amount > 0.0 and tmp_price is not None and o.status == 'closed':
|
||||
if tmp_amount > 0.0 and tmp_price is not None:
|
||||
total_amount += tmp_amount
|
||||
total_stake += tmp_price * tmp_amount
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user