-
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
Enhancements to reduce risks and increase profits #18
Comments
I would also like the option to replace the stop-limit orders immediately, instead of waiting for next time the symbol is processed again. |
@Maxoos that is an amazing idea. I might need to come up with good logic of chase stop-loss limit order for buying. But yeah, I will try to find out the way. I will develop the following changes based on your suggestions.
@OOtta I am not sure I understand what you mean. Can you elaborate on what you are trying to achieve? |
@chrisleekr |
Yeah, experienced the same these days, we all did, I think, this week's dip wasn't pleasant :) |
You can play with the stop and limit parameters to create a bigger buffer
zone but less potential profit.
…On Mon, 1 Mar 2021 at 9:02 pm, OOtta ***@***.***> wrote:
@chrisleekr <https://github.com/chrisleekr>
If there is an opened Stop-Limit order and price goes higher it canceles
the order and sets new order next time it checks that ticker, however if
the market is volatile the price might dip down before new order is set and
therefore you end up missing possible stop trigger and sell. If you really
believe the price is gonna go up its okay, because there will be another
opurtunity in the future, however i would prefer to have the option to play
it safer and from the moment minimum profit price is reached have always
stop-limit order in that would just get updated if price goes up.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#18 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAOTDS3ET7OH6ZKM3BGRPN3TBNQ47ANCNFSM4YLUWKQA>
.
|
Guys, join the Telegram group to solve problems with each other .. |
I have updated few features. Although in this release, I haven't applied stop chase limit order for buying. Need some more time for that. |
@chrisleekr I've made a couple of changes on my local to improve the performance, I simply cannot find the time to post it a PR, can you post them here and you'll consider them? |
@Maxoos Definitely. I will update if you give me what the changes are. |
|
@chrisleekr Amazing! thank you for doing this. |
@Maxoos I am doing this because I also learn from doing it. ;) Anyway, just note that updated the bot with the following features.
|
@chrisleekr AMAZING!!! thank you so much. Can't wait to try it. |
Hi, When the market price reaches the min sell price, it creates STOP_LOSS_LIMIT with price lower than the original buy price. Can you please let me know when It actually sell? |
You are using too low minimum profit %, would suggest you to read how Stop limit orders work in every market |
@kaziqta I am using the following settings just to test it out: Minimum profit percentage : 1.01 I am just wondering why it is not selling when market reaches target sell price (1.01 x buy price). It creates STOP_LOSS_LIMIT order with price lower than original buy price. I am looking to make this bot to buy possible dip and sell it when it reaches profit target. Let me know if I am wrong. |
I just think that you just don't make effort to make the math. The bot is a good tool, you have to calculate. Ok, following situation: a 100 position goes up by 1% and you set a sell order for the 99% stop price of 101, which will trigger a sale at 98.5% (limit) of 101. So when the price falls to 99% in regards of 101 you sell for 98.5% price. Question: at what price will you sell? |
The bot has been updated with trailing buy (stop-loss-limit-order for buying). https://github.com/chrisleekr/binance-trading-bot/releases/tag/v0.0.57 Make sure to go through README.md. As I introduce a new feature, I did lots of refactoring the code including settings. If the bot version is lower than the version 0.0.57, then the update will cause lost your settings and the last buy price records. You must write down settings and the last buy price records and re-configure after the upgrade. If experiences any issue, simply delete all docker volumes/images and re-launch the bot. I close the issue as most features are delivered except |
First of all I have to say I love this little thing!
I have a few ideas to help reduce risk and increase profits:
Any thoughts? I might have a few hours this week to help out.
The text was updated successfully, but these errors were encountered: