ednunezg / pytrendline

Python module - detection of support and resistance trendlines for technical analysis. With tuning parameters and plotting capabilities
MIT License
68 stars 26 forks source link

Fix issues with latest python version #7

Open wkarny opened 10 months ago

wkarny commented 10 months ago

Issue 1: Panda has depricated .append() function. Fix this by using Dataframe's loc function

Issue 2: Label object in bokeh has depricated render_mode attribute, so remove that in object initilization

Issue 3: plot_width in figure objest is depricated, use width instead.

Issue 4: Dataframe.drop() has also attribute changes, fix this by only passing colomn name.

KyRillosBoshRa commented 2 months ago

@ednunezg could you approve those changes? thanks