dev #9

Merged
Arsen Mirzaev Tatyano-Muradovich merged 30 commits from Alex/stcs:dev into stable 2025-10-06 21:33:57 +07:00
75 changed files with 8198 additions and 4381 deletions
Showing only changes of commit 1981510963 - Show all commits

View File

@@ -382,9 +382,9 @@ async def open_positions(
take_profit_price = max(take_profit_price, 0) take_profit_price = max(take_profit_price, 0)
stop_loss_price = max(stop_loss_price, 0) stop_loss_price = max(stop_loss_price, 0)
if take_profit_price < price_symbol: if safe_float(take_profit_price) < safe_float(price_symbol):
take_profit_price = None take_profit_price = None
if stop_loss_price > price_symbol: if safe_float(stop_loss_price) > safe_float(price_symbol):
stop_loss_price = None stop_loss_price = None
# Place order # Place order