mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-13 03:33:55 +00:00
Add fee entry to DRY_ORDER dict as defined by ccxt
This commit is contained in:
parent
98669a3d62
commit
483415cd65
|
@ -134,7 +134,8 @@ def buy(pair: str, rate: float, amount: float) -> Dict:
|
||||||
'side': 'buy',
|
'side': 'buy',
|
||||||
'remaining': 0.0,
|
'remaining': 0.0,
|
||||||
'datetime': arrow.utcnow().isoformat(),
|
'datetime': arrow.utcnow().isoformat(),
|
||||||
'status': 'closed'
|
'status': 'closed',
|
||||||
|
'fee': None
|
||||||
}
|
}
|
||||||
return {'id': order_id}
|
return {'id': order_id}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user