mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Add extract_cost_curr_rate
This commit is contained in:
parent
6d7a3a0cc9
commit
d3b9f4d393
|
@ -1177,6 +1177,15 @@ class FreqtradeBot:
|
|||
and order['fee']['cost'] is not None
|
||||
)
|
||||
|
||||
def _extract_cost_curr_rate(self, order: Dict) -> Tuple[float, str, float]:
|
||||
"""
|
||||
:param order: Order or trade (one trade) dict
|
||||
:return: Tuple with cost, currency, rate of the given fee dict
|
||||
"""
|
||||
return (order['fee']['cost'],
|
||||
order['fee']['currency'],
|
||||
order['fee'].get('rate', None))
|
||||
|
||||
def get_real_amount(self, trade: Trade, order: Dict, order_amount: float = None) -> float:
|
||||
"""
|
||||
Get real amount for the trade
|
||||
|
|
Loading…
Reference in New Issue
Block a user