-
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
New strategy based in indicators #327
Comments
Originally, the bot was developed to use MACD and Bollinger Bands. Trailing stop orders is just a method to follow the lowest/highest price, not the indicator. Now, adding indicators is not an issue. But how to configure/calculate and use the signal are the issue. I had many suggestions that traders want to have more indicators. However, I am not a professional in trading or math at all. |
First of all, thank you for you reply and for this great tool you developed and keep updating. Now, I understand what you said, but what understood from the video is that those 4 indicators should be used combined because they cover different signals... so maybe those indicators missing should be added.. I don't know let me know, your opinion. Also, I can provide and explain the formulas. |
Basically, lets take for example XVGEUR pair... @chrisleekr in your opinion, if we take in consideration the technical analysis based in indicators, available in TradingView platform: https://br.tradingview.com/symbols/XRPEUR/technicals/ and use the sell and buy signal in the "Summary" gauge to make decisions on sell/buy and quantity, in the selected time frame, we would be losing money? Is TradingView providing "wrong information"? I really don't know, but my curiosity is really high. |
I know a very good bot that uses TV signals (not sure if we would mention the company name) |
I never said the technical analysis will lose money. It is more of an issue to code/configure the indicators, which takes a lot of my time and energy to develop the features. If there are easy methods to get those indicators like this TradingView technical page, definitely I can add in. That trading view technicals page is pretty interesting. The best way is if there is a free API service to provide those indicators with actions, we can hook with buy/sell configurations. |
@chrisleekr @eth-man In my opinion, parsing their website (or HTTP call), if it is a relative easy job to do, would be the way. And we could evaluate the bot success from it. |
I actually found this - https://www.tradingview.com/widget/technical-analysis/ For the first cut, I may be able to add this to the frontend for reference purposes.
It's not like just getting the HTML as this must be rendered via their Javascript. |
Nice thing you made, congratulations. @chrisleekr :) My suggestion is that it sells or buy the available asset in a percentage of the gauge position. I think the bot can make it once within the selected timelapse. We should add the restriction to not sell lower than the bought price, just in case anything goes wrong, and also see if transaction worths it in terms of fees. Also, @chrisleekr is there any way we can talk by message? I am not familiar with github but I can not find message Button. Thanks! |
Any news guys? @chrisleekr @eth-man |
I have found an amazing project in Github - https://github.com/brian-the-dev/python-tradingview-ta I am currently testing this. The first bit will be displaying this information in the frontend instead of the humongous widget. And need to think about how we gonna use this valuable information to control buy. At this point, I cannot think of more strategy than this.
Any idea is welcome.
I am not sure this is a good strategy. FYI, below is an example response from TradingView Indicators.
|
I just though that was a simple way to approach our problem. If we use the widget + look for the lowest curent price in comparison with previous prices (current bot method), the bot will take a long time to buy. And will take a long time to sell too. |
Yeah, it may take some time, but it will give some safeguard to buy at a high price.
I had some progress with tradingview indicators as below. Now it's time to hook the above-mentioned features with tradingview. |
Looks a good logic to test and see @chrisleekr . Is it possible for me to test this too? |
It's still under development. Still need to write test cases as well. It will take some time. |
Ok, any doubt or advice or help (if I have the know how) I can give tell me. :) |
@chrisleekr , that's looks wonderful Thank you |
@eth-man Of course. It will use candle intervals. I am preparing the PR now. |
Thanks🙏 |
Congratulations and thanks! |
I have watched a video about an expert trading guy, who talked about the best indicators that should be used to buy/sell in the crypto world:
https://www.youtube.com/watch?v=33lGueGyrc4&t=3s&ab_channel=TheSecretMindset
He claims that there are 4 indicators that work in different areas and are very powerful when working together: VWAP, Heikin-Ashi candles, MACD and Bollinger Bands
This bot is very well made, but I have not made meaningful profits with the Trailing Stop Orders...
I have very little coding knowledge, but I would like to see these indicators applied in this bot. Anyone here would like to give them a try and try to implement them in this bot?
The text was updated successfully, but these errors were encountered: