mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-13 03:33:55 +00:00
get_rate checks if side is buy for some console output
This commit is contained in:
parent
b84a1d0c92
commit
b42afb9dae
|
@ -1038,10 +1038,13 @@ class Exchange:
|
||||||
)
|
)
|
||||||
raise PricingError from e
|
raise PricingError from e
|
||||||
|
|
||||||
logger.info(f"{name} price from orderbook {conf_strategy['price_side'].capitalize()}"
|
if side == "buy":
|
||||||
f"side - top {order_book_top} order book {side} rate {rate:.8f}")
|
price_side = {conf_strategy['price_side'].capitalize()}
|
||||||
|
logger.info(f"{name} price from orderbook {price_side}"
|
||||||
|
f"side - top {order_book_top} order book {side} rate {rate:.8f}")
|
||||||
else:
|
else:
|
||||||
logger.info(f"Using Last {conf_strategy['price_side'].capitalize()} / Last Price")
|
if side == "buy":
|
||||||
|
logger.info(f"Using Last {conf_strategy['price_side'].capitalize()} / Last Price")
|
||||||
ticker = self.fetch_ticker(pair)
|
ticker = self.fetch_ticker(pair)
|
||||||
ticker_rate = ticker[conf_strategy['price_side']]
|
ticker_rate = ticker[conf_strategy['price_side']]
|
||||||
if ticker['last']:
|
if ticker['last']:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user