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
"SELLAMOUNTINTOKENS": "ALL",
this field is not working,
let's say I have 10 000 tokens for sale and I want to sell 1k on each transaction to avoid high price impact and want to liquidate in batches.
I use
"SELLAMOUNTINTOKENS": "1000",
bot still sell ALL tokens in 1 transaction.
The text was updated successfully, but these errors were encountered:
@CryptoGnome is it normal that in the code, in the "else" condition, it's written :
amount = Decimal(amount) * DECIMALS
instead of :
amount = int(Decimal(amount) * DECIMALS)
Newest ver 3.36
"SELLAMOUNTINTOKENS": "ALL",
this field is not working,
let's say I have 10 000 tokens for sale and I want to sell 1k on each transaction to avoid high price impact and want to liquidate in batches.
I use
"SELLAMOUNTINTOKENS": "1000",
bot still sell ALL tokens in 1 transaction.
The text was updated successfully, but these errors were encountered: