Display also base currency
This commit is contained in:
parent
c96ddc0679
commit
8bf7d53804
@ -273,11 +273,11 @@ def create_trade(stake_amount: float) -> bool:
|
||||
)
|
||||
|
||||
# Create trade entity and return
|
||||
rpc.send_msg('*{}:* Buying [{}]({}) with limit `{:.8f}` ({:8.f} BTC, {:3.f} {})'.format(
|
||||
rpc.send_msg('*{}:* Buying [{}]({}) with limit `{:.8f}` ({:8.f} {}, {:3.f} {})'.format(
|
||||
exchange.get_name().upper(),
|
||||
pair.replace('_', '/'),
|
||||
exchange.get_pair_detail_url(pair),
|
||||
buy_limit, stake_amount, stake_amount_fiat, _CONF['fiat_display_currency']
|
||||
buy_limit, stake_amount, _CONF['stake_currency'], stake_amount_fiat, _CONF['fiat_display_currency']
|
||||
))
|
||||
# Fee is applied twice because we make a LIMIT_BUY and LIMIT_SELL
|
||||
trade = Trade(
|
||||
|
Loading…
Reference in New Issue
Block a user