-
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
Time limit for buy orders #127
Comments
@elvishp2006 You are trying to buy FIAT to FIAT, which is almost not moving at all. |
@chrisleekr thanks, I was trying to convert my main FIAT to another by the lowest price |
@elvishp2006 oh, in that case, let's wait. |
Thenk you @chrisleekr , for both your answer and the project itself.
In order to limit losses (assuming that we don't know whether the general trend is bullish or bearish), my sell parameters are: In this way, when the price rises of 0.8% after the buy, I have a stop loss at (more or less) the price I bought. Concerning your example, notice that my goal (and those of many traders) is not to take all the possible opportunities. For this goal, I think that this optional (you guessed) parameter may help. The following image shows a scenario that I would like to avoid (BTC), even if it is followed by a rise. The following three images (ETH, IOTA, LTC) show good scenarios, in which minimums are followed by a growth of at least trigger % within the next 2 candles, so that |
I also thought how it would be possible to implement the behavior of the bot at such moments of the market.
|
@fsabiu
The above configuration will chew up your money because of the commission. I assume you would know already.
Technically, it's not selling at the last buy price because you should take out trade commissions. With your example, I still don't think it will work. Let me explain why. Let's assume, you bought the BTC at 53700 USDT. Other examples will have the same issue. If you want to follow the rise, you would configure stop/limit price percentage much bigger. Am I making sense? |
Thank you @chrisleekr. About parameters, you are right. Which parameters do you advise? And how are they profitable? |
Just to be clear, when you configure
What I was saying, for clarification, increase stop/limit percentage to cover the changes of each candle, so the bot can follow the rise. Hope it makes sense. Otherwise, I will explain further.
I would not advise any parameters as it's your money, you should do your own research.
I talked a lot, sorry. Hopefully, it helps a bit. Just to prove what I am saying, I attached screenshots. |
@chrisleekr many thanks for sharing your experience, it is useful to everyone! Don't you agree that with a stop loss of 5% (for example) you would have limited many losses? Is it implementing it very time expansive? Otherwise, could you suggest how to implement it in the project? Finally, why don't we create a Telegram group or something similar where we all share parameters and related profits? We would save a lot of time and money. fsabiu |
If you are talking about selling the coin to prevent further loss, yes it will be implemented. It's on my todo list - #99 I am just don't have much time to do the development at this point.
I think I mentioned it many times because others asking about this as well. But again, I don't have much time to chat about it and manage it. |
Well I created a discord server for it - https://discord.gg/Cqy35XnppA |
@chrisleekr thank you again for your effort, we will share useful information in the discord channel. |
According to the bot behaviour, once the current price reaches the lowest price, then the bot places a STOP-LOSS-LIMIT order to buy.
However, it often happens that the trigger price is reached after several candles (more than 4 o 5): this scenario indicates that the price is increasing "slowly", so it is more prone to fall. This is a bad scenario, we want to avoid it unless we are sure about the bullish trend (i.e. never).
What about setting a parameter expressing a time limit (expressed either in candles or in minutes) after which the buy order will be deleted if the trigger price is not reached?
In my opinion, on the basis of the current oscillations, this will increase the precision of the buy/sell orders.
The current behaviour could always be replicated by setting a time limit of -1, for example.
The text was updated successfully, but these errors were encountered: