-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sell strategy? #168
Comments
Hi, sell strategy is not what you have described: you set a trigger (say +3.5%) and when the price is above the buyPrice+trigger the bot will place a STOP-LOSS-LIMIT sell order. The trigger is in your hand and you can choose the value. |
#158 is what you are requesting. |
I read through the readme, started running it, and it wasn't until I read the code until I noticed this. In place-sell-order.js:
And that value isn't checked against any other thing - i.e. the order quantity is the free balance less 0.001%. In place-buy-order, it is compared against the maxPurchaseAmount, however. |
Selling orders doesn't have a limit as you can check into settings. It's only for buying. So when selling it sells all because doesn't have any setting to compare to. |
@dts |
It appears that the default strategy is basically "sell everything when it's at a 7-day high" - is this read accurate? If so - are there plans to change that to be a little less aggressive? Perhaps keeping track of the last sell price, and selling some fraction of holdings as it ratchets up?
The text was updated successfully, but these errors were encountered: