trendet icon indicating copy to clipboard operation
trendet copied to clipboard

:chart_with_upwards_trend: Python package for trend detection on stock time series data :chart_with_downwards_trend:

Results 9 trendet issues
Sort by recently updated
recently updated
newest added

What makes an algorithm like this attractive is being able to identify the current trend of the market. However, in all tests I've done, the algorithm ignores the final intervals....

bug

I've fixed an issue when the last trend was not detected. This was due to the fact that data has been accumulated in values var and was never checked for...

Hi, I've tried to run trendet script but it gives me an attribute error: AttributeError: partially initialized module 'trendet' has no attribute 'identify_all_trends' (most likely due to a circular import)...

bug

As you can see above - the bold code is of my own making. I'm taking a column, predicted_stock_data[:,0], from a dataframe to use a the closing price. I then...

Hi, I'm using this great python library. I was wondering why I come up with this error: `'int' object has no attribute 'days' ` my code is here: ``` import...

question
improvement

Really appreciate for your great and wonderful efforts on developing "trendet". I'm exploring the usage of it on my strategy. May I clarify one thing, will trendet "peep" the next...

Hello, I'm trying to understand the logic of your software, can you explain how you set the trends? Why use the mean() and how do you append the up_trends and...

Fix for #8 Caused by subtracting indices and then checking .days property which doesnt work because indices is an int

I tried to use AAPL data to define trend for the last two years. I set up window_size = 5 it gave, an error below. I changed it to 10,...