-
Hi! I have been studying a lot this library, trying out all sorts of things and got stuck in a particular problem that whatever I try, I have no success and I am already very frustrated at it, usually I solve everything on my own but this one I don't know what to do and have no ideas anymore. Might be something obvious, but I am already blind at it. First, let's look at a situation that it is very similar and works properly:
It just gets an indicator from pandas_ta, the input data is from a dictionary containing the OHLCV dataframes and it works for any number of tickers. Now, the problematic code:
When I run it, I get:
On my view, the 'problematic' code is almost the same case as the first. I don't understand why it works on the first code and not on the second. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After some more energy and effort put into it, I managed to understand what happened. To be honest, the exception message didn't help me at all, it sent me to another direction, but anyway, it is solved and someone might find it useful in the future. |
Beta Was this translation helpful? Give feedback.
After some more energy and effort put into it, I managed to understand what happened.
It's pretty straightforward...
fib_interval[timeframe] = [..., 377]
Since
RANGE_LEN = 365
The parameter couldn't be calculated...
To be honest, the exception message didn't help me at all, it sent me to another direction, but anyway, it is solved and someone might find it useful in the future.