mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
chore: add price in execute_entry logs
This commit is contained in:
@@ -903,14 +903,14 @@ class FreqtradeBot(LoggingMixin):
|
|||||||
|
|
||||||
msg = (
|
msg = (
|
||||||
f"Position adjust: about to create a new order for {pair} with stake_amount: "
|
f"Position adjust: about to create a new order for {pair} with stake_amount: "
|
||||||
f"{stake_amount} for {trade}"
|
f"{stake_amount} and price: {enter_limit_requested} for {trade}"
|
||||||
if mode == "pos_adjust"
|
if mode == "pos_adjust"
|
||||||
else (
|
else (
|
||||||
f"Replacing {side} order: about create a new order for {pair} with stake_amount: "
|
f"Replacing {side} order: about create a new order for {pair} with stake_amount: "
|
||||||
f"{stake_amount} ..."
|
f"{stake_amount} and price: {enter_limit_requested} ..."
|
||||||
if mode == "replace"
|
if mode == "replace"
|
||||||
else f"{name} signal found: about create a new trade for {pair} with stake_amount: "
|
else f"{name} signal found: about create a new trade for {pair} with stake_amount: "
|
||||||
f"{stake_amount} ..."
|
f"{stake_amount} and price: {enter_limit_requested} ..."
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.info(msg)
|
logger.info(msg)
|
||||||
|
|||||||
Reference in New Issue
Block a user