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
{{ message }}
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.
Traceback (most recent call last):
File "C:/Users/me/PycharmProjects/project/build_indicators.py", line 8, in
wto = TA.WTO(ohlc=candles, channel_lenght=11, average_lenght=15)
File "C:\Users\me\PycharmProjects\project\venv\lib\site-packages\finta\finta.py", line 13, in wrap
i = 0 if isinstance(args[0], pd.DataFrame) else 1
IndexError: list index out of range
The text was updated successfully, but these errors were encountered:
Simple example code does not function.
I expected there to be no error.
There is an error.
100%
finta~=1.2
pandas~=1.1.4
python 3.8
import pandas as pd
from finta import TA
candle_file = "bittrex_btc-usdt.csv"
candles = pd.read_csv(candle_file)
wto = TA.WTO(ohlc=candles, channel_lenght=11, average_lenght=15)
Error:
Traceback (most recent call last):
File "C:/Users/me/PycharmProjects/project/build_indicators.py", line 8, in
wto = TA.WTO(ohlc=candles, channel_lenght=11, average_lenght=15)
File "C:\Users\me\PycharmProjects\project\venv\lib\site-packages\finta\finta.py", line 13, in wrap
i = 0 if isinstance(args[0], pd.DataFrame) else 1
IndexError: list index out of range
The text was updated successfully, but these errors were encountered: