-
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
Dip Detection Strategy #219
Comments
Hi @salimj6 I think what you are asking is very similar to #67 If it is the same strategy, to implement this, I have summarised how to implement it: #67 (comment) To do this, you will need to touch the If it is the same strategy, let's close this issue and continue the discussion in #67. |
@chrisleekr
So basically, this trigger will start buying regardless of the current/lowest/highest prices, it is simply making an educated buy based on volume of trading over the past couple of minutes. |
I think getting volume won't be an issue as it already does.
We will be able to store the candles for the last 5 mins and determine actions in the below code: The question is how will we make variables and how to calculate the decision to buy. |
Hello Chris,
I noticed something while trading. It is almost always a good buy when in a dip. We can detect this dip by adding the volume trading over a period of say 2 or 3 minutes and setting a value threshold that would trigger the buy.
For example, check the attached image. All crypto prices have the same trend. It is a way of detecting a dip.
We can add an option, buy dip and set a volume threshold over a few mins (can be variable as well). So the user can select whether to buy with the regular strategy or with the dip detection strategy. Selling is beautiful, i don't think we need to touch that yet.
I can try to help with this implementation, but i honestly have a lot on plate now. If you direct me to the areas in code where this can be added i will definitely fiddle with it on every free time i have.
The text was updated successfully, but these errors were encountered: