You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the image, sometimes we need to continue a line which is really close to the last point. As an example here we just missed it on chart.
As you can see I just removed the average lines from the outcome :) and I know there is a list of numbers which we draw them as a line to be support or resistance. The only solution is that to continue plot lines by line slope? or there is a better solution?
The text was updated successfully, but these errors were encountered:
I don't know if this is still usefull, but you will have to change the source code to do this:
I want all lines to continue, what I did is, in the function add_trend placed in plot_support_resistance
edit maxx = ln[0][-1]+1 to maxx = len_h. This will let you continue all lines.
If you want to continue only for example the last 4 lines you will have to do more then this...
you will have to work with the original maxx value (as is) compare all the lines take the last 4 lines that has the highest maxx and plot these ones with maxx = len_h
Based on the image, sometimes we need to continue a line which is really close to the last point. As an example here we just missed it on chart.
As you can see I just removed the average lines from the outcome :) and I know there is a list of numbers which we draw them as a line to be support or resistance. The only solution is that to continue plot lines by line slope? or there is a better solution?
The text was updated successfully, but these errors were encountered: