Skip to content

Commit

Permalink
Fix sell price bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqub0r committed Dec 19, 2021
1 parent 83483f8 commit df200d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LimitSwap.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def printt_sell_price(token_dict, token_price):
price_message = price_message + " Sell:" + str(token_dict['SELLPRICEINBASE']) + " Stop:" + str(token_dict['STOPLOSSPRICEINBASE'])
price_message = price_message + " ATH:" + str(token_dict['_ALL_TIME_HIGH']) + " ATL:" + str(token_dict['_ALL_TIME_LOW'])

if price_message == token_dict['_LAST_PRICE_MESSAGE'] and bot_settings['VERBOSE_PRICING'] == 'false':
if price_message == token_dict['_LAST_PRICE_MESSAGE'] and bot_settings['VERBOSE_PRICING'] == 'true':
print (".", end='', flush=True)
bot_settings['_NEED_NEW_LINE'] = True
elif token_price > token_dict['_PREVIOUS_QUOTE']:
Expand Down

0 comments on commit df200d7

Please sign in to comment.