You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot trade profitably with low volume coins. Market sell orders trigger at TP, but will often sell for less then the buy price due to low volume.
Suggest changing sell parameter to:
if not TEST_MODE:
sell_coins_limit = client.create_order(
symbol = coin,
side = 'SELL',
type = 'LIMIT',
price = coins_bought[coin]['take_profit']
timeinForce = 'GTC',
quantity = coins_bought[coin]['volume']
)
This of course eliminates the trailing profit function but will guarantee the sale price to be the TP as intended.
The text was updated successfully, but these errors were encountered:
Cannot trade profitably with low volume coins. Market sell orders trigger at TP, but will often sell for less then the buy price due to low volume.
Suggest changing sell parameter to:
This of course eliminates the trailing profit function but will guarantee the sale price to be the TP as intended.
The text was updated successfully, but these errors were encountered: