Definitely a great job there and a very nice tutorial. I love technical indicators, but Python has given me a lot when it comes to manipulate or handle data for a visual presentation.
@DMInverse4 ай бұрын
Great explanation of the technique. I used to do a function examining if the high was equal to the max highs of each candle and the two candles on each side of it, and same for the lows, but this seems more efficient. Cheers!
@anilmm2005 Жыл бұрын
Thanks lot Chad can you confirm how to get the code shown in the video?
@jorgeplaza7938 Жыл бұрын
Thanks for the video! Tried many aproaches to this matter and certainly yours is the best. KDE is a very interesting concept I now fully understand.
@daymaker_trading Жыл бұрын
Wow, this is gold! Thanks so much for sharing your knowledge ❤
@paulbrown5839 Жыл бұрын
Very solid piece of work this Chad. I've just been through it again and will take some of your innovative ideas from it. Cheers.
@whatsthememe29132 жыл бұрын
This exactly what I was looking for! Chad you’re a lifesaver. Next step would be to create a strategy on this information in python!
@ThinAirElon2 жыл бұрын
High Quality Channel on Algo
@ChadThackray2 жыл бұрын
Thanks!
@proexceptАй бұрын
Thanks for a great food for thought!
@TavoPlus Жыл бұрын
Excellent, I tried and personalized your code. Thank you, it helped me a lot!
@segunda_parte11 ай бұрын
Thank you very much for the video. How can I make the volume be taken into account to give more relevance to the candles that have greater volume?
@GlebKretinin2 жыл бұрын
Great job Chad! Thank you for sharing!
@BeyondTheHodl Жыл бұрын
great video! Just wondering once you get the horizontal lines like you did at 13:38 how would I go about creating code so that the horizontal line stops once price hits it/crosses it?
@eige2992 Жыл бұрын
hello, great concept! i was in a confusion when I had to decide how to group the extrema values, but the concept of KDE in your video was very helpful. I guess you could try to find the peaks and trough separately instead of combining them together and running separate KDE algorithms to both of those values to differentiate support and resistance lines?
@UnbenutzerKanalname Жыл бұрын
i was trying to use a simple histogram for the min/max values, but the kernel is a great idea. thanks!
@rabbitgomes5817 Жыл бұрын
hey Chad! nice video, and awesome approach with signal processing and kde! Can you supply the code behind the "draw_candle_chart" function? I believe thats in the top of the notebook, but can't see it clearly on the video.
@ChadThackray Жыл бұрын
If you lookup "How to Create a Candlestick Chart Using Matplotlib in Python" that's the code I used. At some point I'm planning on going through and linking all the code from my videos, but will take a few months
@MaheraSALALAMANDIMBYHASINA4 ай бұрын
Hi, how you difine which of the line is support and which is resistance? beacause the algorithm seems to draw only the, but what about the classification? need help
@valueray Жыл бұрын
where is the jupyter?
@mohitgarg41682 жыл бұрын
Fantastic work Chad..!! Can you please share a link to download this Jupyter notebook.
@davidberry85112 жыл бұрын
Great video, support and resistance is a big topic to code since it is so subjective. Where can I download the your code fom this lesson?
@mehranhub8312 Жыл бұрын
you are amazing man please keep going on your educations😍
@29078662 жыл бұрын
Great information and tutorial!
@karlbooklover2 жыл бұрын
was just thinking about codifying patterns into vectorbt, this should work to implement as a strategy, thanks! :)
@brich81102 жыл бұрын
Really really helpfull video, also what a great idea that you can try is to use some AI to learn with a volume indicator (for example) what support and res are more likely to be "respected". Thansk alot for the vid (Pretty sure you can do it with scikit
@SkyRiderJavelin2 жыл бұрын
Brilliant work Chad
@zacharyperryman86638 ай бұрын
Do you ever post your code so that followers can mess around on their own? Thanks!
@kurdmanpar57062 жыл бұрын
Thank you for your good video. If this project is more complete to clearly define the lines of resistance and support, it will be very valuable. sincerely.
@rickymacharm34372 жыл бұрын
lovely video. for the interval could you test with ATR or standard deviation so it works with the present volatility of the asset
@ChadThackray2 жыл бұрын
This is a good idea!
@SY41LENDRA Жыл бұрын
i dont undesrtand about phyton coding, can you tell me what is the logic how to draw horisontal lines support and resistant in candlestick chart, i saw your video 14 minutes, i dont get the points
@TwelfthRoot2 Жыл бұрын
i think weighting the S/R by volume could be helpful. great video.
@siddharththakur5978 Жыл бұрын
Why aren't we using moving average instead of kernel density?
@orderflow23222 жыл бұрын
it would be cool to see how to determine the flat algorithmically on python
@rowanans2 жыл бұрын
very beautiful, Chad!
@dimayasnohurskyi28052 жыл бұрын
Do you have something similar for another TA stuffs, like triangles and etc?
@ChadThackray2 жыл бұрын
Not yet!
@teddyperera85313 ай бұрын
Thank you
@tilttrader Жыл бұрын
awesome video.
@misaghesh49632 жыл бұрын
Thank you for your good video
@kailee-st2mf Жыл бұрын
good job
@paulbrown58392 жыл бұрын
What we want is the strongest support and resistance levels. There are rules about which level is strong, and which is weak. Apply those to filter the levels down to the best ones.
@FilSerge2 жыл бұрын
What qre these rules?
@paulbrown58392 жыл бұрын
@@FilSerge You can find them on YT..for example, a level near a round number is good, eg. 1.0850.
@monkeyloopingtrading20132 жыл бұрын
thank you ! i like it! but please help me. Why this error? NameError Traceback (most recent call last) Input In [131], in () ----> 1 draw_candle_chart(sample_df, price_range[peaks]) NameError: name 'draw_candle_chart' is not defined. i'm so frustrated🙃😊
@ChadThackray2 жыл бұрын
You'll need to define a function to draw a candle chart, it's not built in. I copy-pasted the one from a website called statology and it worked pretty well
@CptnYarface7 ай бұрын
He used a function called 'draw_candle_chart' to make the final plots with the support levels included. Statology has an example of how a candlestick chart can be made, but to overlay the support levels and create the "error bars," you will have to adapt the code yourself and create your own plotting function.. or maybe ChatGPT can help. I use mpf.plot(df, type='candle') to make candle charts, where df is a DataFrame with 'Open', 'High', 'Low', and 'Close' prices for the stock. Would have been nice to see the code for his function, for sure, but it will be an adventure trying to figure it out, at least lol
@akbarboghani12 жыл бұрын
Thanks Chad.
@rezasadeghi25202 жыл бұрын
thank you :)
@DailyGameMoments77 ай бұрын
Find it difficult to comprehend the logic and codes
@GohOnLeeds4 күн бұрын
1) By specifying 2-4 peaks, you are forcing data to conform to something which it might well not be. For any timeseries, you simply don't know it is going to contain 2-4 peaks, right? Could be 2, could be 50. That's for the data to dictate. 2) Any support/resistance algo should take trading volume into account. All price points are not created equal! 3) Doing SR using your method doesn't allow you to bias more recent peaks.
@anthonychung81122 ай бұрын
AWS settings demo \
@bikramssharemarkettradingc73662 жыл бұрын
Your video is great, but there is. Some theory part. Not very easy for persons new to machine learning